diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 4e1b26fd0..26ea45179 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -8,12 +8,15 @@ ARG USER_GID=1000 ARG NODE_MAJOR=24 ARG ELP_VERSION=2026-02-27 ARG HELM_VERSION=4.2.0 +ARG PNPM_VERSION=10.29.3 +ARG WASM_BINDGEN_VERSION=0.2.122 ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ && apt-get install -y --no-install-recommends \ bash \ + brotli \ build-essential \ ca-certificates \ clang \ @@ -126,8 +129,7 @@ RUN apt-get update \ RUN curl -fsSL https://deb.nodesource.com/setup_${NODE_MAJOR}.x | bash - \ && apt-get install -y --no-install-recommends nodejs \ && rm -rf /var/lib/apt/lists/* \ - && corepack enable \ - && corepack prepare pnpm@10.29.3 --activate + && corepack enable RUN ARCH="$(dpkg --print-architecture)" \ && case "$ARCH" in \ @@ -143,6 +145,12 @@ RUN ARCH="$(dpkg --print-architecture)" \ RUN python3 -m pip install --break-system-packages --no-cache-dir awscli cqlsh +COPY tools/fonts/requirements.txt /tmp/fluxer-fonts-requirements.txt +RUN python3 -m pip install --break-system-packages --no-cache-dir -r /tmp/fluxer-fonts-requirements.txt \ + && rm /tmp/fluxer-fonts-requirements.txt \ + && pyftsubset --help >/dev/null \ + && python3 -c "import fontTools, brotli" + RUN if ! command -v rebar3 >/dev/null 2>&1; then \ curl -fsSL https://s3.amazonaws.com/rebar3/rebar3 -o /usr/local/bin/rebar3 \ && chmod +x /usr/local/bin/rebar3; \ @@ -173,9 +181,16 @@ ENV DOCKER_HOST="unix:///var/run/docker.sock" \ PATH="/home/${USERNAME}/.cargo/bin:${PATH}" \ PNPM_HOME="/home/${USERNAME}/.local/share/pnpm" +ENV CC_wasm32_unknown_unknown="clang" \ + AR_wasm32_unknown_unknown="llvm-ar" + RUN curl -fsSL https://sh.rustup.rs | sh -s -- -y --profile default --component clippy,rustfmt \ && rustup target add wasm32-unknown-unknown \ - && cargo install cargo-watch --locked + && cargo install cargo-watch --locked \ + && cargo install wasm-bindgen-cli --version "${WASM_BINDGEN_VERSION}" --locked + +RUN corepack prepare "pnpm@${PNPM_VERSION}" --activate \ + && pnpm --version RUN sudo apt-get update \ && sudo apt-get install -y --no-install-recommends python3-venv \ diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 88c20a75d..38b77fbad 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -59,7 +59,7 @@ } }, "postCreateCommand": "sudo chown -R vscode:vscode /workspaces/fluxer/target && find /workspaces/fluxer -maxdepth 4 -type d -name node_modules -prune -exec sudo chown -R vscode:vscode {} + && sudo chown -R vscode:vscode /home/vscode/.local/share/pnpm && cargo run -p fluxer-dev -- bootstrap", - "postStartCommand": "cargo run -p fluxer-dev -- post-start && bash /workspaces/fluxer/fluxer_docs/serve.sh --daemon", + "postStartCommand": "bash /workspaces/fluxer/.devcontainer/fix-docker-socket.sh && cargo run -p fluxer-dev -- post-start && bash /workspaces/fluxer/fluxer_docs/serve.sh --daemon", "customizations": { "vscode": { "extensions": [ diff --git a/.devcontainer/docker-compose.yml b/.devcontainer/docker-compose.yml index 1d79f23c0..5ab094fab 100644 --- a/.devcontainer/docker-compose.yml +++ b/.devcontainer/docker-compose.yml @@ -224,6 +224,16 @@ services: target: /workspaces/fluxer/fluxer_app/pkgs/number_utils/node_modules volume: nocopy: true + - type: volume + source: package-voice-engine-v2-node-modules + target: /workspaces/fluxer/packages/voice_engine_v2/node_modules + volume: + nocopy: true + - type: volume + source: fluxer-api-postgres-node-modules + target: /workspaces/fluxer/fluxer_api/pkgs/postgres/node_modules + volume: + nocopy: true - pnpm-store:/home/vscode/.local/share/pnpm/store - cargo-registry:/home/vscode/.cargo/registry - cargo-git:/home/vscode/.cargo/git @@ -232,20 +242,20 @@ services: source: ${FLUXER_DOCKER_SOCKET:-/var/run/docker.sock} target: /var/run/docker.sock ports: - - "8000:8000" - - "3000:3000" - - "8088:8088" - - "8080:8080" - - "8771:8771" - - "8082:8082" - - "3010:3010" - - "3020:3020" - - "8100-8125:8100-8125" - - "3900:8333" - - "8888:8888" - - "9333:9333" - - "9340:9340" - - "23646:23646" + - "${FLUXER_DEV_DOCS_PORT:-8000}:8000" + - "${FLUXER_DEV_RSPACK_PORT:-3000}:3000" + - "${FLUXER_DEV_PROXY_PORT:-8088}:8088" + - "${FLUXER_DEV_APP_PROXY_PORT:-8080}:8080" + - "${FLUXER_DEV_API_PORT:-8771}:8771" + - "${FLUXER_DEV_GATEWAY_PORT:-8082}:8082" + - "${FLUXER_DEV_MARKETING_PORT:-3010}:3010" + - "${FLUXER_DEV_ADMIN_PORT:-3020}:3020" + - "${FLUXER_DEV_RUST_SERVICE_PORTS:-8100-8125}:8100-8125" + - "${FLUXER_DEV_SEAWEEDFS_S3_PORT:-3900}:8333" + - "${FLUXER_DEV_SEAWEEDFS_FILER_PORT:-8888}:8888" + - "${FLUXER_DEV_SEAWEEDFS_MASTER_PORT:-9333}:9333" + - "${FLUXER_DEV_SEAWEEDFS_VOLUME_PORT:-9340}:9340" + - "${FLUXER_DEV_SEAWEEDFS_ADMIN_PORT:-23646}:23646" depends_on: - postgres - valkey @@ -269,7 +279,7 @@ services: volumes: - cassandra-data:/var/lib/cassandra ports: - - "9042:9042" + - "${FLUXER_DEV_CASSANDRA_PORT:-9042}:9042" postgres: image: postgres:16-alpine @@ -280,13 +290,13 @@ services: volumes: - postgres-data:/var/lib/postgresql/data ports: - - "5432:5432" + - "${FLUXER_DEV_POSTGRES_PORT:-5432}:5432" valkey: image: valkey/valkey:8.1.7-alpine command: ["valkey-server", "--save", "", "--appendonly", "no"] ports: - - "6379:6379" + - "${FLUXER_DEV_VALKEY_PORT:-6379}:6379" nats: image: nats:2.14.2-alpine @@ -294,8 +304,8 @@ services: volumes: - nats-data:/data ports: - - "4222:4222" - - "8222:8222" + - "${FLUXER_DEV_NATS_PORT:-4222}:4222" + - "${FLUXER_DEV_NATS_MONITOR_PORT:-8222}:8222" livekit: image: livekit/livekit-server:v1.12.0 @@ -303,9 +313,9 @@ services: volumes: - ./livekit.yaml:/etc/livekit.yaml:ro ports: - - "7880:7880" - - "7881:7881" - - "7882-7892:7882-7892/udp" + - "${FLUXER_DEV_LIVEKIT_PORT:-7880}:7880" + - "${FLUXER_DEV_LIVEKIT_TCP_PORT:-7881}:7881" + - "${FLUXER_DEV_LIVEKIT_UDP_PORTS:-7882-7892}:7882-7892/udp" elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:9.3.2 @@ -320,7 +330,7 @@ services: volumes: - elasticsearch-data:/usr/share/elasticsearch/data ports: - - "9200:9200" + - "${FLUXER_DEV_ELASTICSEARCH_PORT:-9200}:9200" meilisearch: image: getmeili/meilisearch:v1.12 @@ -330,7 +340,7 @@ services: volumes: - meilisearch-data:/meili_data ports: - - "7700:7700" + - "${FLUXER_DEV_MEILISEARCH_PORT:-7700}:7700" mailpit: image: axllent/mailpit:v1.30 @@ -386,6 +396,8 @@ volumes: fluxer-app-list-utils-node-modules: fluxer-app-livekit-client-node-modules: fluxer-app-number-utils-node-modules: + package-voice-engine-v2-node-modules: + fluxer-api-postgres-node-modules: cargo-registry: cargo-git: rust-target: diff --git a/.devcontainer/fix-docker-socket.sh b/.devcontainer/fix-docker-socket.sh new file mode 100755 index 000000000..e0c3fdf59 --- /dev/null +++ b/.devcontainer/fix-docker-socket.sh @@ -0,0 +1,46 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: AGPL-3.0-or-later + +set -uo pipefail + +SOCKET="${DOCKER_SOCKET:-/var/run/docker.sock}" +USER_NAME="${USER:-vscode}" + +if [ ! -S "$SOCKET" ]; then + echo "fix-docker-socket: no socket at $SOCKET; skipping (Docker-in-devcontainer will not work)" + exit 0 +fi + +if docker version --format '{{.Server.Version}}' >/dev/null 2>&1; then + echo "fix-docker-socket: $SOCKET is already usable as $USER_NAME" + exit 0 +fi + +socket_gid="$(stat -c '%g' "$SOCKET" 2>/dev/null || echo "")" +if [ -z "$socket_gid" ]; then + echo "fix-docker-socket: could not stat $SOCKET; skipping" >&2 + exit 0 +fi + +sudo sh -c ' + set -e + gid="$1" + user="$2" + socket="$3" + if ! getent group "$gid" >/dev/null 2>&1; then + groupadd --gid "$gid" docker-host + fi + group_name="$(getent group "$gid" | cut -d: -f1)" + usermod --append --groups "$group_name" "$user" + chgrp "$gid" "$socket" + chmod g+rw "$socket" +' sh "$socket_gid" "$USER_NAME" "$SOCKET" || { + echo "fix-docker-socket: could not adjust $SOCKET; run docker with sudo" >&2 + exit 0 +} + +if docker version --format '{{.Server.Version}}' >/dev/null 2>&1; then + echo "fix-docker-socket: $SOCKET is now usable as $USER_NAME (gid $socket_gid)" +else + echo "fix-docker-socket: $SOCKET still unreachable as $USER_NAME; run docker with sudo" >&2 +fi diff --git a/.devcontainer/verify.sh b/.devcontainer/verify.sh new file mode 100755 index 000000000..8524d5d77 --- /dev/null +++ b/.devcontainer/verify.sh @@ -0,0 +1,87 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: AGPL-3.0-or-later + +set -uo pipefail + +QUICK=0 +SKIP_INSTALL=0 +for arg in "$@"; do + case "$arg" in + --quick) QUICK=1 ;; + --skip-install) SKIP_INSTALL=1 ;; + -h|--help) sed -n '2,25p' "$0"; exit 0 ;; + *) echo "unknown argument: $arg" >&2; exit 2 ;; + esac +done + +REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +cd "$REPO_ROOT" || exit 1 + +FAILURES=() +PASSED=0 + +stage() { + local name="$1" + shift + echo + echo "=== ${name} ===" + echo "+ $*" + local started + started=$SECONDS + if "$@"; then + PASSED=$((PASSED + 1)) + echo "PASS ${name} ($((SECONDS - started))s)" + else + local status=$? + FAILURES+=("${name} (exit ${status})") + echo "FAIL ${name} (exit ${status}, $((SECONDS - started))s)" + fi +} + +echo "repository: ${REPO_ROOT}" +echo "node: $(node --version 2>&1)" +echo "pnpm: $(pnpm --version 2>&1)" +echo "rustc: $(rustc --version 2>&1)" +echo "python3: $(python3 --version 2>&1)" +echo "clang: $(clang --version 2>&1 | head -1)" +echo "CC_wasm32_unknown_unknown=${CC_wasm32_unknown_unknown:-}" +echo "AR_wasm32_unknown_unknown=${AR_wasm32_unknown_unknown:-}" + +stage "fonts: build_fonts.py --verify" python3 tools/fonts/build_fonts.py --verify + +stage "docker: usable as the remote user" docker version --format '{{.Server.Version}}' + +if [ "$SKIP_INSTALL" -eq 0 ]; then + stage "pnpm install" pnpm install --frozen-lockfile +else + echo + echo "=== pnpm install === (skipped)" +fi + +stage "wasm: pnpm --filter fluxer_app wasm:codegen" pnpm --filter fluxer_app wasm:codegen + +stage "app: typecheck" pnpm --filter fluxer_app typecheck +stage "app: unit tests" pnpm --filter fluxer_app exec vitest run + +if [ "$QUICK" -eq 0 ]; then + stage "app: production build" pnpm --filter fluxer_app build +fi + +stage "rust: fmt" cargo fmt --all -- --check +if [ "$QUICK" -eq 0 ]; then + stage "rust: clippy (workspace)" cargo clippy --workspace --all-targets -- -D warnings +else + stage "rust: clippy (servers)" cargo clippy -p fluxer_app_proxy -p fluxer_admin -p fluxer_marketing --all-targets -- -D warnings +fi +stage "rust: app proxy tests" cargo test -p fluxer_app_proxy + +stage "integration: font serving" cargo run -q -p fluxer-dev -- font-serving-it + +echo +echo "---------------------------------------------" +echo "${PASSED} stages passed, ${#FAILURES[@]} failed" +for failure in "${FAILURES[@]:-}"; do + [ -n "$failure" ] && echo " FAILED: ${failure}" +done +[ "${#FAILURES[@]}" -eq 0 ] || exit 1 +echo "Devcontainer verification passed." diff --git a/.gitattributes b/.gitattributes index 6e496bcdb..85604bbb7 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,4 @@ * text=auto fluxer_static/** -text -diff +fluxer_static/**/*.md text diff +packages/fonts/files/** -text -diff diff --git a/.github/labeller.yaml b/.github/labeller.yaml index 837ce344a..c644ccf2a 100644 --- a/.github/labeller.yaml +++ b/.github/labeller.yaml @@ -58,6 +58,9 @@ p:date-utils: p:errors: - changed-files: - any-glob-to-any-file: packages/errors/**/* +p:fonts: + - changed-files: + - any-glob-to-any-file: packages/fonts/**/* p:geo-utils: - changed-files: - any-glob-to-any-file: packages/geo_utils/**/* diff --git a/.github/workflows/build-app-proxy.yaml b/.github/workflows/build-app-proxy.yaml index 16bb0f4b8..765713b03 100644 --- a/.github/workflows/build-app-proxy.yaml +++ b/.github/workflows/build-app-proxy.yaml @@ -134,6 +134,13 @@ jobs: cargo run --locked --quiet --manifest-path tools/ci/Cargo.toml -- build-app-proxy --step upload_assets + - name: verify bundled faces are CORS-usable from the app origin + run: >- + deploy/scripts/verify-asset-cors.sh + --endpoint https://fluxerstatic.com + --origin https://fluxer.app + --manifest app-dist-output/dist/assets-manifest.txt + build-arm64: name: build app-proxy (arm64) needs: meta @@ -160,6 +167,7 @@ jobs: build-args: | BUILD_VERSION=${{ needs.meta.outputs.build_version }} PUBLIC_ASSET_BASE_URL=https://fluxerstatic.com + BUNDLE_LOCAL_ASSETS=false cache-from: type=gha,scope=fluxer-app-proxy-arm64 cache-to: type=gha,scope=fluxer-app-proxy-arm64,mode=max,ignore-error=true env: diff --git a/.github/workflows/repair-static-asset-metadata.yaml b/.github/workflows/repair-static-asset-metadata.yaml deleted file mode 100644 index 697fce52c..000000000 --- a/.github/workflows/repair-static-asset-metadata.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# SPDX-License-Identifier: AGPL-3.0-or-later -name: repair static asset metadata - -on: - workflow_dispatch: - inputs: - prefix: - description: "S3 key prefix to repair" - type: string - required: false - default: "assets/" - -jobs: - repair: - runs-on: ubuntu-24.04 - environment: static-assets - timeout-minutes: 30 - permissions: - contents: read - env: - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - STATIC_BUCKET: fluxer-static - S3_ENDPOINT: https://ewr1.vultrobjects.com - steps: - - name: Checkout repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - - - name: Set up Rust - uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 - with: - toolchain: 1.93.0 - - - name: Repair app asset metadata - env: - REPAIR_PREFIX: ${{ inputs.prefix }} - run: >- - cargo run --locked --quiet --manifest-path tools/ci/Cargo.toml -- repair-static-asset-metadata - --bucket "${STATIC_BUCKET}" - --prefix "${REPAIR_PREFIX}" diff --git a/.github/workflows/sync-static-bucket.yaml b/.github/workflows/sync-static-bucket.yaml deleted file mode 100644 index bf149e95e..000000000 --- a/.github/workflows/sync-static-bucket.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# SPDX-License-Identifier: AGPL-3.0-or-later -name: sync static bucket - -on: - workflow_dispatch: - -jobs: - push: - runs-on: ubuntu-24.04 - environment: static-assets - timeout-minutes: 30 - permissions: - contents: read - env: - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - STATIC_BUCKET: fluxer-static - S3_ENDPOINT: https://ewr1.vultrobjects.com - S3_WRITE_CONCURRENCY: 8 - steps: - - name: Checkout repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 - - - name: Set up Rust - uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 - with: - toolchain: 1.93.0 - - - name: Append static assets to S3 - run: >- - cargo run --locked --quiet --manifest-path tools/ci/Cargo.toml -- sync-static-bucket - --source fluxer_static - --bucket "${STATIC_BUCKET}" - - - name: Repair app asset metadata - run: >- - cargo run --locked --quiet --manifest-path tools/ci/Cargo.toml -- repair-static-asset-metadata - --bucket "${STATIC_BUCKET}" - --prefix assets/ diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 9dfe1ddd6..efb8791be 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -216,6 +216,74 @@ jobs: cargo run --locked --quiet --manifest-path tools/ci/Cargo.toml -- ci --step knip + fonts: + runs-on: ubuntu-24.04 + timeout-minutes: 10 + steps: + - name: Checkout code + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + + - name: Set up Python + uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 + with: + python-version: "3.13" + + - name: Install font tooling + run: python3 -m pip install -r tools/fonts/requirements.txt + + - name: Verify shipped fonts match the lockfile + run: python3 tools/fonts/build_fonts.py --verify + + font-serving: + runs-on: ubuntu-24.04 + timeout-minutes: 20 + steps: + - name: Checkout code + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 + + - name: Install Rust toolchain + uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 + with: + toolchain: stable + + - name: Install pnpm + uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 + + - name: Install Node.js + uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e + with: + node-version: '24' + cache: 'pnpm' + + - name: Cache cargo + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 + with: + path: | + ~/.cargo/registry + ~/.cargo/git + target + key: rust-${{ runner.os }}-${{ hashFiles('Cargo.lock') }} + restore-keys: | + rust-${{ runner.os }}- + + - name: Install native dependencies + run: | + sudo apt-get update + sudo apt-get install -y --no-install-recommends \ + pkg-config \ + build-essential \ + libcurl4-openssl-dev \ + libvips-dev \ + libavfilter-dev \ + libheif-dev \ + libwebp-dev + + - name: Install Node.js dependencies + run: pnpm --filter fluxer_admin --filter fluxer_marketing install + + - name: Run the font serving integration suite + run: cargo run --locked -q -p fluxer-dev -- font-serving-it + ci-scripts: runs-on: ubuntu-24.04 timeout-minutes: 25 diff --git a/.ignore b/.ignore index b31ac2f6a..8fdb355b6 100644 --- a/.ignore +++ b/.ignore @@ -69,4 +69,5 @@ fluxer_static geoip_data livekit.yaml next-env.d.ts +/packages/fonts/files/ /packages/marketing/public/static/app.css diff --git a/biome.json b/biome.json index 057769cb6..6d895c98c 100644 --- a/biome.json +++ b/biome.json @@ -143,6 +143,7 @@ "!**/*.module.css.d.ts", "!**/fluxer_app/src/features/ui/components/SVGMasks.tsx", "!fluxer_static", + "!packages/fonts", "!fluxer_admin/static/htmx.min.js", "!fluxer_marketing/static/htmx.min.js", "!fluxer_api/src/api/openapi/openapi.json" diff --git a/deploy/scripts/verify-asset-cors.sh b/deploy/scripts/verify-asset-cors.sh new file mode 100755 index 000000000..30592cffa --- /dev/null +++ b/deploy/scripts/verify-asset-cors.sh @@ -0,0 +1,140 @@ +#!/usr/bin/env bash +# SPDX-License-Identifier: AGPL-3.0-or-later + +set -euo pipefail + +ENDPOINT="${ASSET_CORS_ENDPOINT:-https://fluxerstatic.com}" +MANIFEST="${ASSET_MANIFEST:-app-dist-output/dist/assets-manifest.txt}" +ORIGIN="${ASSET_CORS_ORIGIN:-https://fluxer.app}" +SAMPLES="${ASSET_CORS_SAMPLES:-5}" +EXPLICIT_KEYS=() + +usage() { + sed -n '3,22p' "$0" + exit "${1:-2}" +} + +while [ $# -gt 0 ]; do + case "$1" in + --endpoint) + ENDPOINT="${2:?--endpoint needs a URL}" + shift 2 + ;; + --manifest) + MANIFEST="${2:?--manifest needs a path}" + shift 2 + ;; + --origin) + ORIGIN="${2:?--origin needs an origin}" + shift 2 + ;; + --samples) + SAMPLES="${2:?--samples needs a count}" + shift 2 + ;; + --key) + EXPLICIT_KEYS+=("${2:?--key needs an S3 key}") + shift 2 + ;; + -h | --help) usage 0 ;; + *) + echo "verify-asset-cors: unknown argument '$1'" >&2 + usage 2 + ;; + esac +done + +ENDPOINT="${ENDPOINT%/}" + +keys=() +if [ "${#EXPLICIT_KEYS[@]}" -gt 0 ]; then + keys=("${EXPLICIT_KEYS[@]}") +elif [ -f "$MANIFEST" ]; then + while IFS= read -r key; do + keys+=("$key") + done < <(grep -E '\.woff2$' "$MANIFEST" | awk -v n="$SAMPLES" ' + { lines[NR] = $0 } + END { + if (NR == 0) exit + if (n > NR) n = NR + for (i = 0; i < n; i++) print lines[int(i * NR / n) + 1] + }') +else + cat >&2 <<-EOF + verify-asset-cors: no asset manifest at '$MANIFEST' and no --key given. + + The manifest is produced by \`build-app-proxy --step generate_asset_manifest\` and uploaded + by the release workflow as the 'app-proxy-assets-manifest' artifact. Pass --manifest to point + at a downloaded copy, or --key to check a single face by hand. + EOF + exit 2 +fi + +if [ "${#keys[@]}" -eq 0 ]; then + echo "verify-asset-cors: no .woff2 keys to check (manifest '$MANIFEST' has none)" >&2 + exit 2 +fi + +echo "verify-asset-cors: endpoint=$ENDPOINT origin=$ORIGIN keys=${#keys[@]}" + +failures=0 +for key in "${keys[@]}"; do + url="$ENDPOINT/$key" + headers="$(curl --silent --show-error --location --max-time 20 \ + --header "Origin: $ORIGIN" --output /dev/null --dump-header - "$url" 2>&1 || true)" + + status="$(printf '%s\n' "$headers" | awk '/^HTTP\//{code=$2} END{print code+0}')" + header_value() { + printf '%s\n' "$headers" | + tr -d '\r' | + awk -v want="$1" 'index(tolower($0), want ":") == 1 {sub(/^[^:]*:[ \t]*/, ""); v=$0} END{print v}' + } + acao="$(header_value 'access-control-allow-origin')" + ctype="$(header_value 'content-type')" + cache="$(header_value 'cache-control')" + cdn_cache="$(header_value 'cdn-cache-control')" + + problems=() + [ "$status" = "200" ] || problems+=("status=$status (want 200)") + if [ -z "$acao" ]; then + problems+=("no Access-Control-Allow-Origin -- the browser will drop this face") + elif [ "$acao" != "*" ] && [ "$acao" != "$ORIGIN" ]; then + problems+=("Access-Control-Allow-Origin='$acao' (want '*' or '$ORIGIN')") + fi + case "$ctype" in + font/woff2*) ;; + *) problems+=("Content-Type='$ctype' (want font/woff2)") ;; + esac + caching_note="" + case "$cache$cdn_cache" in + *immutable*) ;; + *) caching_note=" (note: no 'immutable' token; cache-control='$cache')" ;; + esac + + if [ "${#problems[@]}" -eq 0 ]; then + echo " OK $key [$status $ctype acao=$acao]$caching_note" + else + failures=$((failures + 1)) + echo " FAIL $key" + for problem in "${problems[@]}"; do + echo " - $problem" + done + fi +done + +if [ "$failures" -gt 0 ]; then + cat >&2 <<-EOF + + verify-asset-cors: $failures of ${#keys[@]} sampled faces are NOT usable from $ORIGIN. + + Most likely cause: the bucket's CORS rule is scoped to the retired 'fonts/' prefix and does + not cover 'assets/'. Every bundled face fails in production while JS and CSS keep working, + and the CDN still answers 200, so no server-side alarm fires. + + Fix the bucket rule so it allows GET on 'assets/*' from the app origin (or bucket-wide), + then re-run this check. + EOF + exit 1 +fi + +echo "verify-asset-cors: all ${#keys[@]} sampled faces are usable from $ORIGIN" diff --git a/deploy/self-hosting/Caddyfile b/deploy/self-hosting/Caddyfile index bf7fe90a4..b64cd0b9a 100644 --- a/deploy/self-hosting/Caddyfile +++ b/deploy/self-hosting/Caddyfile @@ -37,7 +37,7 @@ reverse_proxy admin:8080 } - @staticAssets path /fonts/* /web/* /emoji/* /libs/* /avatars/* /badges/* /desktop/* /embeds/* + @staticAssets path /web/* /emoji/* /libs/* /avatars/* /badges/* /desktop/* /embeds/* handle @staticAssets { reverse_proxy static-proxy:8080 } diff --git a/fluxer_admin/Cargo.toml b/fluxer_admin/Cargo.toml index a6f9e6c60..b9da6a729 100644 --- a/fluxer_admin/Cargo.toml +++ b/fluxer_admin/Cargo.toml @@ -34,4 +34,5 @@ openapiv3 = "2.2.0" prettyplease = "0.2" progenitor = { version = "0.14.0", default-features = false } serde_json = "1" +sha2 = "0.11.0" syn = "2" diff --git a/fluxer_admin/Dockerfile b/fluxer_admin/Dockerfile index 74a69a9f6..929d30498 100644 --- a/fluxer_admin/Dockerfile +++ b/fluxer_admin/Dockerfile @@ -24,6 +24,11 @@ RUN TAILWIND_OXIDE_VERSION="4.2.1" \ COPY Cargo.lock Cargo.lock COPY fluxer_admin fluxer_admin +COPY packages/fonts/manifest.json packages/fonts/manifest.json +COPY packages/fonts/NOTICE.md packages/fonts/NOTICE.md +COPY packages/fonts/LICENSE-IBM-PLEX.txt packages/fonts/LICENSE-IBM-PLEX.txt +COPY packages/fonts/files/FluxerSans packages/fonts/files/FluxerSans +COPY packages/fonts/files/FluxerMono packages/fonts/files/FluxerMono RUN printf '%s\n' \ '[workspace]' \ 'members = ["fluxer_admin"]' \ @@ -42,6 +47,10 @@ RUN cargo build --release -p fluxer_admin \ RUN test -s target/release/build/fluxer_admin-*/out/static/app.css \ && echo "Tailwind CSS compiled successfully" +RUN test "$(ls target/release/build/fluxer_admin-*/out/static/fonts/*.woff2 | wc -l)" -eq 12 \ + && ls target/release/build/fluxer_admin-*/out/static/fonts/fonts.*.css \ + && echo "Latin-core fonts bundled successfully" + FROM debian:bookworm-slim AS runtime ARG BUILD_VERSION="" diff --git a/fluxer_admin/build.rs b/fluxer_admin/build.rs index 459023ee2..5f604c26d 100644 --- a/fluxer_admin/build.rs +++ b/fluxer_admin/build.rs @@ -1,10 +1,17 @@ // SPDX-License-Identifier: AGPL-3.0-or-later +use sha2::{Digest, Sha256}; use std::env; use std::fs; use std::path::{Path, PathBuf}; use std::process::Command; +const BUNDLED_FAMILIES: &[&str] = &["FluxerSans", "FluxerMono"]; + +const BUNDLED_WEIGHTS: &[u64] = &[400, 500, 600, 700]; + +const EXPECTED_FACE_COUNT: usize = 16; + fn main() { let manifest_dir = PathBuf::from(env::var("CARGO_MANIFEST_DIR").expect("CARGO_MANIFEST_DIR missing")); @@ -15,6 +22,7 @@ fn main() { println!("cargo:rerun-if-changed=openapi-admin.json"); generate_admin_api(&manifest_dir, &out_dir); + build_fonts(&manifest_dir, &out_dir); build_tailwind(&manifest_dir, &out_dir); } @@ -46,6 +54,213 @@ fn generate_admin_api(manifest_dir: &Path, out_dir: &Path) { fs::write(&output_path, content).expect("failed to write generated API code"); } +struct Face { + css_family: String, + weight: u64, + style: String, + source: String, +} + +struct Asset { + name: String, + content_type: &'static str, +} + +fn build_fonts(manifest_dir: &Path, out_dir: &Path) { + println!("cargo:rerun-if-changed=../packages/fonts/manifest.json"); + println!("cargo:rerun-if-changed=../packages/fonts/files/FluxerSans"); + println!("cargo:rerun-if-changed=../packages/fonts/files/FluxerMono"); + println!("cargo:rerun-if-changed=../packages/fonts/NOTICE.md"); + println!("cargo:rerun-if-changed=../packages/fonts/LICENSE-IBM-PLEX.txt"); + + let package_dir = manifest_dir.join("../packages/fonts"); + let fonts_dir = out_dir.join("static").join("fonts"); + let _ = fs::remove_dir_all(&fonts_dir); + fs::create_dir_all(&fonts_dir).expect("failed to create generated font dir"); + + let mut assets = Vec::new(); + let notice = emit_asset( + &fonts_dir, + &package_dir.join("NOTICE.md"), + "text/plain; charset=utf-8", + &mut assets, + ); + let plex_license = emit_asset( + &fonts_dir, + &package_dir.join("LICENSE-IBM-PLEX.txt"), + "text/plain; charset=utf-8", + &mut assets, + ); + + let faces = select_faces(&package_dir); + assert_eq!( + faces.len(), + EXPECTED_FACE_COUNT, + "packages/fonts no longer offers the {} Latin-core faces fluxer_admin renders; \ + reconcile BUNDLED_FAMILIES/BUNDLED_WEIGHTS with the manifest", + EXPECTED_FACE_COUNT + ); + + let mut stylesheet = String::from("/* SPDX-License-Identifier: AGPL-3.0-or-later */\n"); + stylesheet.push_str( + "/* @generated by fluxer_admin/build.rs from packages/fonts. Do not edit by hand. */\n\n", + ); + stylesheet.push_str(&format!( + "/*\n\ + \x20* IBM Plex is licensed under the SIL Open Font License 1.1.\n\ + \x20* The IBM Plex faces below are Modified Versions renamed to \"Fluxer Sans\", so OFL\n\ + \x20* clause 3 requires the disclosure to travel with them. It is served beside them:\n\ + \x20* ./{notice}\n\ + \x20* ./{plex_license}\n\ + \x20*\n\ + \x20* Every url() below is relative, so it resolves against this stylesheet's own\n\ + \x20* directory. That keeps the sheet correct under any FLUXER_ADMIN_BASE_PATH without\n\ + \x20* the build having to know the runtime base path.\n\ + \x20*/\n" + )); + for face in &faces { + let source = package_dir.join("files").join(&face.source); + let file = emit_asset(&fonts_dir, &source, "font/woff2", &mut assets); + stylesheet.push_str(&format!( + "@font-face {{\n\ + \tfont-family: '{}';\n\ + \tsrc: url('{file}') format('woff2');\n\ + \tfont-weight: {};\n\ + \tfont-style: {};\n\ + \tfont-display: swap;\n\ + }}\n", + face.css_family, face.weight, face.style + )); + } + + let stylesheet_name = write_hashed( + &fonts_dir, + "fonts.css", + stylesheet.as_bytes(), + "text/css; charset=utf-8", + &mut assets, + ); + + write_font_asset_table(out_dir, &stylesheet_name, &assets); +} + +fn select_faces(package_dir: &Path) -> Vec { + let manifest_path = package_dir.join("manifest.json"); + let raw = fs::read_to_string(&manifest_path).unwrap_or_else(|err| { + panic!( + "failed to read {}: {err}. packages/fonts is generated by \ + `python3 tools/fonts/build_fonts.py`.", + manifest_path.display() + ) + }); + let manifest: serde_json::Value = + serde_json::from_str(&raw).expect("failed to parse packages/fonts/manifest.json"); + let families = manifest["families"] + .as_array() + .expect("packages/fonts/manifest.json has no families array"); + + let mut faces = Vec::new(); + for wanted in BUNDLED_FAMILIES { + let family = families + .iter() + .find(|family| family["id"].as_str() == Some(wanted)) + .unwrap_or_else(|| panic!("packages/fonts/manifest.json has no family {wanted}")); + assert_eq!( + family["latinCore"].as_bool(), + Some(true), + "{wanted} is no longer a Latin-core family; it would need unicode-range gating" + ); + let css_family = family["cssFamily"] + .as_str() + .unwrap_or_else(|| panic!("{wanted} has no cssFamily")) + .to_owned(); + for face in family["faces"] + .as_array() + .unwrap_or_else(|| panic!("{wanted} has no faces array")) + { + let weight = face["weight"].as_u64().expect("face has no weight"); + if !BUNDLED_WEIGHTS.contains(&weight) { + continue; + } + assert!( + face["unicodeRange"].is_null(), + "{wanted} face {} carries a unicode-range; Latin-core faces must not", + face["file"] + ); + faces.push(Face { + css_family: css_family.clone(), + weight, + style: face["style"] + .as_str() + .expect("face has no style") + .to_owned(), + source: face["file"].as_str().expect("face has no file").to_owned(), + }); + } + } + faces +} + +fn emit_asset( + fonts_dir: &Path, + source: &Path, + content_type: &'static str, + assets: &mut Vec, +) -> String { + let bytes = + fs::read(source).unwrap_or_else(|err| panic!("failed to read {}: {err}", source.display())); + let file_name = source + .file_name() + .and_then(|name| name.to_str()) + .unwrap_or_else(|| panic!("{} has no file name", source.display())); + write_hashed(fonts_dir, file_name, &bytes, content_type, assets) +} + +fn write_hashed( + fonts_dir: &Path, + file_name: &str, + bytes: &[u8], + content_type: &'static str, + assets: &mut Vec, +) -> String { + let (stem, extension) = file_name + .rsplit_once('.') + .unwrap_or_else(|| panic!("{file_name} has no extension to hash around")); + let digest = Sha256::digest(bytes); + let hash: String = digest + .iter() + .take(8) + .map(|byte| format!("{byte:02x}")) + .collect(); + let name = format!("{stem}.{hash}.{extension}"); + fs::write(fonts_dir.join(&name), bytes) + .unwrap_or_else(|err| panic!("failed to write {name}: {err}")); + assets.push(Asset { + name: name.clone(), + content_type, + }); + name +} + +fn write_font_asset_table(out_dir: &Path, stylesheet_name: &str, assets: &[Asset]) { + let mut generated = String::from( + "// @generated by fluxer_admin/build.rs from packages/fonts. Do not edit by hand.\n\n", + ); + generated.push_str(&format!( + "/// File name of the content-hashed `@font-face` stylesheet, relative to `/static/fonts/`.\npub const STYLESHEET_FILE_NAME: &str = {stylesheet_name:?};\n\n" + )); + generated.push_str("/// `(file name, content type, bytes)` for everything served under `/static/fonts/`.\npub static ASSETS: &[(&str, &str, &[u8])] = &[\n"); + for asset in assets { + generated.push_str(&format!( + " ({:?}, {:?}, include_bytes!(concat!(env!(\"OUT_DIR\"), \"/static/fonts/{}\"))),\n", + asset.name, asset.content_type, asset.name + )); + } + generated.push_str("];\n"); + fs::write(out_dir.join("static").join("fonts.rs"), generated) + .expect("failed to write generated font asset table"); +} + fn build_tailwind(manifest_dir: &Path, out_dir: &Path) { let output_dir = out_dir.join("static"); fs::create_dir_all(&output_dir).expect("failed to create generated static dir"); diff --git a/fluxer_admin/src/fonts.rs b/fluxer_admin/src/fonts.rs new file mode 100644 index 000000000..5816f860c --- /dev/null +++ b/fluxer_admin/src/fonts.rs @@ -0,0 +1,72 @@ +// SPDX-License-Identifier: AGPL-3.0-or-later + +include!(concat!(env!("OUT_DIR"), "/static/fonts.rs")); + +pub fn asset(file_name: &str) -> Option<(&'static str, &'static [u8])> { + ASSETS + .iter() + .find(|(name, _, _)| *name == file_name) + .map(|(_, content_type, bytes)| (*content_type, *bytes)) +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn stylesheet_is_served_and_content_hashed() { + let (content_type, bytes) = + asset(STYLESHEET_FILE_NAME).expect("the generated stylesheet must be servable"); + assert_eq!(content_type, "text/css; charset=utf-8"); + let css = std::str::from_utf8(bytes).expect("stylesheet must be UTF-8"); + assert!(css.contains("font-family: 'Fluxer Sans'")); + assert!(css.contains("font-family: 'Fluxer Mono'")); + assert!( + !css.contains("?v="), + "content hashing replaces cache-bust tokens" + ); + assert!( + !css.contains("fluxerstatic"), + "fonts must not be fetched from the static CDN" + ); + assert!( + STYLESHEET_FILE_NAME.starts_with("fonts.") && STYLESHEET_FILE_NAME.ends_with(".css"), + "unexpected stylesheet name {STYLESHEET_FILE_NAME}" + ); + } + + #[test] + fn every_face_the_stylesheet_references_is_served() { + let (_, bytes) = asset(STYLESHEET_FILE_NAME).expect("stylesheet"); + let css = std::str::from_utf8(bytes).expect("stylesheet must be UTF-8"); + let mut referenced = 0; + for fragment in css.split("url('").skip(1) { + let file_name = fragment.split('\'').next().expect("unterminated url()"); + let (content_type, _) = asset(file_name) + .unwrap_or_else(|| panic!("stylesheet references unserved font {file_name}")); + assert_eq!(content_type, "font/woff2"); + referenced += 1; + } + assert_eq!(referenced, 16, "expected the 16 bundled Latin-core faces"); + } + + #[test] + fn ofl_attribution_ships_with_the_binaries() { + let notice = ASSETS + .iter() + .find(|(name, _, _)| name.starts_with("NOTICE.") && name.ends_with(".md")) + .expect("the OFL modification disclosure must ship with the modified fonts"); + assert!(!notice.2.is_empty()); + assert!( + ASSETS + .iter() + .any(|(name, _, _)| name.starts_with("LICENSE-IBM-PLEX.")) + ); + } + + #[test] + fn unknown_files_are_not_served() { + assert!(asset("fonts.css").is_none()); + assert!(asset("../../../etc/passwd").is_none()); + } +} diff --git a/fluxer_admin/src/lib.rs b/fluxer_admin/src/lib.rs index 3f4ca69a8..a5ea40c43 100644 --- a/fluxer_admin/src/lib.rs +++ b/fluxer_admin/src/lib.rs @@ -4,6 +4,7 @@ pub mod acl; pub mod admin_flags; pub mod api; pub mod config; +pub mod fonts; pub mod middleware; pub mod oauth2; pub mod routes; diff --git a/fluxer_admin/src/routes/mod.rs b/fluxer_admin/src/routes/mod.rs index 0833baa9e..ad1fb8f4b 100644 --- a/fluxer_admin/src/routes/mod.rs +++ b/fluxer_admin/src/routes/mod.rs @@ -30,17 +30,25 @@ pub struct ActionQuery { } use axum::{ Json, Router, - extract::{Request, State}, + extract::{Path, Request, State}, http::{HeaderMap, HeaderName, HeaderValue, StatusCode, header}, middleware::{Next, from_fn, from_fn_with_state}, response::{Html, IntoResponse, Response}, routing::get, }; -use tower_http::{compression::CompressionLayer, trace::TraceLayer}; +use tower_http::{ + compression::{ + CompressionLayer, + predicate::{DefaultPredicate, NotForContentType, Predicate}, + }, + trace::TraceLayer, +}; const APP_CSS: &str = include_str!(concat!(env!("OUT_DIR"), "/static/app.css")); const HTMX_JS: &str = include_str!("../../static/htmx.min.js"); +const IMMUTABLE_CACHE_CONTROL: &str = "public, max-age=31536000, immutable"; + const STRICT_TRANSPORT_SECURITY_VALUE: &str = "max-age=31536000; includeSubDomains; preload"; const REFERRER_POLICY_VALUE: &str = "strict-origin-when-cross-origin"; const X_FRAME_OPTIONS_VALUE: &str = "DENY"; @@ -76,6 +84,7 @@ pub fn build_router(config: AdminConfig) -> Router { .route("/_health", get(health)) .route("/robots.txt", get(robots_txt)) .route("/static/app.css", get(app_css)) + .route("/static/fonts/{file_name}", get(font_asset)) .route("/static/htmx.min.js", get(htmx_js)) .merge(auth::router()) .merge(protected) @@ -85,7 +94,10 @@ pub fn build_router(config: AdminConfig) -> Router { security_headers_middleware, )) .layer(from_fn(cache_headers_middleware)) - .layer(CompressionLayer::new()) + .layer( + CompressionLayer::new() + .compress_when(DefaultPredicate::new().and(NotForContentType::const_new("font/"))), + ) .layer(TraceLayer::new_for_http()) .with_state(state) } @@ -129,9 +141,9 @@ fn build_admin_csp(config: &AdminConfig) -> String { [ "default-src 'self'".to_owned(), "script-src 'self' 'unsafe-inline'".to_owned(), - format!("style-src 'self' 'unsafe-inline' {static_cdn}"), + "style-src 'self' 'unsafe-inline'".to_owned(), format!("img-src 'self' data: blob: {static_cdn} {media} https://fluxer-reports.ewr1.vultrobjects.com"), - format!("font-src 'self' data: {static_cdn}"), + "font-src 'self'".to_owned(), "connect-src 'self'".to_owned(), "object-src 'none'".to_owned(), "frame-src 'none'".to_owned(), @@ -193,6 +205,20 @@ async fn app_css() -> impl IntoResponse { ([(header::CONTENT_TYPE, "text/css; charset=utf-8")], APP_CSS) } +async fn font_asset(Path(file_name): Path) -> Response { + match crate::fonts::asset(&file_name) { + Some((content_type, bytes)) => ( + [ + (header::CONTENT_TYPE, content_type), + (header::CACHE_CONTROL, IMMUTABLE_CACHE_CONTROL), + ], + bytes, + ) + .into_response(), + None => StatusCode::NOT_FOUND.into_response(), + } +} + async fn htmx_js() -> impl IntoResponse { ( [( @@ -232,6 +258,7 @@ async fn not_found(State(state): State) -> impl IntoResponse { meta charset="utf-8"; meta name="viewport" content="width=device-width, initial-scale=1"; title { "404 - Not Found" } + link rel="stylesheet" href={(base) "/static/fonts/" (crate::fonts::STYLESHEET_FILE_NAME)}; link rel="stylesheet" href={(base) "/static/app.css"}; } body class="min-h-screen bg-neutral-50 flex items-center justify-center" { diff --git a/fluxer_admin/src/styles/app.css b/fluxer_admin/src/styles/app.css index 7b248d359..27ffe7c30 100644 --- a/fluxer_admin/src/styles/app.css +++ b/fluxer_admin/src/styles/app.css @@ -5,7 +5,7 @@ @theme { --font-sans: "Fluxer Sans", ui-sans-serif, system-ui, sans-serif; - --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif; + --font-display: "Fluxer Sans", ui-sans-serif, system-ui, sans-serif; --color-brand-primary: hsl(242 70% 55%); --color-brand-primary-dark: hsl(242 70% 47%); --color-brand-primary-rgb: 93 79 192; @@ -13,7 +13,6 @@ :root { --brand-primary: hsl(242 70% 55%); - --font-bricolage: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif; --focus-ring-color: hsl(242 70% 55% / 0.45); --focus-ring-offset: #ffffff; } diff --git a/fluxer_admin/src/templates/layout.rs b/fluxer_admin/src/templates/layout.rs index ffaf638b5..f54be9cf4 100644 --- a/fluxer_admin/src/templates/layout.rs +++ b/fluxer_admin/src/templates/layout.rs @@ -70,8 +70,7 @@ pub fn admin_layout_ext( meta http-equiv="refresh" content="3"; } title { (title) " ~ Fluxer Admin" } - link rel="stylesheet" href={(config.static_cdn_endpoint) "/fonts/ibm-plex.css?v=3"}; - link rel="stylesheet" href={(config.static_cdn_endpoint) "/fonts/bricolage.css?v=3"}; + link rel="stylesheet" href={(base) "/static/fonts/" (crate::fonts::STYLESHEET_FILE_NAME)}; link rel="stylesheet" href=(cache_busted_asset(base, asset_version, "/static/app.css")); link rel="icon" type="image/x-icon" href={(config.static_cdn_endpoint) "/web/favicon.ico"}; link rel="apple-touch-icon" href={(config.static_cdn_endpoint) "/web/apple-touch-icon.png"}; diff --git a/fluxer_admin/src/templates/pages/login.rs b/fluxer_admin/src/templates/pages/login.rs index 141bf98d8..79697fad0 100644 --- a/fluxer_admin/src/templates/pages/login.rs +++ b/fluxer_admin/src/templates/pages/login.rs @@ -12,8 +12,7 @@ pub fn login_page(config: &AdminConfig, error_message: Option<&str>) -> Markup { meta charset="UTF-8"; meta name="viewport" content="width=device-width, initial-scale=1.0"; title { "Login ~ Fluxer Admin" } - link rel="stylesheet" href={(config.static_cdn_endpoint) "/fonts/ibm-plex.css?v=3"}; - link rel="stylesheet" href={(config.static_cdn_endpoint) "/fonts/bricolage.css?v=3"}; + link rel="stylesheet" href={(base) "/static/fonts/" (crate::fonts::STYLESHEET_FILE_NAME)}; link rel="stylesheet" href={(base) "/static/app.css"}; link rel="icon" type="image/x-icon" href={(config.static_cdn_endpoint) "/web/favicon.ico"}; } diff --git a/fluxer_admin/tests/htmx_acceptance.rs b/fluxer_admin/tests/htmx_acceptance.rs index c0a306149..5153a66e3 100644 --- a/fluxer_admin/tests/htmx_acceptance.rs +++ b/fluxer_admin/tests/htmx_acceptance.rs @@ -573,6 +573,84 @@ async fn creating_registration_url_swaps_copyable_url_list_fragment() { assert!(toast.contains("Registration URL created"), "{toast}"); } +#[tokio::test] +async fn fonts_are_served_locally_content_hashed_and_immutable() { + let app = setup().await; + + let stylesheet_path = format!( + "/static/fonts/{}", + fluxer_admin::fonts::STYLESHEET_FILE_NAME + ); + let (headers, css) = get_with_headers(&app, &stylesheet_path, &[]).await; + assert_eq!( + headers.get(header::CACHE_CONTROL).unwrap(), + "public, max-age=31536000, immutable" + ); + + for fragment in css.split("url('").skip(1) { + let file_name = fragment.split('\'').next().unwrap(); + let response = app + .router + .clone() + .oneshot( + Request::builder() + .uri(format!("/static/fonts/{file_name}")) + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!( + response.status(), + StatusCode::OK, + "missing font {file_name}" + ); + assert_eq!( + response.headers().get(header::CONTENT_TYPE).unwrap(), + "font/woff2" + ); + assert_eq!( + response.headers().get(header::CACHE_CONTROL).unwrap(), + "public, max-age=31536000, immutable" + ); + } + + let response = app + .router + .clone() + .oneshot( + Request::builder() + .uri("/static/fonts/does-not-exist.woff2") + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(response.status(), StatusCode::NOT_FOUND); +} + +#[tokio::test] +async fn rendered_heads_never_reference_the_static_cdn_for_fonts() { + let app = setup().await; + + let (headers, page) = get_with_headers(&app, "/users", &[]).await; + assert!( + !page.contains("/fonts/ibm-plex.css"), + "the admin layout still links the CDN font stylesheets" + ); + assert!(page.contains("/static/fonts/"), "{page}"); + + let csp = headers + .get(header::CONTENT_SECURITY_POLICY) + .and_then(|value| value.to_str().ok()) + .expect("missing CSP"); + assert!(csp.contains("font-src 'self';"), "font-src was {csp}"); + assert!( + csp.contains("style-src 'self' 'unsafe-inline';"), + "style-src was {csp}" + ); +} + struct SearchCase { path: &'static str, result_target: &'static str, diff --git a/fluxer_app/index.html b/fluxer_app/index.html index b65a78add..a3220ee09 100644 --- a/fluxer_app/index.html +++ b/fluxer_app/index.html @@ -7,7 +7,6 @@ - @@ -20,6 +19,7 @@ + diff --git a/fluxer_app/package.json b/fluxer_app/package.json index 8a0789a46..d469c545a 100644 --- a/fluxer_app/package.json +++ b/fluxer_app/package.json @@ -22,7 +22,7 @@ "bench:gif-picker": "vitest bench --run src/features/channel/components/pickers/gif/GifPickerStateMachine.bench.ts src/features/channel/components/pickers/gif/GifPickerGridData.bench.ts src/features/channel/components/pickers/gif/GifPickerLoadingSkeletonGridLayout.bench.ts src/features/channel/components/pickers/shared/MasonryListComputer.bench.ts", "bench:messages": "vitest bench --run src/features/messaging/utils/MessageGroupingUtils.bench.ts src/features/channel/components/ChannelMessageStreamUtils.bench.ts src/features/messaging/components/markdown/MarkdownRendering.bench.ts src/features/channel/components/MessageAttachmentUtils.bench.ts src/features/messaging/utils/MessagePaginationUtils.bench.ts src/features/platform/utils/ScrollPosition.bench.ts src/features/messaging/state/ReactionStateMachine.bench.ts", "test:watch": "vitest", - "typecheck": "pnpm wasm:codegen && pnpm generate:message-layout && pnpm generate:theme-variables && pnpm generate:masks && pnpm generate:css-types && tsgo --noEmit", + "typecheck": "pnpm wasm:codegen && pnpm generate:colors && pnpm generate:message-layout && pnpm generate:theme-variables && pnpm generate:masks && pnpm generate:css-types && tsgo --noEmit", "typecheck:only": "tsgo --noEmit", "check:message-layout": "pnpm tsx scripts/GenerateMessageLayoutCss.ts --check", "generate:colors": "pnpm tsx scripts/GenerateColorSystem.ts", diff --git a/fluxer_app/rspack.config.mjs b/fluxer_app/rspack.config.mjs index 4fbb85b3e..29fdca584 100644 --- a/fluxer_app/rspack.config.mjs +++ b/fluxer_app/rspack.config.mjs @@ -411,7 +411,10 @@ export default () => { }, ], }), - staticFilesPlugin({staticCdnEndpoint: normalizedStaticCdnEndpoint}), + staticFilesPlugin({ + staticCdnEndpoint: normalizedStaticCdnEndpoint, + fontsDir: path.join(MONOREPO_ROOT, 'packages', 'fonts'), + }), new DefinePlugin({ __FLUXER_PRECACHE_MANIFEST__: JSON.stringify([]), __FLUXER_SW_VERSION__: JSON.stringify(publicValues.PUBLIC_BUILD_VERSION || 'dev'), diff --git a/fluxer_app/scripts/GenerateThemeVariables.ts b/fluxer_app/scripts/GenerateThemeVariables.ts index 888a6a433..6bc70010e 100644 --- a/fluxer_app/scripts/GenerateThemeVariables.ts +++ b/fluxer_app/scripts/GenerateThemeVariables.ts @@ -8,6 +8,7 @@ type ThemeVariableKind = 'color' | 'font' | 'dimension' | 'number' | 'shadow' | interface CssSource { file: string; label: string; + generatedBy?: string; } interface VariableDefinition { @@ -20,21 +21,48 @@ interface VariableDefinition { const PRIORITY_CSS_SOURCES: ReadonlyArray = [ {file: 'src/app/globals.css', label: 'globals'}, - {file: 'src/features/theme/styles/generated/color-system.css', label: 'color-system'}, - {file: 'src/features/theme/styles/generated/message-layout.css', label: 'message-layout'}, + { + file: 'src/features/theme/styles/generated/color-system.css', + label: 'color-system', + generatedBy: 'pnpm generate:colors', + }, + { + file: 'src/features/theme/styles/generated/message-layout.css', + label: 'message-layout', + generatedBy: 'pnpm generate:message-layout', + }, ]; const PRIORITY_SOURCE_INDEX = new Map(PRIORITY_CSS_SOURCES.map((source, index) => [source.file, index])); const IGNORED_SOURCE_PREFIXES = ['src/features/theme_studio/', 'src/theme/']; +const BUNDLED_FONT_VARIABLES_CSS = resolve( + import.meta.dirname, + '..', + '..', + 'packages', + 'fonts', + 'css', + 'variables.css', +); + +function bundledFontStack(name: string): string { + const css = readFileSync(BUNDLED_FONT_VARIABLES_CSS, 'utf8'); + const declaration = new RegExp(`${name}:([^;]*);`).exec(css); + if (!declaration) { + throw new Error(`${name} is not declared in ${BUNDLED_FONT_VARIABLES_CSS}`); + } + return declaration[1].replace(/\s+/g, ' ').trim(); +} + const EXTRA_GLOBAL_DEFAULTS: ReadonlyArray<{name: string; value: string; source: string}> = [ { name: '--font-sans', - value: "'Fluxer Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif", + value: bundledFontStack('--font-sans'), source: 'runtime-fonts', }, { name: '--font-mono', - value: "'Fluxer Mono', 'Menlo', 'Monaco', 'Courier New', monospace", + value: bundledFontStack('--font-mono'), source: 'runtime-fonts', }, {name: '--font-size', value: '1rem', source: 'runtime-accessibility'}, @@ -121,6 +149,17 @@ function discoverCssSources(appDir: string): ReadonlyArray { } }; visit(srcDir); + const discovered = new Set(files); + const missing = PRIORITY_CSS_SOURCES.filter((source) => !discovered.has(source.file)); + if (missing.length > 0) { + const remedies = missing.map( + (source) => ` ${source.file} is missing. Run \`${source.generatedBy ?? 'pnpm build'}\` first.`, + ); + throw new Error( + `Cannot generate the theme variable manifest from a partial input.\n${remedies.join('\n')}\n` + + 'Writing anyway would silently delete every variable those sources declare from a tracked file.', + ); + } return files .sort((left, right) => { const leftPriority = PRIORITY_SOURCE_INDEX.get(left); diff --git a/fluxer_app/scripts/build/rspack/static-files.mjs b/fluxer_app/scripts/build/rspack/static-files.mjs index 5926ce476..70da903cc 100644 --- a/fluxer_app/scripts/build/rspack/static-files.mjs +++ b/fluxer_app/scripts/build/rspack/static-files.mjs @@ -1,9 +1,16 @@ // SPDX-License-Identifier: AGPL-3.0-or-later +import fs from 'node:fs'; +import path from 'node:path'; import {sources} from '@rspack/core'; const STATIC_CDN_ENDPOINT_PLACEHOLDER = '{{STATIC_CDN_ENDPOINT}}'; +const FONT_LICENSE_FILES = [ + {source: 'NOTICE.md', asset: 'assets/fonts-NOTICE.txt'}, + {source: 'LICENSE-IBM-PLEX.txt', asset: 'assets/fonts-LICENSE-IBM-PLEX.txt'}, +]; + function resolveStaticCdnEndpoint(staticCdnEndpoint) { const value = staticCdnEndpoint?.trim().replace(/\/+$/, ''); return value || STATIC_CDN_ENDPOINT_PLACEHOLDER; @@ -78,6 +85,22 @@ function generateRobotsTxt() { export class StaticFilesPlugin { constructor(options = {}) { this.staticCdnEndpoint = options.staticCdnEndpoint; + this.fontsDir = options.fontsDir; + } + + emitFontLicenses(compilation) { + if (!this.fontsDir) { + return; + } + for (const {source, asset} of FONT_LICENSE_FILES) { + const sourcePath = path.join(this.fontsDir, source); + if (!fs.existsSync(sourcePath)) { + throw new Error( + `StaticFilesPlugin: ${sourcePath} is missing. The bundled fonts may not be redistributed without it.`, + ); + } + compilation.emitAsset(asset, new sources.RawSource(fs.readFileSync(sourcePath))); + } } apply(compiler) { @@ -94,6 +117,7 @@ export class StaticFilesPlugin { new sources.RawSource(generateBrowserConfig(this.staticCdnEndpoint)), ); compilation.emitAsset('robots.txt', new sources.RawSource(generateRobotsTxt())); + this.emitFontLicenses(compilation); }, ); }); diff --git a/fluxer_app/scripts/build/utils/ServiceWorker.tsx b/fluxer_app/scripts/build/utils/ServiceWorker.tsx index a7d864730..dd8384538 100644 --- a/fluxer_app/scripts/build/utils/ServiceWorker.tsx +++ b/fluxer_app/scripts/build/utils/ServiceWorker.tsx @@ -12,6 +12,8 @@ interface PrecacheEntry { const PRECACHE_ROOT_FILES = ['index.html', 'manifest.json', 'browserconfig.xml', 'robots.txt', 'version.json']; +const NEVER_PRECACHED_EXTENSIONS = ['.woff', '.woff2', '.ttf', '.otf', '.eot']; + async function fileRevision(filePath: string): Promise { const stat = await fs.stat(filePath); return `${stat.size}:${Math.trunc(stat.mtimeMs)}`; @@ -24,6 +26,10 @@ function isLocalAssetUrl(value: string): boolean { if (value.startsWith('//')) { return false; } + const pathname = value.split(/[?#]/, 1)[0].toLowerCase(); + if (NEVER_PRECACHED_EXTENSIONS.some((extension) => pathname.endsWith(extension))) { + return false; + } return value.startsWith('/assets/') || PRECACHE_ROOT_FILES.some((file) => value === `/${file}`); } diff --git a/fluxer_app/src/app/I18n.ts b/fluxer_app/src/app/I18n.ts index 70859e43e..b776ac489 100644 --- a/fluxer_app/src/app/I18n.ts +++ b/fluxer_app/src/app/I18n.ts @@ -5,6 +5,7 @@ import AppStorage from '@app/features/platform/state/PersistentStorage'; import {getNativeLocaleIdentifier} from '@app/features/platform/types/Platform'; import {Logger} from '@app/features/platform/utils/AppLogger'; import {loadLazyModule} from '@app/features/platform/utils/LazyModuleLoader'; +import {noteLocale} from '@app/features/theme/fonts/ScriptFontLoader'; import {type I18n, i18n, type Messages} from '@lingui/core'; import {createAtom, runInAction} from 'mobx'; @@ -172,6 +173,7 @@ function activateLocale(localeCode: LocaleCode, messages: Messages): void { if (typeof document !== 'undefined') { document.documentElement.lang = localeCode; } + noteLocale(localeCode); AppStorage.setItem('locale', localeCode); } diff --git a/fluxer_app/src/features/app/components/dialogs/Modal.module.css b/fluxer_app/src/features/app/components/dialogs/Modal.module.css index d18a98403..7ec4ce611 100644 --- a/fluxer_app/src/features/app/components/dialogs/Modal.module.css +++ b/fluxer_app/src/features/app/components/dialogs/Modal.module.css @@ -104,10 +104,6 @@ overflow: hidden; } -.layer.layerFullscreenMobile .surface { - will-change: transform; -} - .layer.layerCentered { padding: calc(1.5rem + env(safe-area-inset-top, 0px)) calc(1rem + env(safe-area-inset-right, 0px)) calc(1.5rem + env(safe-area-inset-bottom, 0px)) calc(1rem + env(safe-area-inset-left, 0px)); diff --git a/fluxer_app/src/features/app/components/dialogs/components/MobileChannelSettingsView.tsx b/fluxer_app/src/features/app/components/dialogs/components/MobileChannelSettingsView.tsx index 0f76712e3..fa27b5616 100644 --- a/fluxer_app/src/features/app/components/dialogs/components/MobileChannelSettingsView.tsx +++ b/fluxer_app/src/features/app/components/dialogs/components/MobileChannelSettingsView.tsx @@ -207,7 +207,6 @@ export const MobileChannelSettingsView: React.FC exit={reducedMotion ? 'center' : 'exit'} transition={{duration: reducedMotion ? 0 : 0.15, ease: 'easeInOut'}} className={styles.mobileContentPane} - style={{willChange: 'transform'}} data-flx="app.mobile-channel-settings-view.mobile-content-pane" > exit={reducedMotion ? 'center' : 'exit'} transition={{duration: reducedMotion ? 0 : 0.15, ease: 'easeInOut'}} className={styles.mobileContentPane} - style={{willChange: 'transform'}} data-flx="app.mobile-channel-settings-view.mobile-content-pane--2" > = o exit={reducedMotion ? 'center' : 'exit'} transition={{duration: reducedMotion ? 0 : 0.15, ease: 'easeInOut'}} className={userSettingsStyles.mobileContentPane} - style={{willChange: 'transform'}} data-flx="app.mobile-guild-settings-view.div--6" > = o exit={reducedMotion ? 'center' : 'exit'} transition={{duration: reducedMotion ? 0 : 0.15, ease: 'easeInOut'}} className={userSettingsStyles.mobileContentPane} - style={{willChange: 'transform'}} data-flx="app.mobile-guild-settings-view.div--7" > = observer( exit="exit" transition={{duration: 0.15, ease: 'easeInOut'}} className={userSettingsStyles.mobileContentPane} - style={{willChange: 'transform'}} data-flx="app.mobile-settings-view.div--6" > = observer( exit="exit" transition={{duration: 0.15, ease: 'easeInOut'}} className={userSettingsStyles.mobileContentPane} - style={{willChange: 'transform'}} data-flx="app.mobile-settings-view.div--7" > } + containerClass={styles.popoutContainer} position="top" offsetMainAxis={12} > diff --git a/fluxer_app/src/features/app/components/setup/SelfHostedSetupWizardGate.module.css b/fluxer_app/src/features/app/components/setup/SelfHostedSetupWizardGate.module.css index 4d4bc6ff3..f58f0f8d4 100644 --- a/fluxer_app/src/features/app/components/setup/SelfHostedSetupWizardGate.module.css +++ b/fluxer_app/src/features/app/components/setup/SelfHostedSetupWizardGate.module.css @@ -108,7 +108,6 @@ color: var(--text-primary); text-align: center; transform-origin: center; - will-change: opacity, transform; } .welcomeWordMeasure { diff --git a/fluxer_app/src/features/auth/components/accounts/AccountListItem.module.css b/fluxer_app/src/features/auth/components/accounts/AccountListItem.module.css index 985b2e1bf..b99a23787 100644 --- a/fluxer_app/src/features/auth/components/accounts/AccountListItem.module.css +++ b/fluxer_app/src/features/auth/components/accounts/AccountListItem.module.css @@ -120,8 +120,7 @@ } .accountItem.current .accountMeta { - color: var(--surface-interactive-selected-color); - opacity: 0.8; + color: color-mix(in srgb, var(--surface-interactive-selected-color) 80%, transparent); } .instanceLabel { diff --git a/fluxer_app/src/features/channel/components/ChannelMembers.module.css b/fluxer_app/src/features/channel/components/ChannelMembers.module.css index 205cb1ebd..3a82f2720 100644 --- a/fluxer_app/src/features/channel/components/ChannelMembers.module.css +++ b/fluxer_app/src/features/channel/components/ChannelMembers.module.css @@ -34,7 +34,6 @@ align-items: center; height: 2.75rem; min-height: 2.75rem; - will-change: transform; } .virtualMemberRow { diff --git a/fluxer_app/src/features/channel/components/EmojiPicker.module.css b/fluxer_app/src/features/channel/components/EmojiPicker.module.css index 724bbbd66..60e47c168 100644 --- a/fluxer_app/src/features/channel/components/EmojiPicker.module.css +++ b/fluxer_app/src/features/channel/components/EmojiPicker.module.css @@ -110,7 +110,11 @@ flex-direction: column; align-items: center; gap: 0.5rem; - color: var(--text-primary-muted); + color: color-mix(in srgb, var(--text-primary-muted) 70%, transparent); +} + +.emptyStateInner img, +.emptyStateInner svg { opacity: 0.7; } diff --git a/fluxer_app/src/features/channel/components/MemberListItem.module.css b/fluxer_app/src/features/channel/components/MemberListItem.module.css index 1ac63e6f6..83ff65ada 100644 --- a/fluxer_app/src/features/channel/components/MemberListItem.module.css +++ b/fluxer_app/src/features/channel/components/MemberListItem.module.css @@ -89,16 +89,20 @@ .memberCustomStatus { max-width: 100%; - color: var(--text-primary-muted); + color: color-mix(in srgb, var(--text-primary-muted) 85%, transparent); font-size: 0.6875rem; line-height: 0.875rem; font-weight: 500; - opacity: 0.85; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } +.memberCustomStatus img, +.memberCustomStatus svg { + opacity: 0.85; +} + :global(:where(html.window-focused, html.unfocused-fully-interactive):not(.window-focus-activation-guard)) .button:hover .memberCustomStatus { diff --git a/fluxer_app/src/features/channel/components/PreloadableUserPopout.tsx b/fluxer_app/src/features/channel/components/PreloadableUserPopout.tsx index 803bac741..7f0c48032 100644 --- a/fluxer_app/src/features/channel/components/PreloadableUserPopout.tsx +++ b/fluxer_app/src/features/channel/components/PreloadableUserPopout.tsx @@ -254,7 +254,6 @@ export const PreloadableUserPopout = React.forwardRef< /> )} position={position} - stableTextRendering animationType={profilePopoutAnimationType} constrainHeight={false} freezePosition diff --git a/fluxer_app/src/features/channel/components/ReplyPreview.tsx b/fluxer_app/src/features/channel/components/ReplyPreview.tsx index 85b590159..2bfa99ad2 100644 --- a/fluxer_app/src/features/channel/components/ReplyPreview.tsx +++ b/fluxer_app/src/features/channel/components/ReplyPreview.tsx @@ -20,7 +20,7 @@ import {useLingui} from '@lingui/react/macro'; import {ArrowBendUpLeftIcon} from '@phosphor-icons/react'; import {clsx} from 'clsx'; import {observer} from 'mobx-react-lite'; -import {useCallback} from 'react'; +import {type CSSProperties, useCallback} from 'react'; const ORIGINAL_MESSAGE_WAS_DELETED_DESCRIPTOR = msg({ message: 'Original message was deleted', @@ -196,9 +196,14 @@ export const ReplyPreview = observer( > {0}" msgstr "من <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "عام" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "أنشئ رابطًا قابلاً للمشاركة أو انسخ CSS المخصص المدمج لديك." @@ -15481,11 +15440,6 @@ msgstr "إنشاء رمز جديد" msgid "Generating code…" msgstr "جارٍ إنشاء الرمز…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "عرض نصي لطيف وخفيف" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "هو" msgid "Header" msgstr "الرأس" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "عنوان" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "جاري فهرسة القناة" msgid "Indicator" msgstr "مؤشر" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "المؤشرات والحالة" @@ -17557,7 +17506,7 @@ msgstr "حالات الإدخال" msgid "Input volume" msgstr "مستوى صوت الإدخال" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "الإدخال والنص" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "تثبيت حزمة الملصقات" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "مثبّت" @@ -18094,15 +18043,6 @@ msgstr "هادئ الآن..." msgid "Italian" msgstr "الإيطالية" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "مائل" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "عرض النمط المائل" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "اللغة" msgid "Language settings" msgstr "إعدادات اللغة" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "دعم اللغة" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "اللغات" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "كبير" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "{premiumProductName} مدى الحياة" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "فاتح" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "افتراضي لنظام التشغيل لينكس" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "حزمة لينكس" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "وضع علامة على أعلى قناة في البريد الوارد كمقروءة" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "تنسيق ماركداون" @@ -19945,10 +19877,8 @@ msgstr "حجم الوسائط" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "متوسط" @@ -20820,7 +20750,7 @@ msgstr "المزيد" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "المزيد من الإجراءات" @@ -20993,10 +20923,6 @@ msgstr "المصادقة متعددة العوامل" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "محتوى متعدد اللغات" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "لا يمكن للمستخدمين الجدد الانضمام الآن. لا يزال بإمكانك إنشاء حساب أو تسجيل الدخول، ثم إعادة المحاولة باستخدام هذا الرابط لاحقًا." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "إصدار جديد" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "لم يتم العثور على أي رموز تعبيرية مطابقة لبحثك." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "لا توجد رموز تعبيرية مطابقة لهذا البحث" @@ -22363,11 +22289,6 @@ msgstr "بلا" msgid "None (normal behavior)" msgstr "لا شيء (سلوك عادي)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "عادي" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "أنت فقط من يستطيع رؤية هذه الرسالة. <0>تجاهل" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "الشفافية" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "فتح منتقي التاريخ" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "فتح تنزيلات سطح المكتب" @@ -23165,6 +23086,11 @@ msgstr "فتح المبدّل السريع" msgid "Open settings" msgstr "فتح الإعدادات" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "فتح مركز البرامج" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "نظام التشغيل" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "فعّل خيار التحكم التجريبي في شارات الرسائل غير المقروءة لكل مجتمع ولكل قناة" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "مُحسّن للمقاطع الطويلة" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "جاري تحسين الكاميرا..." @@ -23483,7 +23404,7 @@ msgstr "خارج فترة الاسترداد" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "مجموعات صور رمزية متداخلة تعرض عدة مستخدمين مع أعداد فائضة تلقائية." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "الطبقات والقوائم" @@ -23886,11 +23807,6 @@ msgstr "مستوى صوت كل صوت" msgid "Per-window audio isn't available on this build of macOS." msgstr "الصوت لكل نافذة غير متاح في إصدار macOS هذا." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "مثالي للمحتوى اليومي" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "المنصب" msgid "Power saving" msgstr "توفير الطاقة" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "قوية وتلفت الانتباه" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "أساسي (معطّل)" msgid "Primary accent color" msgstr "لون التمييز الأساسي" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "إجراء أساسي" @@ -25724,11 +25635,6 @@ msgstr "التسجيل" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "التسجيل مغلق حالياً. استخدم رابط تسجيل من أحد المشرفين لإنشاء حساب." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "عادي" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "زر عادي" @@ -26198,7 +26104,7 @@ msgstr "تمت إزالة حد المستخدمين." msgid "Removed timeout from {0}" msgstr "تمت إزالة المهلة من {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "يزيل كل تجاوزات المتغيرات الفردية، ولكنه يحافظ على مكتبتك وأصولك سليمة." @@ -26703,7 +26609,7 @@ msgstr "إعادة تعيين بيانات التطبيق" msgid "Reset app data and restart" msgstr "إعادة تعيين بيانات التطبيق وإعادة تشغيله" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "إعادة تعيين بيانات المظهر المخصص" @@ -26714,7 +26620,7 @@ msgstr "هل تريد إعادة تعيين بيانات المظهر المخص #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "إعادة تعيين البيانات" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "أعد تشغيل {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "إعادة تشغيل {productName}" @@ -28030,7 +27936,7 @@ msgstr "جارٍ البحث" msgid "Searching people..." msgstr "جارٍ البحث عن أشخاص..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "الخيار الثاني" @@ -28047,7 +27953,7 @@ msgstr "ثانوي (معطّل)" msgid "Secondary accent color" msgstr "لون التمييز الثانوي" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "إجراء ثانوي" @@ -28339,7 +28245,7 @@ msgstr "التحديد: {0}" msgid "Selection: {0} (max {1})" msgstr "التحديد: {0} (الحد الأقصى {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "تحديدات" @@ -28369,16 +28275,6 @@ msgstr "تجاوز وضع الاستضافة الذاتية" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "تتوفر عمليات استرداد الخدمة الذاتية في غضون 3 أيام من الدفع، ومرة واحدة كل 30 يومًا. يؤدي استرداد الاشتراك إلى إلغائه. يتنازل المشترون في الاتحاد الأوروبي/المنطقة الاقتصادية الأوروبية عن حق الانسحاب لمدة 14 يومًا عند الدفع للوصول إلى المحتوى فورًا. استخدم زر استرداد الأموال داخل التطبيق بدلاً من استرداد المدفوعات. يمكن أن تؤدي عمليات استرداد المدفوعات إلى تقييد حسابك بشكل دائم. تتولى Stripe معالجة الدفع بأمان. لا نرى رقم بطاقتك بالكامل أبدًا." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "شبه عريض" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "شبه عريض كبير" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "يحدد مستوى كل مؤثر صوتي. تتجاهل التجاوز #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "الإعدادات" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "عدة أشخاص يكتبون..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "مشاركة" @@ -29002,7 +28898,7 @@ msgstr "مشاركة" msgid "Share action." msgstr "مشاركة الإجراء." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "مشاركة السمة المخصصة النشطة" @@ -29035,7 +28931,7 @@ msgstr "مشاركة المصدر" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "شارك تجربة {premiumProductName} مع أصدقائك عن طريق شراء اشتراك هدية." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "مشاركة المظهر" @@ -29963,11 +29859,6 @@ msgstr "شريط تمرير بقيم متدرجة" msgid "Sliders" msgstr "أشرطة التمرير" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "تأكيد أكثر جرأة بقليل" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "الشتائم أو اللغة المهينة أو الهجمات على الفئات المحمية." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "صغير" @@ -30161,11 +30050,6 @@ msgstr "يلتقط بزيادات قدرها 5." msgid "Social" msgstr "اجتماعي" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "تجربة قراءة سلسة ومريحة" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "مؤشرات الحالة" msgid "Status page" msgstr "صفحة الحالة" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "حالة اللوحة" @@ -31291,15 +31175,6 @@ msgstr "أبلغت Stripe عن بطاقة صادرة في {countryName}. للد msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "جودة قوية بتكلفة معالجة معتدلة. بديل جيد لـ Chromium لمشاركة الشاشة." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "تسلسل بصري قوي" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "أنماط مختلفة" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "سيناريوهات الاشتراك" msgid "Subtext" msgstr "نص فرعي" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "عنوان فرعي" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "اختبار الروابط الموسعة والتضمينات المع #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "نص" @@ -31973,6 +31841,10 @@ msgstr "قنوات نصية" msgid "Text formatting" msgstr "تنسيق النص" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "يتم عرض النص باستخدام تنعيم متدرج الرمادي بدلاً من ClearType عند تمكين الشفافية، لذلك سيبدو أكثر نعومة." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "قد تكون المجموعة التي تبحث عنها حُذفت أو قد لا تملك صلاحية الوصول إليها." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "تعذر تنزيل تحديث سطح المكتب. حاول مرة أخرى من زر التحديث عندما يصبح اتصالك مستقرًا." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "تم تنزيل تحديث سطح المكتب. أعد تشغيل {productName} لإكمال التثبيت." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "يتم حفظ الملف الذي تم تنزيله على جهاز الكمبيوتر الخاص بك. قم بتثبيته باستخدام مدير الحزم العادي." @@ -32442,12 +32314,7 @@ msgstr "قد لا يقبلون الرسائل منك، أو أنكما لم تع msgid "They're not accepting friend requests right now." msgstr "لا يقبلون طلبات الصداقة في الوقت الحالي." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "رفيع" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "الخيار الثالث" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "هذه رسالة ثقيلة جدًا. يجب إزالة بعض التفاعلات قبل أن تتمكن من إضافة المزيد." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "هذا نص مثال في مربع النص." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "هذا هو وصف الخيار الأول" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "هذا هو وصف الخيار الثاني" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "هذا هو وصف الخيار الثالث" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "سيؤدي هذا إلى إزالة كل الاختصارات المخصصة وإعادة تمكين جميع الاختصارات المضمنة. لا يمكن التراجع عن هذا الإجراء." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "انتهت صلاحية رابط إعادة التعيين هذا. تدوم روابط إعادة التعيين 24 ساعة. اطلب رابطًا جديدًا." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "انتهت صلاحية رابط إعادة التعيين هذا. تستمر روابط إعادة التعيين لمدة ساعة واحدة. يُرجى طلب رابط جديد." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "هذا المفتاح معطّل ولا يمكن تبديله" msgid "This switch is disabled in the checked state" msgstr "هذا المفتاح معطّل في حالة التحديد" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "هذا النص يوضح نمط العنوان الغامق" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "هذا النص يوضح نمط العنوان الغامق" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "هذا النص يوضح النمط المائل" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "هذا النص يوضح نمطًا كبيرًا وشبه غامق" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "هذا النص يوضح النمط العادي" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "هذا النص يوضح النمط شبه الغامق" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "يتمدد مربع النص هذا تلقائيًا بين 4 و12 صفًا أثناء الكتابة." @@ -33417,11 +33254,6 @@ msgstr "المنطقة الزمنية" msgid "Tip" msgstr "نصيحة" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "العنوان" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "اكتب لونًا (سداسي عشري، rgb()، hsl، أو اسم)، msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "اكتب لونًا (سداسي عشري، rgb()، hsl()، أو اسم) أو استخدم منتقي الألوان." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "حجم الخط" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "مؤشر الكتابة فقط" msgid "Typing state" msgstr "حالة الكتابة" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "الخطوط" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "عرض توضيحي لمقياس الخطوط" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "خيار احتياطي عالمي. أقل جودة، لكنه يعمل #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "غير معروف" @@ -34649,8 +34469,8 @@ msgstr "رموز تعبيرية غير محدودة" msgid "Unlimited stickers" msgstr "ملصقات غير محدودة" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "افتح قفل {lockedEmojiCount, plural, one {# إيموجي مخصص} other {# إيموجيات مخصصة}} من {communityCount, plural, one {# مجتمع} other {# مجتمعات}} باستخدام {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "قناة بلا اسم" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "مجموعة بلا اسم" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "لقد قمنا بتحديث سياساتنا. راجعها واقبلها للمتابعة." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "الويب {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "أنت تعدّل ملفك الشخصي الخاص بالمنتدى. سيكون هذا الملف الشخصي مرئيًا في هذا المنتدى فقط وسيتجاوز ملفك الشخصي العام." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "أنت الآن مطوّر!" diff --git a/fluxer_app/src/features/i18n/locales/auto-i18n-reviewed-unchanged.json b/fluxer_app/src/features/i18n/locales/auto-i18n-reviewed-unchanged.json index cb76fb5c9..24d300d29 100644 --- a/fluxer_app/src/features/i18n/locales/auto-i18n-reviewed-unchanged.json +++ b/fluxer_app/src/features/i18n/locales/auto-i18n-reviewed-unchanged.json @@ -1533,6 +1533,9 @@ { "msgid": "Talk in calls and test your input." }, + { + "msgid": "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." + }, { "msgid": "That image could not be used. Try a different file." }, @@ -1545,6 +1548,9 @@ { "msgid": "This instance has no accounts yet. The first account you create automatically becomes the administrator. Create it now, then return here to finish setup." }, + { + "msgid": "This reset link has expired. Reset links last 1 hour. Please request a new one." + }, { "msgid": "Unavailable" }, diff --git a/fluxer_app/src/features/i18n/locales/bg/messages.po b/fluxer_app/src/features/i18n/locales/bg/messages.po index 2d5aebcd6..acb372cb5 100644 --- a/fluxer_app/src/features/i18n/locales/bg/messages.po +++ b/fluxer_app/src/features/i18n/locales/bg/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} за компютър {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Екип на общността на {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} не можа да се свърже с услугата за актуализации. Проверете връзката си и опитайте отново." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} не можа да се рестартира към изтегленото обновление. Опитайте отново от бутона за обновяване." @@ -1210,8 +1210,8 @@ msgstr "Лого на {productName}" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} уеб {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} онлайн" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Групата на {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "име на хост, напр. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Налична е актуализация за Linux десктоп версията. Изберете формата на пакета за тази система и {productName} ще я запази локално." @@ -1990,7 +1990,7 @@ msgstr "анкета" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Изисква се redirect_uri, когато обхватът на бота не е единственият обхват." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Компонент за многократна употреба при празни състояния, грешки и съобщения за състояние." @@ -3891,7 +3891,7 @@ msgstr "Приложения" msgid "Arabic" msgstr "Арабски" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Архивиране" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Автоматично превъртане" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Налична" @@ -5243,26 +5243,6 @@ msgstr "Размазване" msgid "Blur strength" msgstr "Сила на размазването" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Основен текст" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Получер" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Удебелено заглавие" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Удебелен текст" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Варианти на бутони" msgid "Button with context menu" msgstr "Бутон с контекстно меню" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Бутони" @@ -5989,11 +5969,6 @@ msgstr "Стикер пакетът не може да бъде инсталир msgid "Captcha verification failed. Try again." msgstr "Проверката на капчата не бе успешна. Опитайте отново." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Надпис" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Изчистване на всички активни презаписв msgid "Clear all attachment mocks" msgstr "Изчистване на всички прикачени макети" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Изчистване на всички замествания на токени" @@ -7215,7 +7190,7 @@ msgstr "Изчистване на макета за този прикачен ф msgid "Clear nickname" msgstr "Изчистване на прякор" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Изчистване на промените" @@ -7299,7 +7274,7 @@ msgstr "Изчисти темата." msgid "Clearing trusted domains..." msgstr "Изчистване на доверени домейни..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Изчиства бърз CSS, импортирани теми, качени активи и препратки към локални файлове на това устройство." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Натиснете, за да получите подаръка си!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Копирай" @@ -8825,7 +8800,7 @@ msgstr "Копиране на URL за покана" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Копирай връзка" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Неуспешна промяна на цикъла за таксуване" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Неуспешна проверка за актуализации" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Съобщенията ви не можаха да бъдат изтрити" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Неуспешно изтегляне на актуализацията за настолната версия" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Връзката не можа да бъде стартирана" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Не може да се стартира актуализацията на настолното приложение" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Бутонът „Опасност“ е натиснат." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "По подразбиране е изключено на мобилни #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Съобщенията ви са изтрити." msgid "Deleted." msgstr "Изтрито." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Нежна и лека типография" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Налична е актуализация на приложението. Изберете пакет за Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Актуализацията за десктоп е готова" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Настолната версия {version} е изтеглена. Рестартирайте {productName}, за да завършите инсталацията." @@ -11753,11 +11723,9 @@ msgstr "Отхвърляне на споменаване" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Поради законите за съдържание за възрастни в {regionName}, този медиен файл не е наличен във вашия текущ регион." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Дублиране" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Редактиране на биографията" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Текст за редактиране" @@ -13001,7 +12969,7 @@ msgstr "Активиране на изтичане на прикачени фа msgid "Enable audio" msgstr "Включване на звука" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Включване на бета функция" @@ -13038,7 +13006,7 @@ msgstr "Включване на режим за разработчици" msgid "Enable email delivery" msgstr "Активиране на доставка на имейли" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Включване на допълнителна опция" @@ -13660,7 +13628,7 @@ msgstr "Грешка" msgid "error code {code}" msgstr "грешка, код: {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Грешка при зареждане на съдържанието" @@ -14095,11 +14063,6 @@ msgstr "Външните връзки може да са опасни. Бъде msgid "Extra large" msgstr "Изключително голям" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Изключително светъл" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Първо кликване" msgid "First click pass-through when unfocused" msgstr "Първо кликване при преминаване, когато не е на фокус" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Първа опция" @@ -14917,10 +14880,6 @@ msgstr "Следване на основния • {effectiveValue}%" msgid "Font" msgstr "Шрифт" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Дебелина на шрифта" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "От {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "от <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Общи" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Генерирайте връзка за споделяне или копирайте комбинирания си персонализиран CSS." @@ -15481,11 +15440,6 @@ msgstr "Генериране на нов код" msgid "Generating code…" msgstr "Генериране на код…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Нежен и ефирен текст" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Той" msgid "Header" msgstr "Заглавие" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Заглавие" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Индексиране на канала" msgid "Indicator" msgstr "Индикатор" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Индикатори и статус" @@ -17557,7 +17506,7 @@ msgstr "Състояния на въвеждане" msgid "Input volume" msgstr "Входящ звук" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Въвеждане и текст" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Инсталиране на стикер пакет" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Инсталирана" @@ -18094,15 +18043,6 @@ msgstr "Засега е тихо..." msgid "Italian" msgstr "Италиански" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Курсив" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Демонстрация на курсивен стил" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Език" msgid "Language settings" msgstr "Настройки на езика" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Езикова поддръжка" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Езици" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Голям" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Доживотен {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Светъл" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux – по подразбиране" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Пакет за Linux" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Отбелязване на най-горния канал във входящата поща като прочетен" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Размер на медия" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Средно" @@ -20820,7 +20750,7 @@ msgstr "Още" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Още действия" @@ -20993,10 +20923,6 @@ msgstr "Многофакторно удостоверяване" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Многоезично съдържание" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Нови потребители не могат да се присъединят в момента. Все още можете да създадете акаунт или да влезете, след което опитайте тази връзка отново по-късно." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Нова версия" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Няма намерени емоджита, отговарящи на търсенето ви." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Няма емоджита, които да отговарят на търсенето" @@ -22363,11 +22289,6 @@ msgstr "Без потискане" msgid "None (normal behavior)" msgstr "Няма (нормално поведение)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Нормален" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Само вие виждате това съобщение. <0>Отхвърляне" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Непрозрачност" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Отваряне на календара" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Отваряне на изтегляния за настолни компютри" @@ -23165,6 +23086,11 @@ msgstr "Отваряне на бърз превключвател" msgid "Open settings" msgstr "Отваряне на настройките" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Отвори центъра за софтуер" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Операционна система" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Активирайте експерименталните настройки за показване на значки за непрочетени съобщения в отделните общности и канали" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Оптимизирано за по-дълги пасажи за четене" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Оптимизиране на камерата..." @@ -23483,7 +23404,7 @@ msgstr "Извън срока за възстановяване на сума" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Припокриващи се групи аватари, показващи няколко потребителя с автоматично препълване на броя." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Наслагвания и менюта" @@ -23886,11 +23807,6 @@ msgstr "Сила на звука за всеки звук" msgid "Per-window audio isn't available on this build of macOS." msgstr "Аудиото за отделни прозорци не е налично в тази версия на macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Идеално за ежедневно съдържание" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Позиция" msgid "Power saving" msgstr "Пестене на енергия" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Впечатляващи и привличащи вниманието" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Основен (деактивиран)" msgid "Primary accent color" msgstr "Основен акцентен цвят" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Основно действие" @@ -25724,11 +25635,6 @@ msgstr "Регистрация" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Регистрацията в момента е затворена. Използвайте регистрационна връзка от администратор, за да създадете акаунт." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Нормален" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Обикновен бутон" @@ -26198,7 +26104,7 @@ msgstr "Премахна лимита за потребители." msgid "Removed timeout from {0}" msgstr "Премахнато ограничение за {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Премахва всички индивидуални промени на променливи, но запазва вашата библиотека и активи непокътнати." @@ -26703,7 +26609,7 @@ msgstr "Нулиране на данните на приложението" msgid "Reset app data and restart" msgstr "Нулиране на данните на приложението и рестартиране" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Нулиране на персонализирана тема" @@ -26714,7 +26620,7 @@ msgstr "Да изтрия ли данните за персонализиран #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Нулиране на данните" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Рестартиране на {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Рестартиране на {productName}" @@ -28030,7 +27936,7 @@ msgstr "Търсене" msgid "Searching people..." msgstr "Търсене на хора..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Втора опция" @@ -28047,7 +27953,7 @@ msgstr "Вторичен (деактивиран)" msgid "Secondary accent color" msgstr "Вторичен акцентен цвят" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Допълнително действие" @@ -28339,7 +28245,7 @@ msgstr "Избор: {0}" msgid "Selection: {0} (max {1})" msgstr "Избор: {0} (макс. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Избор" @@ -28369,16 +28275,6 @@ msgstr "Принудителен режим на самостоятелно хо msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Възможност за самообслужване на възстановяване на суми до 3 дни след плащане, веднъж на всеки 30 дни. Възстановяването на сума за абонамент го анулира. Купувачите от ЕС/ЕИП се отказват от 14-дневното право на отказ при плащане, за да получат незабавен достъп до съдържанието. Използвайте бутона за възстановяване на сума в приложението вместо оспорване на трансакция. Оспорването на трансакция може трайно да ограничи достъпа до акаунта ви. Stripe обработва плащанията сигурно. Ние никога не виждаме пълния номер на картата ви." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Получер" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Полу-удебелен голям" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Задава нивото на всеки звуков ефект. На #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Настройки" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Няколко души пишат..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Споделяне" @@ -29002,7 +28898,7 @@ msgstr "Споделяне" msgid "Share action." msgstr "Споделяне." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Споделяне на активна персонализирана тема" @@ -29035,7 +28931,7 @@ msgstr "Източник за споделяне" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Споделете изживяването с {premiumProductName} с приятелите си, като закупите абонамент за подарък." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Споделяне на тема" @@ -29963,11 +29859,6 @@ msgstr "Плъзгач със стъпкови стойности" msgid "Sliders" msgstr "Плъзгачи" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Леко по-удебелен акцент" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Обиди, дехуманизиращ език или нападки срещу защитени групи." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Малък" @@ -30161,11 +30050,6 @@ msgstr "Прихваща през 5 единици." msgid "Social" msgstr "Социални" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Лесно и приятно четене" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Индикатори за състояние" msgid "Status page" msgstr "Страница със състоянието" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Състояние" @@ -31291,15 +31175,6 @@ msgstr "Stripe отчете карта, издадена в {countryName}. За msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Високо качество при умерено натоварване на процесора. Добър резервен вариант за споделяне на екран в Chromium." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Ясна визуална йерархия" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Вариации на стила" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Сценарии за абонамент" msgid "Subtext" msgstr "Подтекст" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Подзаглавие" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Тестване на URL прегледи и вградени елем #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Текст" @@ -31973,6 +31841,10 @@ msgstr "Текстови канали" msgid "Text formatting" msgstr "Форматиране на текст" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Текстът се рендира с сиво-скално антиалиасиране вместо ClearType, докато прозрачността е активирана, така че ще изглежда по-мек." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Общността, която търсите, може да е изтрита или да нямате достъп до нея." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Актуализацията за настолни компютри не можа да бъде изтеглена. Опитайте отново от бутона за актуализация, когато връзката ви е стабилна." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Десктоп актуализацията е изтеглена. Рестартирайте {productName}, за да завършите инсталирането." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Изтегленият файл е запазен на компютъра ви. Инсталирайте го с обичайния си мениджър на пакети." @@ -32442,12 +32314,7 @@ msgstr "Може да не приемат съобщения от вас или msgid "They're not accepting friend requests right now." msgstr "В момента не приемат покани за приятелство." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Тънък" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Трета опция" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Това е доста тежко съобщение. Някои реакции трябва да бъдат премахнати, преди да можете да добавите още." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Това е примерен текст в текстовото поле." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Това е описанието на първата опция" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Това е описанието на втората опция" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Това е описанието на третата опция" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Това премахва всички персонализирани преки пътища и повторно активира всички вградени преки пътища. Това действие не може да бъде отменено." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Връзката за нулиране е изтекла. Връзките за нулиране са валидни 24 часа. Заявете нова." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Връзката за нулиране е изтекла. Връзките за нулиране са валидни 1 час. Моля, заявете нова." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Този превключвател е деактивиран и не м msgid "This switch is disabled in the checked state" msgstr "Този превключвател е деактивиран, когато е отметнат" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Този текст показва стила на удебелен заглавен текст" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Този текст показва стила на удебелено заглавие" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Този текст показва курсивен стил" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Този текст показва голям получер стил" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Този текст показва нормален стил" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Този текст показва получер стил" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Това текстово поле автоматично се разширява между 4 и 12 реда, докато пишете." @@ -33417,11 +33254,6 @@ msgstr "Часова зона" msgid "Tip" msgstr "Съвет" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Заглавие" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Въведете цвят (шестнадесетичен, rgb(), hsl и msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Въведете цвят (шестнадесетичен код, rgb(), hsl() или име) или използвайте палитрата." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Размер на шрифта" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Само индикатор за писане" msgid "Typing state" msgstr "Пише съобщение" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Шрифт" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Демонстрация на типографска скала" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Универсален вариант. Най-ниско качеств #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Неизвестен" @@ -34649,8 +34469,8 @@ msgstr "Неограничен брой емоджита" msgid "Unlimited stickers" msgstr "Неограничен брой стикери" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Отключете {lockedEmojiCount, plural, one {# персонализирано емоджи} other {# персонализирани емоджита}} от {communityCount, plural, one {# общност} other {# общности}} с {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Неименуван канал" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Група без име" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Актуализирахме правилата си. Прегледайте ги и ги приемете, за да продължите." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Уеб {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Редактирате профила си за тази общност. Той ще бъде видим само в нея и ще замени глобалния ви профил." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Вече сте разработчик!" diff --git a/fluxer_app/src/features/i18n/locales/cs/messages.po b/fluxer_app/src/features/i18n/locales/cs/messages.po index 222843e24..4fff3618c 100644 --- a/fluxer_app/src/features/i18n/locales/cs/messages.po +++ b/fluxer_app/src/features/i18n/locales/cs/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} Desktop {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Tým komunity {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "Aplikace {productName} se nemohla připojit ke službě pro aktualizace. Zkontrolujte své připojení a zkuste to znovu." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "Aplikace {productName} se nepodařila restartovat a nainstalovat staženou aktualizaci. Zkuste to znovu pomocí tlačítka pro aktualizaci." @@ -1210,8 +1210,8 @@ msgstr "Logo {productName}" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} online" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Skupina uživatele {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "název hostitele, např. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Pro uživatele Linuxu je k dispozici aktualizace. Vyberte formát balíčku pro tento systém a aplikace {productName} jej uloží lokálně." @@ -1990,7 +1990,7 @@ msgstr "anketa" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Parametr redirect_uri je povinný, pokud rozsah bot není jediným rozsahem." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Opakovaně použitelná komponenta pro prázdné stavy, chyby a stavové zprávy." @@ -3891,7 +3891,7 @@ msgstr "Aplikace" msgid "Arabic" msgstr "Arabština" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Archivovat" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Automatické posouvání" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "K dispozici" @@ -5243,26 +5243,6 @@ msgstr "Rozostřit" msgid "Blur strength" msgstr "Síla rozostření" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Text" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Tučné" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Tučný nadpis" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Tučný nadpis" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Varianty tlačítek" msgid "Button with context menu" msgstr "Tlačítko s kontextovou nabídkou" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Tlačítka" @@ -5989,11 +5969,6 @@ msgstr "Balíček nálepek nelze nainstalovat" msgid "Captcha verification failed. Try again." msgstr "Ověření Captcha se nezdařilo. Zkuste to znovu." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Popisek" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Vymazat všechna aktivní přepsání" msgid "Clear all attachment mocks" msgstr "Vymazat všechny makety příloh" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Vymazat všechna přepsání tokenů" @@ -7215,7 +7190,7 @@ msgstr "Vymazat maketu pro tuto přílohu" msgid "Clear nickname" msgstr "Vymazat přezdívku" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Vymazat přepsání" @@ -7299,7 +7274,7 @@ msgstr "Vymazal(a) téma." msgid "Clearing trusted domains..." msgstr "Mažu důvěryhodné domény..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Vymaže rychlé CSS, importovaná témata, nahrané soubory a odkazy na místní soubory v tomto zařízení." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Klepnutím si vyzvedněte dárek!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Kopírovat" @@ -8825,7 +8800,7 @@ msgstr "Kopírovat URL pozvánky" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Kopírovat odkaz" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Nepodařilo se změnit fakturační cyklus" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Nepodařilo se zkontrolovat aktualizace" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Zprávy se nepodařilo smazat" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Nepodařilo se stáhnout aktualizaci pro počítač" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Nepodařilo se navázat spojení" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Nepodařilo se spustit aktualizaci pro počítač" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Kliknuto na tlačítko Nebezpečí." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Ve výchozím nastavení vypnuto na mobilu kvůli úspoře baterie a dat #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Vaše zprávy byly smazány." msgid "Deleted." msgstr "Smazáno." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Jemné a lehké písmo" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Je k dispozici aktualizace pro počítač. Vyberte balíček pro Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Aktualizace pro počítač je připravena" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Verze pro stolní počítače {version} byla stažena. Pro dokončení instalace restartujte aplikaci {productName}." @@ -11753,11 +11723,9 @@ msgstr "Zrušit zmínku" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Vzhledem k zákonům o obsahu pro dospělé v oblasti {regionName} není toto médium z vašeho aktuálního regionu dostupné." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Duplikovat" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Upravit životopis profilu" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Upravitelný text" @@ -13001,7 +12969,7 @@ msgstr "Povolit vypršení platnosti příloh" msgid "Enable audio" msgstr "Povolit zvuk" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Zapnout beta funkci" @@ -13038,7 +13006,7 @@ msgstr "Zapnout režim pro vývojáře" msgid "Enable email delivery" msgstr "Povolit doručování e-mailů" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Povolit doplňkovou možnost" @@ -13660,7 +13628,7 @@ msgstr "Chyba" msgid "error code {code}" msgstr "chyba, kód {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Chyba při vykreslování obsahu" @@ -14095,11 +14063,6 @@ msgstr "Externí odkazy mohou být nebezpečné. Buďte opatrní." msgid "Extra large" msgstr "Extra velké" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Extra světlé" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "První kliknutí" msgid "First click pass-through when unfocused" msgstr "První kliknutí projde, když není okno aktivní" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "První možnost" @@ -14917,10 +14880,6 @@ msgstr "Podle hlavního nastavení • {effectiveValue}%" msgid "Font" msgstr "Písmo" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Tloušťka písma" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "Od {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "z <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Obecné" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Vygenerujte odkaz ke sdílení nebo zkopírujte svůj kombinovaný vlastní kód CSS." @@ -15481,11 +15440,6 @@ msgstr "Vygenerovat nový kód" msgid "Generating code…" msgstr "Generuji kód…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Jemné a vzdušné zobrazení textu" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "On" msgid "Header" msgstr "Záhlaví" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Nadpis" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Indexování kanálu" msgid "Indicator" msgstr "Indikátor" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indikátory a stav" @@ -17557,7 +17506,7 @@ msgstr "Stavy vstupu" msgid "Input volume" msgstr "Hlasitost vstupu" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Vstupy a text" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Nainstalovat balíček nálepek" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Nainstalováno" @@ -18094,15 +18043,6 @@ msgstr "Teď je tu klid..." msgid "Italian" msgstr "Italsky" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Kurzíva" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Ukázka kurzívy" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Jazyk" msgid "Language settings" msgstr "Nastavení jazyka" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Podpora jazyků" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Jazyky" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Velké" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Doživotní {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Světlý" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Výchozí zařízení v systému Linux" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Balíček pro Linux" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Označit horní kanál doručené pošty jako přečtený" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Velikost médií" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Střední" @@ -20820,7 +20750,7 @@ msgstr "Více" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Další akce" @@ -20993,10 +20923,6 @@ msgstr "Vícefaktorové" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Vícejazyčný obsah" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Noví uživatelé se teď nemůžou připojit. Můžete si ale vytvořit účet nebo se přihlásit a zkusit tento odkaz znovu později." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Nová verze" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Nebyly nalezeny žádné emoji odpovídající vašemu hledání." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Žádné emoji neodpovídají hledání" @@ -22363,11 +22289,6 @@ msgstr "Žádné" msgid "None (normal behavior)" msgstr "Žádné (normální chování)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normální" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Tuto zprávu vidíte jen vy. <0>Zavřít" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Neprůhlednost" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Otevřít výběr data" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Otevřít stažené soubory pro počítač" @@ -23165,6 +23086,11 @@ msgstr "Otevřít rychlý přepínač" msgid "Open settings" msgstr "Otevřít nastavení" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Otevřít centrum softwaru" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Operační systém" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Zapněte experimentální ovládací prvky pro značky o nepřečtených zprávách na úrovni komunity a kanálu" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimalizováno pro delší pasáže textu" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Optimalizace kamery..." @@ -23483,7 +23404,7 @@ msgstr "Mimo lhůtu pro vrácení peněz" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Překrývající se skupiny avatarů zobrazující více uživatelů s automatickým počtem přesahujících." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Překryvy a nabídky" @@ -23886,11 +23807,6 @@ msgstr "Hlasitost jednotlivých zvuků" msgid "Per-window audio isn't available on this build of macOS." msgstr "Zvuk pro jednotlivá okna není v této verzi macOS k dispozici." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Ideální pro každodenní obsah" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Pozice" msgid "Power saving" msgstr "Úspora energie" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Výrazné a poutavé" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Primární (deaktivováno)" msgid "Primary accent color" msgstr "Hlavní barva zvýraznění" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Hlavní akce" @@ -25724,11 +25635,6 @@ msgstr "Registrace" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Registrace je momentálně uzavřena. K vytvoření účtu použijte registrační odkaz od administrátora." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Běžné" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Běžné tlačítko" @@ -26198,7 +26104,7 @@ msgstr "Odebral(a) limit uživatelů." msgid "Removed timeout from {0}" msgstr "Časový limit pro {0} byl zrušen" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Odstraní všechna přepsání jednotlivých proměnných, ale zachová vaši knihovnu a prostředky." @@ -26703,7 +26609,7 @@ msgstr "Resetovat data aplikace" msgid "Reset app data and restart" msgstr "Resetovat data aplikace a restartovat" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Obnovit data vlastní šablony" @@ -26714,7 +26620,7 @@ msgstr "Obnovit data vlastní šablony?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Resetovat data" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Restartovat aplikaci {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Restartovat {productName}" @@ -28030,7 +27936,7 @@ msgstr "Vyhledávání" msgid "Searching people..." msgstr "Hledám lidi..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Druhá možnost" @@ -28047,7 +27953,7 @@ msgstr "Sekundární (vypnuto)" msgid "Secondary accent color" msgstr "Sekundární barva zvýraznění" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Sekundární akce" @@ -28339,7 +28245,7 @@ msgstr "Výběr: {0}" msgid "Selection: {0} (max {1})" msgstr "Výběr: {0} (max. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Výběry" @@ -28369,16 +28275,6 @@ msgstr "Přepsání režimu s vlastním hostováním" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Samoobslužné vrácení peněz je k dispozici do 3 dnů od platby, jednou za 30 dní. Vrácením peněz za předplatné dojde k jeho zrušení. Kupující z EU/EHP se při placení vzdávají 14denního práva na odstoupení od smlouvy, aby získali okamžitý přístup k obsahu. Místo zpětného zúčtování použijte tlačítko pro vrácení peněz v aplikaci. Zpětné zúčtování může trvale omezit váš účet. Platby bezpečně zpracovává Stripe. Nikdy nevidíme celé číslo vaší karty." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Polotučné" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Polotučné velké" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Nastaví úroveň pro každý zvukový efekt. Přepsání jednotlivých #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Nastavení" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Několik lidí píše..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Sdílet" @@ -29002,7 +28898,7 @@ msgstr "Sdílet" msgid "Share action." msgstr "Sdílet akci." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Sdílet aktivní vlastní motiv" @@ -29035,7 +28931,7 @@ msgstr "Sdílet zdroj" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Sdílejte zážitek z {premiumProductName} se svými přáteli zakoupením dárkového předplatného." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Sdílet motiv" @@ -29963,11 +29859,6 @@ msgstr "Posuvník s krokovými hodnotami" msgid "Sliders" msgstr "Posuvníky" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Mírně tučnější zvýraznění" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Nadávky, dehumanizující jazyk nebo útoky na chráněné skupiny." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Malá" @@ -30161,11 +30050,6 @@ msgstr "Přichytává se v krocích po 5." msgid "Social" msgstr "Sociální sítě" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Příjemné a snadné čtení" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Indikátory stavu" msgid "Status page" msgstr "Stránka stavu" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Stavová břidlice" @@ -31291,15 +31175,6 @@ msgstr "Stripe nahlásil kartu vydanou v zemi {countryName}. Chcete-li platit v msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Vysoká kvalita při střední zátěži CPU. Dobrá záložní volba pro sdílení obrazovky v prohlížeči Chromium." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Výrazná vizuální hierarchie" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Varianty stylu" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Scénáře předplatného" msgid "Subtext" msgstr "Podtext" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Podnadpis" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Testování rozbalení URL a vykreslených vložených prvků" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Text" @@ -31973,6 +31841,10 @@ msgstr "Textové kanály" msgid "Text formatting" msgstr "Formátování textu" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Text se při zapnuté průhlednosti vykresluje se stupni šedi místo ClearType, takže bude vypadat jemněji." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Komunita, kterou hledáte, mohla být smazána nebo k ní nemáte přístup." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Aktualizaci pro počítač se nepodařilo stáhnout. Zkuste to znovu pomocí tlačítka aktualizace, až bude vaše připojení stabilní." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Aktualizace pro stolní verzi byla stažena. Restartujte aplikaci {productName}, aby se dokončila instalace." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Stažený soubor je uložen do vašeho počítače. Nainstalujte jej pomocí svého správce balíčků." @@ -32442,12 +32314,7 @@ msgstr "Je možné, že od vás nepřijímají zprávy, nebo už nejste ve spole msgid "They're not accepting friend requests right now." msgstr "Momentálně nepřijímají žádosti o přátelství." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Tenké" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Třetí možnost" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Tohle je ale zpráva. Než budete moct přidat další reakce, některé je potřeba odstranit." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Toto je ukázkový text v textovém poli." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Toto je popis první možnosti" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Toto je popis druhé možnosti" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Toto je popis třetí možnosti" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Tímto se odstraní všechny vlastní zkratky a znovu se povolí všechny vestavěné zkratky. Tuto akci nelze vrátit zpět." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Platnost odkazu pro resetování vypršela. Odkazy pro resetování platí 24 hodin. Vyžádejte si nový." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Platnost tohoto odkazu pro obnovení vypršela. Odkazy pro obnovení platí 1 hodinu. Požádejte prosím o nový." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Tento přepínač je vypnutý a nelze jej přepnout" msgid "This switch is disabled in the checked state" msgstr "Tento přepínač je v zaškrtnutém stavu deaktivován" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Tento text ukazuje styl tučného nadpisu" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Tento text ukazuje styl tučného nadpisu" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Tento text ukazuje kurzívu" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Tento text ukazuje velké polotučné písmo" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Toto je ukázka normálního stylu textu" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Tento text ukazuje polotučné písmo" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Toto textové pole se při psaní automaticky roztáhne na 4 až 12 řádků." @@ -33417,11 +33254,6 @@ msgstr "Časové pásmo" msgid "Tip" msgstr "Tip" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Název" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Zadejte barvu (hex, rgb(), hsl nebo název), nebo použijte výběr." msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Zadejte barvu (hex, rgb(), hsl() nebo název) nebo použijte výběr." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Měřítko písma" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Pouze indikátor psaní" msgid "Typing state" msgstr "Stav psaní" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Typografie" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Ukázka typografické škály" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Univerzální záložní. Nejnižší kvalita, ale funguje všude." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Neznámý" @@ -34649,8 +34469,8 @@ msgstr "Neomezené emoji" msgid "Unlimited stickers" msgstr "Neomezené nálepky" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Odemkněte {lockedEmojiCount, plural, one {# vlastní emoji} other {# vlastní emoji}} z {communityCount, plural, one {# komunity} few {# komunit} many {# komunit} other {# komunit}} s {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Nepojmenovaný kanál" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Nepojmenovaná skupina" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Aktualizovali jsme naše zásady. Zkontrolujte je a přijměte, abyste mohli pokračovat." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Upravujete svůj profil pro tuto komunitu. Bude viditelný pouze zde a přepíše váš globální profil." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Nyní jste vývojář!" diff --git a/fluxer_app/src/features/i18n/locales/da/messages.po b/fluxer_app/src/features/i18n/locales/da/messages.po index 2664f55a9..10cf380c0 100644 --- a/fluxer_app/src/features/i18n/locales/da/messages.po +++ b/fluxer_app/src/features/i18n/locales/da/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} Desktop {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName}-fællesskabsteam" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} kunne ikke oprette forbindelse til opdateringstjenesten. Kontroller din internetforbindelse, og prøv igen." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} kunne ikke genstarte og installere den downloadede opdatering. Prøv igen ved at klikke på knappen \"Opdater\"." @@ -1210,8 +1210,8 @@ msgstr "{productName} ordmærke" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} online" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Gruppen med {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "et værtsnavn, f.eks. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "En Linux-opdatering til skrivebordet er tilgængelig. Vælg pakkeformatet for dette system, og {productName} gemmer det lokalt." @@ -1990,7 +1990,7 @@ msgstr "en afstemning" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "En redirect_uri er påkrævet, når bot-scopet ikke er det eneste scope." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "En genanvendelig komponent til tomme tilstande, fejl og statusmeddelelser." @@ -3891,7 +3891,7 @@ msgstr "Apps" msgid "Arabic" msgstr "Arabisk" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Arkivér" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Automatisk rulning" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Tilgængelig" @@ -5243,26 +5243,6 @@ msgstr "Slør" msgid "Blur strength" msgstr "Sløringstyrke" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Brødtekst" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Fed" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Fed overskrift" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Fed titel" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Knapvarianter" msgid "Button with context menu" msgstr "Knap med genvejsmenu" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Knapper" @@ -5989,11 +5969,6 @@ msgstr "Kan ikke installere stickerpakke" msgid "Captcha verification failed. Try again." msgstr "Captcha-verificering mislykkedes. Prøv igen." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Billedtekst" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Ryd alle aktive tilsidesættelser" msgid "Clear all attachment mocks" msgstr "Ryd alle vedhæftede filer (test)" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Ryd alle token-tilsidesættelser" @@ -7215,7 +7190,7 @@ msgstr "Ryd mock for denne vedhæftning" msgid "Clear nickname" msgstr "Ryd kaldenavn" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Ryd tilsidesættelser" @@ -7299,7 +7274,7 @@ msgstr "Rydede emnet." msgid "Clearing trusted domains..." msgstr "Rydder godkendte domæner..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Rydder hurtig CSS, importerede temaer, uploadede aktiver og lokale filreferencer på denne enhed." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Tryk for at indløse din gave!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Tryk for at kopiere" @@ -8825,7 +8800,7 @@ msgstr "Kopiér invitationslink" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Kopiér link" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Kunne ikke ændre din faktureringscyklus" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Kunne ikke søge efter opdateringer" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Kunne ikke slette dine beskeder" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Kunne ikke downloade desktopopdateringen" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Kunne ikke starte forbindelsen" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Kunne ikke starte desktopopdateringen" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Farekknap klikket." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Standardindstillingen er slået fra på mobil for at spare på batteri o #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Dine beskeder er slettet." msgid "Deleted." msgstr "Slettet." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Fin og let typografi" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Skrivebordsopdatering tilgængelig. Vælg en Linux-pakke." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Desktopopdatering klar" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Desktopversion {version} er blevet downloadet. Genstart {productName} for at fuldføre installationen." @@ -11753,11 +11723,9 @@ msgstr "Afvis omtale" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "På grund af lovgivning om voksenindhold i {regionName} er dette medie ikke tilgængeligt fra din nuværende region." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Duplikér" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Rediger din profilbeskrivelse" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Redigerbar tekst" @@ -13001,7 +12969,7 @@ msgstr "Aktivér udløb af vedhæftede filer" msgid "Enable audio" msgstr "Slå lyd til" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Slå betafunktion til" @@ -13038,7 +13006,7 @@ msgstr "Slå udviklertilstand til" msgid "Enable email delivery" msgstr "Aktivér e-mail-levering" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Slå ekstra mulighed til" @@ -13660,7 +13628,7 @@ msgstr "Fejl" msgid "error code {code}" msgstr "fejlkode {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Fejl ved visning af indhold" @@ -14095,11 +14063,6 @@ msgstr "Eksterne links kan være farlige. Vær forsigtig." msgid "Extra large" msgstr "Ekstra stor" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Ekstra let" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Første klik" msgid "First click pass-through when unfocused" msgstr "Første klik går igennem, når vinduet ikke er i fokus" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Første mulighed" @@ -14917,10 +14880,6 @@ msgstr "Følger master • {effectiveValue}%" msgid "Font" msgstr "Skrifttype" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Skrifttypetykkelser" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "Fra {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "fra <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Generelt" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Generer et link, der kan deles, eller kopier din kombinerede brugerdefinerede CSS." @@ -15481,11 +15440,6 @@ msgstr "Generer ny kode" msgid "Generating code…" msgstr "Genererer kode…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Blid og luftig tekstvisning" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Han" msgid "Header" msgstr "Overskrift" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Overskrift" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Indekserer kanal" msgid "Indicator" msgstr "Indikator" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indikatorer og status" @@ -17557,7 +17506,7 @@ msgstr "Inputfelter" msgid "Input volume" msgstr "Indgangslydstyrke" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Input og tekst" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Installer stickerpakke" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Installeret" @@ -18094,15 +18043,6 @@ msgstr "Her er stille lige nu..." msgid "Italian" msgstr "Italiensk" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Kursiv" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Demonstration af kursiv stil" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Sprog" msgid "Language settings" msgstr "Sprogindstillinger" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Sprogunderstøttelse" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Sprog" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Stor" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Livstid {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Lys" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux standard" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux-pakke" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Markér øverste indbakke-kanal som læst" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Mediastørrelse" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Mellem" @@ -20820,7 +20750,7 @@ msgstr "Mere" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Flere handlinger" @@ -20993,10 +20923,6 @@ msgstr "Multi-faktor" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Flersproget indhold" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Nye brugere kan ikke tilmelde sig lige nu. Du kan stadig oprette en konto eller logge ind og derefter prøve dette link igen senere." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Ny version" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Ingen emojis fundet, der matcher din søgning." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Ingen emojis matcher søgningen" @@ -22363,11 +22289,6 @@ msgstr "Ingen" msgid "None (normal behavior)" msgstr "Ingen (normal adfærd)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normal" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Kun du kan se denne besked. <0>Afvis" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Gennemsigtighed" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Åbn datovælger" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Åbn downloads til computer" @@ -23165,6 +23086,11 @@ msgstr "Åbn hurtigskifter" msgid "Open settings" msgstr "Åbn indstillinger" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Åbn softwarecenter" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Operativsystem" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Slå eksperimentelle indstillinger til for at få flere kontrolmuligheder over ulæste badges på både fællesskabs- og kanalbasis" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimeret til længere tekststykker" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Optimerer kamera..." @@ -23483,7 +23404,7 @@ msgstr "Uden for refusionsperioden" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Overlappende avatar-grupper, der viser flere brugere med automatisk overløbstælling." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Overlays og menuer" @@ -23886,11 +23807,6 @@ msgstr "Lydstyrke pr. lyd" msgid "Per-window audio isn't available on this build of macOS." msgstr "Lyd pr. vindue er ikke tilgængelig i denne version af macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Perfekt til hverdagsindhold" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Stilling" msgid "Power saving" msgstr "Strømsparetilstand" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Kraftfuld og iøjnefaldende" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Primær (deaktiveret)" msgid "Primary accent color" msgstr "Primær accentfarve" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Primær handling" @@ -25724,11 +25635,6 @@ msgstr "Registrering" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Registrering er i øjeblikket lukket. Brug et registreringslink fra en administrator for at oprette en konto." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Almindelig" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Almindelig knap" @@ -26198,7 +26104,7 @@ msgstr "Fjernede brugergrænsen." msgid "Removed timeout from {0}" msgstr "Fjernede timeout fra {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Fjerner alle tilsidesættelser pr. variabel, men beholder dit bibliotek og dine aktiver intakte." @@ -26703,7 +26609,7 @@ msgstr "Nulstil appdata" msgid "Reset app data and restart" msgstr "Nulstil appdata, og genstart" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Nulstil tilpassede temadata" @@ -26714,7 +26620,7 @@ msgstr "Nulstil tilpassede temadata?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Nulstil data" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Genstart {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Genstart {productName}" @@ -28030,7 +27936,7 @@ msgstr "Søger" msgid "Searching people..." msgstr "Søger efter personer ..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Anden mulighed" @@ -28047,7 +27953,7 @@ msgstr "Sekundær (deaktiveret)" msgid "Secondary accent color" msgstr "Sekundær accentfarve" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Sekundær handling" @@ -28339,7 +28245,7 @@ msgstr "Valg: {0}" msgid "Selection: {0} (max {1})" msgstr "Valg: {0} (maks. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Valg" @@ -28369,16 +28275,6 @@ msgstr "Tilsidesæt selvhostet tilstand" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Selvbetjent refusion er tilgængelig inden for 3 dage efter betaling, én gang hver 30. dag. Refusion af et abonnement annullerer det. Købere fra EU/EØS frasiger sig den 14-dages fortrydelsesret ved kassen for at få øjeblikkelig adgang til indhold. Brug refusionsknappen i appen i stedet for en tilbageførsel. Tilbageførsler kan permanent begrænse din konto. Stripe håndterer betaling sikkert. Vi ser aldrig dit fulde kortnummer." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Halvfed" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Halvfed stor" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Indstiller niveauet for alle lydeffekter. Individuelle lydindstillinger #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Indstillinger" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Flere skriver..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Del" @@ -29002,7 +28898,7 @@ msgstr "Del" msgid "Share action." msgstr "Del handling." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Del aktivt tilpasset tema" @@ -29035,7 +28931,7 @@ msgstr "Del kilde" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Del {premiumProductName}-oplevelsen med dine venner ved at købe et gaveabonnement." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Del tema" @@ -29963,11 +29859,6 @@ msgstr "Skyder med trin" msgid "Sliders" msgstr "Skydere" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Lidt federe fremhævelse" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Nedsættende sprog, dehumaniserende sprog eller angreb på beskyttede grupper." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Lille" @@ -30161,11 +30050,6 @@ msgstr "Snapper til intervaller på 5." msgid "Social" msgstr "Socialt" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Blød og let læseoplevelse" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Statusindikatorer" msgid "Status page" msgstr "Statusside" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Statusopdatering" @@ -31291,15 +31175,6 @@ msgstr "Stripe rapporterede et kort udstedt i {countryName}. For at betale i den msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "God kvalitet til moderat CPU-forbrug. God Chromium-fallback til skærmdeling." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Stærk visuelt hierarki" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Stilvariationer" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Abonnementsscenarier" msgid "Subtext" msgstr "Undertekst" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Undertekst" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Test webadresser og gengivne indlejringer" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Tekst" @@ -31973,6 +31841,10 @@ msgstr "Tekstkanaler" msgid "Text formatting" msgstr "Tekstformatering" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Tekst gengives med gråtonet antialiasing i stedet for ClearType, når gennemsigtighed er aktiveret, så den vil se blødere ud." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Det fællesskab, du leder efter, er muligvis blevet slettet, eller også har du ikke adgang til det." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Skrivebordsopdateringen kunne ikke downloades. Prøv igen via opdateringsknappen, når din forbindelse er stabil." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Desktopopdateringen er blevet downloadet. Genstart {productName}, for at fuldføre installationen." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Den downloadede fil gemmes på din computer. Installer den med din normale pakkehåndtering." @@ -32442,12 +32314,7 @@ msgstr "De accepterer muligvis ikke beskeder fra dig, eller I deler ikke længer msgid "They're not accepting friend requests right now." msgstr "De modtager ikke venneanmodninger lige nu." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Tynd" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Tredje mulighed" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Dette er en tung besked. Nogle reaktioner skal fjernes, før du kan tilføje flere." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Dette er en eksempeltekst i tekstfeltet." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Dette er den første valgmuligheds beskrivelse" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Dette er den anden valgmuligheds beskrivelse" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Dette er den tredje valgmuligheds beskrivelse" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Dette fjerner alle tilpassede genveje og genaktiverer alle indbyggede genveje. Dette kan ikke fortrydes." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Dette nulstillingslink er udløbet. Nulstillingslinks er gyldige i 24 timer. Anmod om et nyt." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Dette nulstillingslink er udløbet. Nulstillingslinks er gyldige i 1 time. Anmod venligst om et nyt." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Denne kontakt er deaktiveret og kan ikke slås til eller fra" msgid "This switch is disabled in the checked state" msgstr "Denne kontakt er deaktiveret i den markerede tilstand" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Denne tekst viser fed overskrift-styling" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Denne tekst viser fed skrift til titler" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Denne tekst viser kursiv skrift" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Denne tekst viser stor, halvfed skrift" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Denne tekst viser normal typografi" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Denne tekst viser halvfed skrift" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Tekstfeltet udvides automatisk fra 4 til 12 rækker, mens du skriver." @@ -33417,11 +33254,6 @@ msgstr "Tidszone" msgid "Tip" msgstr "Tip" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Titel" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Skriv en farve (hex, rgb(), hsl eller navn), eller brug farvevælgeren." msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Skriv en farve (hex, rgb(), hsl() eller navn), eller brug farvevælgeren." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Skriftstørrelse" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Kun skriveindikator" msgid "Typing state" msgstr "Skrivestatus" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Typografi" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Demonstration af typografiskala" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Universel fallback. Laveste kvalitet, men virker overalt." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Ukendt" @@ -34649,8 +34469,8 @@ msgstr "Ubegrænset antal emoji" msgid "Unlimited stickers" msgstr "Ubegrænset antal klistermærker" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Lås op for {lockedEmojiCount, plural, one {# brugerdefineret emoji} other {# brugerdefinerede emojis}} fra {communityCount, plural, one {# fællesskab} other {# fællesskaber}} med {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Unavngivet kanal" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Navnløs gruppe" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Vi har opdateret vores politikker. Gennemgå og accepter dem for at fortsætte." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Du redigerer din profil for dette fællesskab. Denne profil vil kun være synlig her og vil overskrive din globale profil." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Du er nu udvikler!" diff --git a/fluxer_app/src/features/i18n/locales/de/messages.po b/fluxer_app/src/features/i18n/locales/de/messages.po index 980db1583..73c0ce679 100644 --- a/fluxer_app/src/features/i18n/locales/de/messages.po +++ b/fluxer_app/src/features/i18n/locales/de/messages.po @@ -10,8 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "PO-Revision-Date: 2026-07-09 00:18+0000\n" "Last-Translator: Hampus \n" -"Language-Team: German " -"\n" +"Language-Team: German \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Description text in the messages tab. @@ -204,9 +203,7 @@ msgstr "{actor} hat die Eigenschaften von {targetMember} geändert." #: src/features/guild/components/modals/guild_tabs/GuildAuditLogTabUtils.tsx:583 msgid "{actor} updated channel permissions for {targetEntity} in {channelNode}." -msgstr "" -"{actor} hat die Kanalberechtigungen für {targetEntity} in {channelNode} " -"geändert." +msgstr "{actor} hat die Kanalberechtigungen für {targetEntity} in {channelNode} geändert." #: src/features/guild/components/modals/guild_tabs/GuildAuditLogTabUtils.tsx:588 msgid "{actor} updated channel permissions for {targetEntity}." @@ -268,9 +265,7 @@ msgstr "{authorNickname} bevorzugt Antworten ohne @-Erwähnung. Trotzdem mit Erw #. Confirmation body when the recipient prefers @mentions on replies but the user disabled it. authorNickname is the recipient display name. The @ character is literal. #: src/features/channel/components/ChannelReplyBar.tsx:33 msgid "{authorNickname} prefers to be @mentioned on replies. Send without the mention anyway?" -msgstr "" -"{authorNickname} möchte bei Antworten @erwähnt werden. Trotzdem ohne " -"Erwähnung senden?" +msgstr "{authorNickname} möchte bei Antworten @erwähnt werden. Trotzdem ohne Erwähnung senden?" #. Label in the background image gallery modal. Preserve {backgroundCount}, {maxBackgroundImages}; they are inserted by code. #: src/features/theme/components/modals/BackgroundImageGalleryModal.tsx:135 @@ -358,16 +353,11 @@ msgstr "{count, plural, one {# Lesezeichen} other {# Lesezeichen}}" #. Screen-reader status text in Discovery. {count} is the total number of matching communities. #: src/features/discovery/discovery/DiscoveryPage.tsx:58 msgid "{count, plural, one {# community found} other {# communities found}}" -msgstr "" -"{count, plural, one {# Community gefunden} other {# Communitys gefunden}}" +msgstr "{count, plural, one {# Community gefunden} other {# Communitys gefunden}}" #: src/features/app/components/layout/GuildsLayout.tsx:730 msgid "{count, plural, one {# community is temporarily unavailable due to a flux capacitor malfunction.} other {# communities are temporarily unavailable due to a flux capacitor malfunction.}}" -msgstr "" -"{count, plural, one {# Community ist aufgrund einer Fehlfunktion des " -"Fluxkompensators vorübergehend nicht verfügbar.} other {# Communitys sind " -"aufgrund einer Fehlfunktion des Fluxkompensators vorübergehend nicht " -"verfügbar.}}" +msgstr "{count, plural, one {# Community ist aufgrund einer Fehlfunktion des Fluxkompensators vorübergehend nicht verfügbar.} other {# Communitys sind aufgrund einer Fehlfunktion des Fluxkompensators vorübergehend nicht verfügbar.}}" #. Displayed value for the voice channel connection limit slider. #: src/features/channel/components/modals/channel_tabs/channel_overview_tab/VoiceSettings.tsx:47 @@ -557,12 +547,7 @@ msgstr "{count, plural, one {Du hast das Limit von # Sticker-Paket erreicht. Lö #: src/features/guild/components/alerts/MaxGuildsModal.tsx:24 msgid "{count, plural, one {You've reached the maximum number of communities you can join (# community). Leave a community before joining another one.} other {You've reached the maximum number of communities you can join (# communities). Leave a community before joining another one.}}" -msgstr "" -"{count, plural, one {Du hast die maximale Anzahl an Communitys erreicht, " -"denen du beitreten kannst (# Community). Verlasse eine Community, bevor du " -"einer anderen beitrittst.} other {Du hast die maximale Anzahl an Communitys " -"erreicht, denen du beitreten kannst (# Communities). Verlasse eine " -"Community, bevor du einer anderen beitrittst.}}" +msgstr "{count, plural, one {Du hast die maximale Anzahl an Communitys erreicht, denen du beitreten kannst (# Community). Verlasse eine Community, bevor du einer anderen beitrittst.} other {Du hast die maximale Anzahl an Communitys erreicht, denen du beitreten kannst (# Communities). Verlasse eine Community, bevor du einer anderen beitrittst.}}" #. Screen-reader live-region announcement listing the number of message search suggestions. Preserve {count}; it is inserted by code. #: src/features/channel/components/message_search_bar/MessageSearchBar.tsx:64 @@ -633,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} Desktop {desktopVersion}" @@ -840,15 +825,12 @@ msgstr "Die Abmessungen von {label} passen nicht zu diesem Asset. Wähle ein and #. Error modal body shown when a community image upload exceeds the size limit. {label} names the image field and {maxSizeLabel} is a formatted file size. #: src/features/guild/components/modals/guild_tabs/guild_overview_tab/hooks/useGuildImageAssetField.tsx:43 msgid "{label} file is too large. Choose a file smaller than {maxSizeLabel}." -msgstr "" -"Die Datei \"{label}\" ist zu groß. Wähle eine Datei, die kleiner als " -"{maxSizeLabel} ist." +msgstr "Die Datei \"{label}\" ist zu groß. Wähle eine Datei, die kleiner als {maxSizeLabel} ist." #. Error modal body shown when a community image field does not allow animation. {label} names the image field. #: src/features/guild/components/modals/guild_tabs/guild_overview_tab/hooks/useGuildImageAssetField.tsx:48 msgid "{label} images cannot be animated. Use a static image." -msgstr "" -"{label}-Bilder können nicht animiert werden. Verwende ein statisches Bild." +msgstr "{label}-Bilder können nicht animiert werden. Verwende ein statisches Bild." #. Summary label in the Linux audio source picker when N apps are included. {length} is the integer app count. #: src/features/voice/components/AudioSourcePickerLinux.tsx:34 @@ -906,10 +888,7 @@ msgstr "{mbWayPaymentMethod} kann für einmalige EUR-Geschenkkäufe verwendet we #. Plutonium subscription checkout guidance for Portugal. Explains that MB WAY cannot be used for recurring subscriptions. #: src/features/app/components/dialogs/components/plutonium/PricingContextPanel.tsx:103 msgid "{mbWayPaymentMethod} is a one-time payment method in {paymentProviderName} checkout, so it is not a recurring subscription path here." -msgstr "" -"{mbWayPaymentMethod} ist eine einmalige Zahlungsmethode bei " -"{paymentProviderName}. Daher kann sie nicht für ein wiederkehrendes Abo " -"verwendet werden." +msgstr "{mbWayPaymentMethod} ist eine einmalige Zahlungsmethode bei {paymentProviderName}. Daher kann sie nicht für ein wiederkehrendes Abo verwendet werden." #. Screen share bitrate option label. Mbps means megabits per second. #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:166 @@ -995,11 +974,7 @@ msgstr "{overrideCount, plural, one {# Überschreibung} other {# Überschreibung #. Modal body for the mobile card verification confirmation. Explains the two-step flow and the return path. #: src/features/app/components/dialogs/components/plutonium/hooks/useCheckoutActions.tsx:182 msgid "{paymentProviderName} will first verify that your card is eligible for localized pricing, then continue you to payment. Return to {productName} once you've completed it." -msgstr "" -"{paymentProviderName} prüft zuerst, ob deine Kreditkarte für die " -"lokalisierte Preisgestaltung berechtigt ist, und leitet dich dann zur " -"Zahlung weiter. Kehre zu {productName} zurück, sobald du den Vorgang " -"abgeschlossen hast." +msgstr "{paymentProviderName} prüft zuerst, ob deine Kreditkarte für die lokalisierte Preisgestaltung berechtigt ist, und leitet dich dann zur Zahlung weiter. Kehre zu {productName} zurück, sobald du den Vorgang abgeschlossen hast." #. Plutonium gift checkout guidance for Brazil. Explains that Pix is available for one-time gift purchases via the payment provider. #: src/features/app/components/dialogs/components/plutonium/PricingContextPanel.tsx:24 @@ -1009,10 +984,7 @@ msgstr "{pixPaymentMethod} kann für einmalige BRL-Zahlungen verwendet werden, w #. Plutonium subscription checkout guidance for Brazil. Explains that recurring Pix avoids card verification. #: src/features/app/components/dialogs/components/plutonium/PricingContextPanel.tsx:140 msgid "{pixPaymentMethod} can skip the card verification step when {paymentProviderName} offers recurring {pixPaymentMethod2} for your checkout." -msgstr "" -"{pixPaymentMethod} kann den Schritt zur Kartenverifizierung überspringen, " -"wenn {paymentProviderName} wiederkehrende {pixPaymentMethod2} für deinen " -"Einkauf anbietet." +msgstr "{pixPaymentMethod} kann den Schritt zur Kartenverifizierung überspringen, wenn {paymentProviderName} wiederkehrende {pixPaymentMethod2} für deinen Einkauf anbietet." #. Badge label with a date in the user profile badges popout. Preserve {premiumProductFullName}, {premiumSinceFormatted}; they are inserted by code. In English, keep "subscriber since" lowercase. Other locales should use natural local capitalization. #: src/features/user/components/popouts/UserProfileBadges.tsx:52 @@ -1045,9 +1017,7 @@ msgstr "{PRODUCT_NAME} konnte nicht richtig starten. Das kann an beschädigten D #: src/features/auth/state/NewDeviceMonitoring.tsx:196 msgid "{PRODUCT_NAME} has found a new audio device named <0>{deviceName}. Do you want to switch to it?" -msgstr "" -"{PRODUCT_NAME} hat ein neues Audioaufnahmegerät mit dem Namen <0>{deviceName}" -" erkannt. Möchtest du es auswählen?" +msgstr "{PRODUCT_NAME} hat ein neues Audioaufnahmegerät mit dem Namen <0>{deviceName} erkannt. Möchtest du es auswählen?" #: src/features/auth/state/NewDeviceMonitoring.tsx:185 msgid "{PRODUCT_NAME} has found a new audio input device named <0>{deviceName}. Do you want to switch to it?" @@ -1087,11 +1057,7 @@ msgstr "{productName}-Anwendungssymbol" #. Label in the push settings. #: src/features/user/components/modals/tabs/notifications_tab/PushSettings.tsx:16 msgid "{productName} avoids sending push notifications to your mobile devices when you are at your computer. Choose how long you need to be inactive on desktop before you receive push notifications." -msgstr "" -"{productName} verhindert, dass Push-Benachrichtigungen an deine mobilen " -"Geräte gesendet werden, während du an deinem Computer aktiv bist. Wähle aus, " -"wie lange du am Desktop inaktiv sein musst, bevor du Push-Benachrichtigungen " -"erhältst." +msgstr "{productName} verhindert, dass Push-Benachrichtigungen an deine mobilen Geräte gesendet werden, während du an deinem Computer aktiv bist. Wähle aus, wie lange du am Desktop inaktiv sein musst, bevor du Push-Benachrichtigungen erhältst." #. Short badge title in the user profile badges popout. Preserve {productName}; it is inserted by code. English locales use Title Case for official badge titles; other locales should use natural local capitalization. #: src/features/user/components/popouts/UserProfileBadges.tsx:37 @@ -1115,9 +1081,7 @@ msgstr "{productName} kann hier nicht nur den Ton einer einzelnen App aufnehmen, #. Helper text shown under a codec option indicating no usable hardware encoder path is available and the CPU will be used. productName is the app name. #: src/features/voice/utils/ScreenShareCodecPolicy.ts:36 msgid "{productName} cannot use a hardware encoder for this, so it will use your CPU." -msgstr "" -"{productName} kann keine Hardware-Beschleunigung verwenden und wird " -"stattdessen deine CPU nutzen." +msgstr "{productName} kann keine Hardware-Beschleunigung verwenden und wird stattdessen deine CPU nutzen." #. Short badge title in the user profile badges popout. Preserve {productName}; it is inserted by code. English locales use Title Case for official badge titles; other locales should use natural local capitalization. #: src/features/user/components/popouts/UserProfileBadges.tsx:27 @@ -1125,19 +1089,14 @@ msgid "{productName} Community Team" msgstr "{productName} Community-Team" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." -msgstr "" -"{productName} konnte den Update-Dienst nicht erreichen. Bitte überprüfe " -"deine Verbindung und versuche es noch einmal." +msgstr "{productName} konnte den Update-Dienst nicht erreichen. Bitte überprüfe deine Verbindung und versuche es noch einmal." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." -msgstr "" -"{productName} konnte nicht neu gestartet werden, um das heruntergeladene " -"Update zu installieren. Bitte versuche es erneut, indem du auf die " -"Schaltfläche „Update“ klickst." +msgstr "{productName} konnte nicht neu gestartet werden, um das heruntergeladene Update zu installieren. Bitte versuche es erneut, indem du auf die Schaltfläche „Update“ klickst." #. Display name for the product desktop client in the authentication handoff approval flow when the raw client name is Electron. Preserve {productName}; it is inserted by code. #: src/features/auth/flow/HandoffApprovalFlow.tsx:20 @@ -1172,26 +1131,17 @@ msgstr "{productName} benötigt Zugriff auf deine Kamera, um Video-Chats zu erm #. Body of the camera-permission-denied modal on Windows and Linux. {productName} is Fluxer. #: src/features/permissions/system/components/MediaPermissionBlockedModal.tsx:34 msgid "{productName} needs access to your camera. Allow camera access in your operating system privacy settings and restart the app." -msgstr "" -"{productName} benötigt Zugriff auf deine Kamera. Erlaube den Kamerazugriff " -"in den Datenschutzeinstellungen deines Betriebssystems und starte die App " -"neu." +msgstr "{productName} benötigt Zugriff auf deine Kamera. Erlaube den Kamerazugriff in den Datenschutzeinstellungen deines Betriebssystems und starte die App neu." #. Body of the microphone-permission-denied modal on web. {productName} is Fluxer. #: src/features/permissions/system/components/MediaPermissionBlockedModal.tsx:29 msgid "{productName} needs access to your microphone to enable voice chat. Grant microphone permission in your browser settings and try again." -msgstr "" -"{productName} benötigt Zugriff auf dein Mikrofon, um den Voice-Chat zu " -"ermöglichen. Erteile die Mikrofonberechtigung in deinen Browsereinstellungen " -"und versuche es noch einmal." +msgstr "{productName} benötigt Zugriff auf dein Mikrofon, um den Voice-Chat zu ermöglichen. Erteile die Mikrofonberechtigung in deinen Browsereinstellungen und versuche es noch einmal." #. Body of the microphone-permission-denied modal on Windows and Linux. {productName} is Fluxer. #: src/features/permissions/system/components/MediaPermissionBlockedModal.tsx:24 msgid "{productName} needs access to your microphone. Allow microphone access in your operating system privacy settings and restart the app." -msgstr "" -"{productName} benötigt Zugriff auf dein Mikrofon. Erlaube den " -"Mikrofonzugriff in den Datenschutzeinstellungen deines Betriebssystems und " -"starte die App neu." +msgstr "{productName} benötigt Zugriff auf dein Mikrofon. Erlaube den Mikrofonzugriff in den Datenschutzeinstellungen deines Betriebssystems und starte die App neu." #. Camera settings notice shown when camera permission has not been granted. #: src/features/user/components/modals/tabs/UserVideoTab.tsx:45 @@ -1216,16 +1166,12 @@ msgstr "{productName}-Partner" #. Nagbar shown after the app restarts while the user was connected to a community voice channel. {productName} is Fluxer, {channelName} is the voice channel name, and {communityName} is the community name. #: src/features/app/components/layout/app_layout/nagbars/VoiceSessionRestoreNagbar.tsx:23 msgid "{productName} restarted while you were connected to the {channelName} channel in the {communityName} community." -msgstr "" -"{productName} wurde neu gestartet, während du mit dem Kanal „{channelName}\" " -"in der Community „{communityName}\" verbunden warst." +msgstr "{productName} wurde neu gestartet, während du mit dem Kanal „{channelName}\" in der Community „{communityName}\" verbunden warst." #. Nagbar shown after the app restarts while the user can reconnect to an active DM or group DM call. {productName} is Fluxer and {directCallName} is the DM or group DM display name. #: src/features/app/components/layout/app_layout/nagbars/VoiceSessionRestoreNagbar.tsx:29 msgid "{productName} restarted while you were connected to the call in {directCallName}." -msgstr "" -"{productName} wurde neu gestartet, während du in einem Anruf in " -"{directCallName} warst." +msgstr "{productName} wurde neu gestartet, während du in einem Anruf in {directCallName} warst." #. Item in the textarea spellcheck submenu that opens the full settings page. Trailing horizontal ellipsis (…) indicates the action opens settings. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:94 @@ -1245,10 +1191,7 @@ msgstr "{productName}-Mitarbeiter" #. Label in the notifications. #: src/features/user/components/modals/tabs/notifications_tab/Notifications.tsx:61 msgid "{productName} uses push notifications when installed as a mobile PWA. Registering ensures the gateway can reach your device even when the app is backgrounded." -msgstr "" -"{productName} verwendet Push-Benachrichtigungen, wenn es als mobile PWA " -"installiert ist. Die Registrierung stellt sicher, dass das Gateway dein " -"Gerät erreichen kann, auch wenn die App im Hintergrund läuft." +msgstr "{productName} verwendet Push-Benachrichtigungen, wenn es als mobile PWA installiert ist. Die Registrierung stellt sicher, dass das Gateway dein Gerät erreichen kann, auch wenn die App im Hintergrund läuft." #. Short badge title in the user profile badges popout. Preserve {productName}; it is inserted by code. English locales use Title Case for official badge titles; other locales should use natural local capitalization. #: src/features/user/components/popouts/UserProfileBadges.tsx:47 @@ -1267,8 +1210,8 @@ msgstr "{productName} Wortmarke" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1299,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} online" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Gruppe von {resolvedName}" @@ -1440,10 +1383,7 @@ msgstr "{upiPaymentMethod} kann für einmalige INR-Zahlungen verwendet werden, w #. Plutonium subscription checkout guidance for India. Explains that recurring UPI avoids card verification. #: src/features/app/components/dialogs/components/plutonium/PricingContextPanel.tsx:160 msgid "{upiPaymentMethod} can skip the card verification step when {paymentProviderName} offers recurring {upiPaymentMethod2} for your checkout." -msgstr "" -"{upiPaymentMethod} kann den Schritt zur Kartenverifizierung überspringen, " -"wenn {paymentProviderName} wiederkehrende {upiPaymentMethod2} für deinen " -"Einkauf anbietet." +msgstr "{upiPaymentMethod} kann den Schritt zur Kartenverifizierung überspringen, wenn {paymentProviderName} wiederkehrende {upiPaymentMethod2} für deinen Einkauf anbietet." #. System message in a group DM when a member adds another user. username is the actor, userName is the added user. #: src/features/messaging/utils/SystemMessageUtils.tsx:100 @@ -2021,11 +1961,9 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "ein Hostname, z. B. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." -msgstr "" -"Ein Desktop Update für Linux ist verfügbar. Wähle das Paketformat für dieses " -"System aus, und {productName} speichert es lokal." +msgstr "Ein Desktop Update für Linux ist verfügbar. Wähle das Paketformat für dieses System aus, und {productName} speichert es lokal." #. Duration label component for an elapsed call. Shown when the call lasted about a minute. #: src/features/channel/components/CallMessage.tsx:35 @@ -2052,7 +1990,7 @@ msgstr "eine Umfrage" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Eine redirect_uri ist erforderlich, wenn der Bot-Scope nicht der einzige Scope ist." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Eine wiederverwendbare Komponente für leere Zustände, Fehler und Statusmeldungen." @@ -2063,15 +2001,11 @@ msgstr "eine Rich-Einbettung oder Link-Vorschau (keine hochgeladene Datei)" #: src/features/auth/flow/HandoffApprovalFlow.tsx:180 msgid "A sign-in request was made for your account. Only approve if you initiated it." -msgstr "" -"Für deinen Account wurde eine Anmeldeanfrage gestellt. Genehmige sie nur, " -"wenn du sie selbst initiiert hast." +msgstr "Für deinen Account wurde eine Anmeldeanfrage gestellt. Genehmige sie nur, wenn du sie selbst initiiert hast." #: src/features/auth/flow/HandoffApprovalFlow.tsx:178 msgid "A sign-in request was made from the following device. Only approve if you recognize it." -msgstr "" -"Eine Anmeldeanfrage wurde von folgendem Gerät gesendet. Genehmige sie nur, " -"wenn du das Gerät erkennst." +msgstr "Eine Anmeldeanfrage wurde von folgendem Gerät gesendet. Genehmige sie nur, wenn du das Gerät erkennst." #. Description for has:sticker. Sentence case, no trailing punctuation. #: src/features/search/utils/SearchUtils.ts:77 @@ -2244,9 +2178,7 @@ msgstr "Accountdaten" #. IAR modal: rule description. #: src/features/moderation/components/report_modal/IARModalCopy.ts:279 msgid "Account exists to spam, scam, or abuse the platform." -msgstr "" -"Account existiert, um die Plattform zu spammen, zu betrügen oder zu " -"missbrauchen." +msgstr "Account existiert, um die Plattform zu spammen, zu betrügen oder zu missbrauchen." #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AccountSecuritySections.ts:121 @@ -2717,9 +2649,7 @@ msgstr "Verknüpfung hinzufügen" #. Setup wizard body for SMTP integration credentials. #: src/features/app/components/setup/SetupWizardSteps.tsx:914 msgid "Add SMTP credentials so the instance can send verification and notification email." -msgstr "" -"Füge SMTP-Anmeldedaten hinzu, damit die Instanz Verifizierungs-E-Mails und " -"Benachrichtigungen senden kann." +msgstr "Füge SMTP-Anmeldedaten hinzu, damit die Instanz Verifizierungs-E-Mails und Benachrichtigungen senden kann." #. Button or menu action label in the theme studio quick css section. Keep it concise. #: src/features/theme_studio/sections/QuickCssSection.tsx:52 @@ -2896,10 +2826,7 @@ msgstr "Die Gesamtlautstärke für alle Benachrichtigungstöne anpassen" #. Description for the app zoom setting in Firefox on the web. productName is the app name. #: src/features/user/components/modals/tabs/appearance_tab/ScalingTab.tsx:41 msgid "Adjust the overall zoom level of the app. Firefox keeps the standard browser zoom shortcuts, so use the slider here for {productName} zoom." -msgstr "" -"Passe die allgemeine Zoomstufe der App an. Firefox verwendet weiterhin die " -"Standard-Zoomtastenkombinationen des Browsers. Verwende daher den " -"Schieberegler hier für den Zoom von {productName}." +msgstr "Passe die allgemeine Zoomstufe der App an. Firefox verwendet weiterhin die Standard-Zoomtastenkombinationen des Browsers. Verwende daher den Schieberegler hier für den Zoom von {productName}." #. Description for the app zoom setting. The placeholders are keyboard shortcuts. #: src/features/user/components/modals/tabs/appearance_tab/ScalingTab.tsx:46 @@ -2964,9 +2891,7 @@ msgstr "Nach 14 Tagen wird dein Account endgültig gelöscht" #. Body in the screen-share picker after the user has opened macOS screen recording settings. macOS does not apply screen recording permission to a running app. #: src/features/voice/components/modals/screen_share_picker_modal/ScreenSharePickerDisplayPermissionPrompt.tsx:37 msgid "After changing {macosScreenRecordingPermissionName}, fully quit and restart {productName} so macOS applies the permission." -msgstr "" -"Nachdem du {macosScreenRecordingPermissionName} geändert hast, beende und " -"starte {productName} vollständig neu, damit macOS die Berechtigung anwendet." +msgstr "Nachdem du {macosScreenRecordingPermissionName} geändert hast, beende und starte {productName} vollständig neu, damit macOS die Berechtigung anwendet." #. Short label in the guild members date range modal. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildMembersDateRangeModal.tsx:15 @@ -3214,8 +3139,7 @@ msgstr "Erlaube Mitgliedern aus deinen Communitys, diese Verbindung zu sehen" #. Profile timezone privacy option description for the Community members switch. #: src/features/user/components/modals/tabs/my_profile_tab/TimezoneProfileSettings.tsx:71 msgid "Allow members from communities you're in to see your profile local time" -msgstr "" -"Erlaube Mitgliedern aus deinen Communitys, deine lokale Profilzeit zu sehen" +msgstr "Erlaube Mitgliedern aus deinen Communitys, deine lokale Profilzeit zu sehen" #. Label in the message history threshold content. Keep the tone plain and specific. #: src/features/guild/components/modals/guild_tabs/guild_overview_tab/sections/MessageHistoryThresholdContent.tsx:36 @@ -3463,8 +3387,7 @@ msgstr "Ein unerwarteter Fehler ist aufgetreten" #. Generic error toast body asking the user to retry. #: src/lib/forms/index.tsx:14 msgid "An unexpected error occurred. Try again." -msgstr "" -"Es ist ein unerwarteter Fehler aufgetreten. Bitte versuche es noch einmal." +msgstr "Es ist ein unerwarteter Fehler aufgetreten. Bitte versuche es noch einmal." #. Description for has:sound. Sentence case, no trailing punctuation. #: src/features/search/utils/SearchUtils.ts:69 @@ -3589,9 +3512,7 @@ msgstr "Animierte Symbole werden nicht unterstützt" #. Validation error in the create-community form when the user picks an animated image. #: src/features/guild/components/modals/add_guild_modal/shared.ts:115 msgid "Animated icons are not supported when creating a new community. Use a static image." -msgstr "" -"Animierte Icons werden beim Erstellen einer neuen Community nicht " -"unterstützt. Verwende ein statisches Bild." +msgstr "Animierte Icons werden beim Erstellen einer neuen Community nicht unterstützt. Verwende ein statisches Bild." #. Description text in the edit group modal. #. Error modal body in the mobile edit group sheet when an animated icon is chosen. @@ -3789,9 +3710,7 @@ msgstr "Jeder kann einen Account erstellen." #. Description for the approval registration mode. #: src/features/app/components/setup/SetupWizardSteps.tsx:166 msgid "Anyone can request an account, but an administrator must approve it." -msgstr "" -"Jeder kann einen Account beantragen, aber ein Administrator muss es " -"genehmigen." +msgstr "Jeder kann einen Account beantragen, aber ein Administrator muss es genehmigen." #. Label for an integration API key input. #: src/features/app/components/setup/SetupWizardSteps.tsx:935 @@ -3972,7 +3891,7 @@ msgstr "Apps" msgid "Arabic" msgstr "Arabisch" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Archivieren" @@ -4002,9 +3921,7 @@ msgstr "Möchtest du wirklich alle Nachrichten in deinen persönlichen Notizen l #. placeholder {0}: selectedRole.name #: src/features/guild/components/modals/guild_tabs/GuildRolesTab.tsx:354 msgid "Are you sure you want to delete the <0>{0} role? Any members with this role will no longer have it." -msgstr "" -"Möchtest du die Rolle <0>{0} wirklich löschen? Alle Mitglieder mit " -"dieser Rolle, werden sie dann nicht mehr haben." +msgstr "Möchtest du die Rolle <0>{0} wirklich löschen? Alle Mitglieder mit dieser Rolle, werden sie dann nicht mehr haben." #: src/features/ui/action_menu/items/CategoryMenuItems.tsx:349 msgid "Are you sure you want to delete the category \"{categoryName}\"? All {channelCount, plural, one {# channel} other {# channels}} inside will be moved to the top of the channel list." @@ -4044,9 +3961,7 @@ msgstr "Möchtest du diesen Passkey wirklich löschen?" #: src/features/auth/components/modals/AccountDeleteModal.tsx:39 msgid "Are you sure you want to delete your account? This action will schedule your account for permanent deletion." -msgstr "" -"Möchtest du deinen Account wirklich löschen? Dadurch wird dein Account zur " -"endgültigen Löschung vorgemerkt." +msgstr "Möchtest du deinen Account wirklich löschen? Dadurch wird dein Account zur endgültigen Löschung vorgemerkt." #. Confirmation modal body shown before re-enabling invite links in the current community. #: src/features/app/components/layout/GuildLayout.tsx:58 @@ -4070,9 +3985,7 @@ msgstr "Möchtest du die App-Daten von {appName} wirklich zurücksetzen?" #. placeholder {0}: NicknameUtils.getDisplayName(ban.user) #: src/features/guild/components/modals/guild_tabs/GuildBansTab.tsx:100 msgid "Are you sure you want to revoke the ban for <0>{0}? They will be able to rejoin the community." -msgstr "" -"Möchtest du <0>{0} wirklich entbannen? Die Person kann der Community " -"dann wieder beitreten." +msgstr "Möchtest du <0>{0} wirklich entbannen? Die Person kann der Community dann wieder beitreten." #: src/features/channel/components/embeds/channel_embed/EmbedLink.tsx:55 msgid "Are you sure you want to suppress all link embeds on this message? This action will hide all embeds from this message." @@ -4613,9 +4526,7 @@ msgstr "Automatisch würde {codecName} verwenden, da kein Hardware-Encoder verf #. Desktop-client description shown under the Automatic option in the screen-share codec radio group. {codecName} is a codec label such as H.265 and should not be translated. #: src/features/user/components/modals/tabs/components/CodecSelectorDescription.ts:75 msgid "Automatic would use {codecName} because no hardware encoder is available and your computer exposes H.265." -msgstr "" -"Automatisch würde {codecName} verwenden, da kein Hardware-Encoder verfügbar " -"ist und dein Computer H.265 unterstützt." +msgstr "Automatisch würde {codecName} verwenden, da kein Hardware-Encoder verfügbar ist und dein Computer H.265 unterstützt." #. Description shown under the Automatic option in the screen-share codec radio group. {codecName} is a codec label such as H.264 and should not be translated. #: src/features/user/components/modals/tabs/components/CodecSelectorDescription.ts:90 @@ -4756,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Automatisches Scrollen" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Verfügbar" @@ -4784,9 +4695,7 @@ msgstr "Avatar" #. Error message in the avatar uploader. Preserve {imageMaxSizeLabel}; it is inserted by code. #: src/features/user/components/modals/tabs/my_profile_tab/AvatarUploader.tsx:81 msgid "Avatar file is too large. Choose a file smaller than {imageMaxSizeLabel}." -msgstr "" -"Die Avatar-Datei ist zu groß. Wähle eine Datei, die kleiner als " -"{imageMaxSizeLabel} ist." +msgstr "Die Avatar-Datei ist zu groß. Wähle eine Datei, die kleiner als {imageMaxSizeLabel} ist." #. Webhook avatar upload error. IMAGE_MAX_SIZE_LABEL is a formatted file-size limit. #: src/features/webhook/components/WebhookListItem.tsx:38 @@ -5093,9 +5002,7 @@ msgstr "Banner" #. Error message in the banner uploader. Preserve {imageMaxSizeLabel}; it is inserted by code. Keep the tone plain and specific. #: src/features/user/components/modals/tabs/my_profile_tab/BannerUploader.tsx:80 msgid "Banner file is too large. Choose a file smaller than {imageMaxSizeLabel}." -msgstr "" -"Die Bannerdatei ist zu groß. Wähle eine Datei, die kleiner als " -"{imageMaxSizeLabel} ist." +msgstr "Die Bannerdatei ist zu groß. Wähle eine Datei, die kleiner als {imageMaxSizeLabel} ist." #. Button or menu action label in the banner uploader. Keep it concise. Keep the tone plain and specific. #: src/features/user/components/modals/tabs/my_profile_tab/BannerUploader.tsx:85 @@ -5336,26 +5243,6 @@ msgstr "Weichzeichnen" msgid "Blur strength" msgstr "Unschärfestärke" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Text" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Fett" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Fette Überschrift" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Fetter Titel" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5610,10 +5497,7 @@ msgstr "Browser zeigen Kameras nicht in der Bildschirmfreigabe-Auswahl an. Wähl #. Description shown on the settings page above the Export my data button. #: src/features/user/components/modals/tabs/privacy_safety_tab/data_request_modal/DataRequestModal.tsx:267 msgid "Build a downloadable archive of your account data, including messages and attachment URLs. Most people want everything, but you can narrow the scope below." -msgstr "" -"Erstelle ein herunterladbares Archiv deiner Accountdaten, einschließlich " -"Nachrichten und Anhang-URLs. Die meisten Leute möchten alles, aber du kannst " -"den Umfang unten einschränken." +msgstr "Erstelle ein herunterladbares Archiv deiner Accountdaten, einschließlich Nachrichten und Anhang-URLs. Die meisten Leute möchten alles, aber du kannst den Umfang unten einschränken." #. Settings search entry description. One-line summary of what the settings search entry controls. #: src/features/user/components/settings_utils/search_index/ApplicationsIndex.ts:112 @@ -5686,7 +5570,7 @@ msgstr "Schaltflächenvarianten" msgid "Button with context menu" msgstr "Schaltfläche mit Kontextmenü" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Schaltflächen" @@ -5728,9 +5612,7 @@ msgstr "Mit dem Kauf stimmst du unseren {terms} und {privacy} zu." #. Legal notice in the updated policies modal. productName is the Fluxer product name. #: src/features/auth/components/modals/TermsAcceptanceModal.tsx:34 msgid "By using {productName}, you agree to the updated policies." -msgstr "" -"Durch die Nutzung von {productName} stimmst du den aktualisierten " -"Richtlinien zu." +msgstr "Durch die Nutzung von {productName} stimmst du den aktualisierten Richtlinien zu." #. Setting label that bypasses mention suppression for the current user. #: src/features/ui/action_menu/items/StaffUserControlsMenuItems.tsx:40 @@ -5890,10 +5772,7 @@ msgstr "Kameratest" #. Empty-state explanation in the screen-share picker devices tab on Linux/Wayland. {productName} is Fluxer. #: src/features/voice/components/modals/screen_share_picker_modal/useDeviceEmptyStateCopy.ts:18 msgid "Cameras and virtual capture devices are selected here in {productName}, not in the Wayland system picker. If nothing appears here, check permissions or connect a device." -msgstr "" -"Kameras und virtuelle Aufnahmegeräte werden hier in {productName} " -"ausgewählt, nicht in der Wayland-Systemauswahl. Wenn hier nichts angezeigt " -"wird, überprüfe die Berechtigungen oder schließe ein Gerät an." +msgstr "Kameras und virtuelle Aufnahmegeräte werden hier in {productName} ausgewählt, nicht in der Wayland-Systemauswahl. Wenn hier nichts angezeigt wird, überprüfe die Berechtigungen oder schließe ein Gerät an." #. Tooltip in the voice control bar when cameras are disabled because the participant count exceeds the limit. {voiceChannelCameraUserLimit} is the configured threshold. #: src/features/voice/components/VoiceControlBar.tsx:136 @@ -6090,11 +5969,6 @@ msgstr "Sticker-Paket kann nicht installiert werden" msgid "Captcha verification failed. Try again." msgstr "Captcha-Verifizierung fehlgeschlagen. Bitte versuche es erneut." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Bildunterschrift" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -6811,9 +6685,7 @@ msgstr "Kasse" #. Modal body for the generic "checkout blocked" state. Provides the support email. #: src/features/app/components/dialogs/components/plutonium/hooks/useCheckoutActions.tsx:148 msgid "Checkout is blocked for this account. Contact {supportEmail} if you need help." -msgstr "" -"Der Checkout ist für diesen Account blockiert. Wenn Du Hilfe benötigst, " -"wende Dich an {supportEmail}." +msgstr "Der Checkout ist für diesen Account blockiert. Wenn Du Hilfe benötigst, wende Dich an {supportEmail}." #. Modal title for the generic "checkout blocked" state when no more specific reason is known. #: src/features/app/components/dialogs/components/plutonium/hooks/useCheckoutActions.tsx:144 @@ -6956,9 +6828,7 @@ msgstr "Wähle hCaptcha oder Cloudflare Turnstile für Anmeldeherausforderungen. #. Settings search entry description. One-line summary of what the settings search entry controls. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:427 msgid "Choose how chat moves after you send a message" -msgstr "" -"Entscheide wie der Chat nach dem Senden einer Nachricht fortgesetzt werden " -"soll" +msgstr "Entscheide wie der Chat nach dem Senden einer Nachricht fortgesetzt werden soll" #. Settings section description. One-line summary of what the settings section controls. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:238 @@ -7044,9 +6914,7 @@ msgstr "Wähle aus, was Freunde in ihrem „Gerade aktiv\"-Panel sehen" #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:306 msgid "Choose what members must have before they can post or DM community members." -msgstr "" -"Lege fest was Mitglieder haben müssen, bevor sie Beiträge posten oder " -"Community-Mitgliedern DMs senden können." +msgstr "Lege fest was Mitglieder haben müssen, bevor sie Beiträge posten oder Community-Mitgliedern DMs senden können." #. Scope option (radio) that lets the user pick conversation kinds and exclude specific communities. #: src/features/user/components/modals/tabs/privacy_safety_tab/data_request_modal/DataRequestModal.tsx:70 @@ -7064,17 +6932,11 @@ msgstr "Wählen Sie, wo {PRODUCT_NAME} markierten Text suchen soll. Wir merken u #: src/features/search/components/modals/SearchProviderPickerModal.tsx:100 msgid "Choose where {PRODUCT_NAME} should send highlighted text for translation. We'll remember your pick. You can change it or add your own provider later in {searchEnginesSettingsPath}." -msgstr "" -"Entscheide wohin {PRODUCT_NAME} markierten Text zur Übersetzung senden soll. " -"Wir merken uns deine Auswahl. Du kannst sie später unter " -"{searchEnginesSettingsPath} ändern oder einen eigenen Anbieter hinzufügen." +msgstr "Entscheide wohin {PRODUCT_NAME} markierten Text zur Übersetzung senden soll. Wir merken uns deine Auswahl. Du kannst sie später unter {searchEnginesSettingsPath} ändern oder einen eigenen Anbieter hinzufügen." #: src/features/search/components/modals/SearchProviderPickerModal.tsx:95 msgid "Choose where {PRODUCT_NAME} should send images for reverse image search. We'll remember your pick. You can change it or add your own provider later in {searchEnginesSettingsPath}." -msgstr "" -"Entscheide wohin {PRODUCT_NAME} Bilder für die Rückwärtssuche senden soll. " -"Wir merken uns deine Auswahl. Du kannst sie später unter " -"{searchEnginesSettingsPath} ändern oder einen eigenen Anbieter hinzufügen." +msgstr "Entscheide wohin {PRODUCT_NAME} Bilder für die Rückwärtssuche senden soll. Wir merken uns deine Auswahl. Du kannst sie später unter {searchEnginesSettingsPath} ändern oder einen eigenen Anbieter hinzufügen." #. Setup wizard media expiry step body. #: src/features/app/components/setup/SetupWizardSteps.tsx:220 @@ -7084,9 +6946,7 @@ msgstr "Wähle, ob hochgeladene Anhänge automatisch nach Größe ablaufen solle #. Description for the Custom export option. #: src/features/user/components/modals/tabs/privacy_safety_tab/data_request_modal/DataRequestModal.tsx:66 msgid "Choose which conversation kinds, communities, and time window to include in the archive." -msgstr "" -"Wähle aus, welche Arten von Konversationen, Communitys und Zeiträume im " -"Archiv enthalten sein sollen." +msgstr "Wähle aus, welche Arten von Konversationen, Communitys und Zeiträume im Archiv enthalten sein sollen." #. Button or menu action label in the search engines tab. Keep it concise. #: src/features/user/components/modals/tabs/chat_settings_tab/SearchEnginesTab.tsx:113 @@ -7163,22 +7023,15 @@ msgstr "Deinen Account beanspruchen" #. IAR modal: body of the account-not-ready notice. #: src/features/moderation/components/report_modal/IARModalCopy.ts:45 msgid "Claim your account and verify your email to send reports." -msgstr "" -"Beanspruche deinen Account und bestätige deine E-Mail-Adresse, um Berichte " -"zu senden." +msgstr "Beanspruche deinen Account und bestätige deine E-Mail-Adresse, um Berichte zu senden." #: src/features/auth/components/modals/ClaimAccountModal.tsx:138 msgid "Claim your account by adding an email and password. We will send a verification code to confirm your email before finishing." -msgstr "" -"Fordere deinen Account an, indem du eine E-Mail-Adresse und ein Passwort " -"hinzufügst. Wir senden dir einen Bestätigungscode, um deine E-Mail-Adresse " -"vor dem Abschluss zu bestätigen." +msgstr "Fordere deinen Account an, indem du eine E-Mail-Adresse und ein Passwort hinzufügst. Wir senden dir einen Bestätigungscode, um deine E-Mail-Adresse vor dem Abschluss zu bestätigen." #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:173 msgid "Claim your account to access security features like two-factor authentication and passkeys." -msgstr "" -"Registriere deinen Account, um auf Sicherheitsfunktionen wie die Zwei-Faktor-" -"Authentifizierung und Passkeys zuzugreifen." +msgstr "Registriere deinen Account, um auf Sicherheitsfunktionen wie die Zwei-Faktor-Authentifizierung und Passkeys zuzugreifen." #. Tooltip on the channel header voice call button for guest accounts. Prompts account claim. #: src/features/channel/components/channel_header_components/CallButtons.tsx:54 @@ -7215,16 +7068,12 @@ msgstr "Beanspruche deinen Account, um {premiumProductFullName} zu kaufen." #. Billing tooltip shown when an unclaimed account cannot buy or redeem premium. premiumProductFullName is the full paid product name. #: src/features/premium/utils/PremiumMessageDescriptors.ts:22 msgid "Claim your account to purchase or redeem {premiumProductFullName}." -msgstr "" -"Beanspruche deinen Account, um {premiumProductFullName} zu kaufen oder " -"einzulösen." +msgstr "Beanspruche deinen Account, um {premiumProductFullName} zu kaufen oder einzulösen." #. Gift inventory empty-state text shown to unclaimed accounts. #: src/features/user/components/modals/tabs/GiftInventoryTab.tsx:82 msgid "Claim your account to redeem or manage {premiumProductName} gift codes." -msgstr "" -"Beanspruche deinen Account, um {premiumProductName}-Geschenkcodes einzulösen " -"oder zu verwalten." +msgstr "Beanspruche deinen Account, um {premiumProductName}-Geschenkcodes einzulösen oder zu verwalten." #. Helper text on a gift code embed for guest accounts. Prompts account claim before redeeming. #: src/features/channel/components/GiftEmbed.tsx:36 @@ -7252,8 +7101,7 @@ msgstr "Beanspruche deinen Account, um DMs zu beginnen." #: src/features/channel/components/channel_header_components/CallButtons.tsx:37 #: src/features/voice/engine/media_engine_facade/shared.ts:13 msgid "Claim your account to start or join 1:1 calls." -msgstr "" -"Registriere deinen Account, um 1:1-Anrufe zu starten oder daran teilzunehmen." +msgstr "Registriere deinen Account, um 1:1-Anrufe zu starten oder daran teilzunehmen." #. Friendly CTA shown on a valid, unclaimed gift code. Preserve {premiumProductName}; it is inserted by code. #: src/features/expressions/components/modals/GiftAcceptModal.tsx:40 @@ -7306,7 +7154,7 @@ msgstr "Alle aktiven Überschreibungen löschen" msgid "Clear all attachment mocks" msgstr "Alle Anhang-Mocks löschen" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Alle Token-Überschreibungen löschen" @@ -7342,7 +7190,7 @@ msgstr "Mock für diesen Anhang löschen" msgid "Clear nickname" msgstr "Anzeigename löschen" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Überschreibungen löschen" @@ -7426,7 +7274,7 @@ msgstr "Thema gelöscht." msgid "Clearing trusted domains..." msgstr "Vertrauenswürdige Domains werden gelöscht …" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Löscht schnelles CSS, importierte Designs, hochgeladene Assets und lokale Dateiverweise auf diesem Gerät." @@ -7446,9 +7294,7 @@ msgstr "Klicke auf den Text unten, um ihn direkt zu bearbeiten. Drücke Enter zu #. Label in the sounds. #: src/features/user/components/modals/tabs/notifications_tab/NotificationsTabSounds.tsx:44 msgid "Click the upload icon next to any sound to customize it with your own audio file. Max {customSoundMaxSizeLabel}." -msgstr "" -"Klicke auf das Upload-Symbol neben einem Sound, um ihn mit deiner eigenen " -"Audiodatei anzupassen. Max {customSoundMaxSizeLabel}." +msgstr "Klicke auf das Upload-Symbol neben einem Sound, um ihn mit deiner eigenen Audiodatei anzupassen. Max {customSoundMaxSizeLabel}." #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:18 @@ -7470,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Hier tippen, um dein Geschenk einzulösen!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Zum Kopieren tippen" @@ -7929,10 +7775,7 @@ msgstr "Communitys" #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:356 msgid "Communities listed in Discovery are required to scan all members. This setting cannot be changed while Discovery is enabled." -msgstr "" -"In der Entdecken-Funktion gelistete Communitys müssen alle Mitglieder " -"scannen. Diese Einstellung kann nicht geändert werden, solange die Entdecken-" -"Funktion aktiviert ist." +msgstr "In der Entdecken-Funktion gelistete Communitys müssen alle Mitglieder scannen. Diese Einstellung kann nicht geändert werden, solange die Entdecken-Funktion aktiviert ist." #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:315 msgid "Communities listed in Discovery require at least verified email. None cannot be selected while Discovery is enabled." @@ -7940,11 +7783,7 @@ msgstr "In der Entdecken-Funktion gelistete Communitys erfordern mindestens eine #: src/features/guild/components/modals/guild_tabs/guild_overview_tab/sections/DefaultNotificationsSection.tsx:46 msgid "Communities with over 250 people are forced onto the \"mentions only\" setting. Your original setting is preserved and will be restored if the community drops below 250 members." -msgstr "" -"Communitys mit über 250 Mitgliedern werden automatisch auf die Einstellung " -"\"Nur Erwähnungen\" gesetzt. Deine ursprüngliche Einstellung bleibt erhalten " -"und wird wiederhergestellt, wenn die Community weniger als 250 Mitglieder " -"hat." +msgstr "Communitys mit über 250 Mitgliedern werden automatisch auf die Einstellung \"Nur Erwähnungen\" gesetzt. Deine ursprüngliche Einstellung bleibt erhalten und wird wiederhergestellt, wenn die Community weniger als 250 Mitglieder hat." #. Lowercase source label for an inherited mature-content setting. #: src/features/channel/components/modals/channel_tabs/channel_overview_tab/MatureContentSection.tsx:25 @@ -8122,11 +7961,7 @@ msgstr "Community-Eigentümer-Krone" #: src/features/guild/components/modals/guild_tabs/guild_overview_tab/sections/MessageHistoryThresholdContent.tsx:103 msgid "Community owners and users with the <0>{administratorPermissionLabel} permission always have all permissions, including <1>{readMessageHistoryPermissionLabel}, so they aren't affected by this setting." -msgstr "" -"Community-Eigentümer und Nutzer mit der Berechtigung <0>" -"{administratorPermissionLabel} haben immer alle Berechtigungen, " -"einschließlich <1>{readMessageHistoryPermissionLabel}, daher sind sie " -"von dieser Einstellung nicht betroffen." +msgstr "Community-Eigentümer und Nutzer mit der Berechtigung <0>{administratorPermissionLabel} haben immer alle Berechtigungen, einschließlich <1>{readMessageHistoryPermissionLabel}, daher sind sie von dieser Einstellung nicht betroffen." #. Submenu label that groups privacy options for the community. #: src/features/ui/action_menu/items/BulkSettingsMenuItems.tsx:69 @@ -8238,8 +8073,7 @@ msgstr "Schließe die erforderliche Verifizierung ab, um {productName} weiterhin #. Label in the premium badge settings. Preserve {premiumProductName}; it is inserted by code. Keep the tone plain and specific. #: src/features/user/components/modals/tabs/my_profile_tab/PremiumBadgeSettings.tsx:16 msgid "Completely hide your {premiumProductName} badge from other users" -msgstr "" -"Dein {premiumProductName}-Abzeichen vollständig vor anderen Nutzern verbergen" +msgstr "Dein {premiumProductName}-Abzeichen vollständig vor anderen Nutzern verbergen" #: src/features/auth/components/pages/SsoCallbackPage.tsx:134 #: src/features/auth/flow/HandoffApprovalFlow.tsx:232 @@ -8332,8 +8166,7 @@ msgstr "Rechtschreibprüfung, Wörterbücher und persönliche Wörter konfigurie #. Settings search entry description. One-line summary of what the settings search entry controls. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:295 msgid "Configure translator providers used from selected text" -msgstr "" -"Konfiguriere die verwendeten Übersetzungsdienste für den ausgewählten Text" +msgstr "Konfiguriere die verwendeten Übersetzungsdienste für den ausgewählten Text" #. Settings section description. One-line summary of what the settings section controls. #: src/features/user/components/settings_utils/section_registry/VoiceVideoSections.ts:153 @@ -8413,9 +8246,7 @@ msgstr "Bestätigung" #. Settings search entry description. One-line summary of what the settings search entry controls. #: src/features/user/components/settings_utils/search_index/AppearanceIndex.ts:43 msgid "Confirmation or double-click for community voice joins" -msgstr "" -"Bestätigung oder Doppelklick zum Beitreten zu einem Sprachkanal in der " -"Community" +msgstr "Bestätigung oder Doppelklick zum Beitreten zu einem Sprachkanal in der Community" #: src/features/user/components/modals/tabs/keybinds_tab/CustomKeybindRow.tsx:153 msgid "Conflicts with {conflictLabel}" @@ -8711,15 +8542,12 @@ msgstr "Lege fest, wie HDR-Bilder auf HDR-fähigen Monitoren angezeigt werden." #. Settings section description. One-line summary of what the settings section controls. #: src/features/user/components/settings_utils/section_registry/PrivacySafetySections.ts:164 msgid "Control how mature or sensitive media is filtered in different contexts." -msgstr "" -"Lege fest, wie anstößige oder sensible Medien in verschiedenen Kontexten " -"gefiltert werden." +msgstr "Lege fest, wie anstößige oder sensible Medien in verschiedenen Kontexten gefiltert werden." #. Profile settings section description for premium badge privacy controls. #: src/features/user/components/modals/tabs/my_profile_tab/PremiumBadgeSettings.tsx:62 msgid "Control how your {premiumProductName} badge is displayed to others" -msgstr "" -"Lege fest wie dein {premiumProductName}-Abzeichen anderen angezeigt wird" +msgstr "Lege fest wie dein {premiumProductName}-Abzeichen anderen angezeigt wird" #. Settings search entry description. One-line summary of what the settings search entry controls. #: src/features/user/components/settings_utils/search_index/AccessibilityIndex.ts:337 @@ -8734,9 +8562,7 @@ msgstr "Sprachbefehle und Sprachausgabe für eingehende Inhalte steuern." #. Settings section description. One-line summary of what the settings section controls. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:414 msgid "Control unread indicator behavior for muted channels in channel lists." -msgstr "" -"Lege das Verhalten der Ungelesen-Anzeige für stummgeschaltete Kanäle in " -"Kanallisten fest." +msgstr "Lege das Verhalten der Ungelesen-Anzeige für stummgeschaltete Kanäle in Kanallisten fest." #. Settings section description. One-line summary of what the settings section controls. #: src/features/user/components/settings_utils/section_registry/AccessibilitySections.ts:115 @@ -8760,8 +8586,7 @@ msgstr "Wandelt eingehende Inhalte in Sprache um, unabhängig davon, ob sie von #. IAR modal: rule description. #: src/features/moderation/components/report_modal/IARModalCopy.ts:363 msgid "Coordinates raids, brigading, or harassment against people or communities." -msgstr "" -"Koordiniert Raids, Brigading oder Belästigung gegen Personen oder Communitys." +msgstr "Koordiniert Raids, Brigading oder Belästigung gegen Personen oder Communitys." #. Generic short status label confirming a value was copied to the clipboard. #: src/features/auth/flow/HandoffCodeDisplay.tsx:157 @@ -8975,7 +8800,7 @@ msgstr "Einladungs-URL kopieren" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Link kopieren" @@ -9138,9 +8963,7 @@ msgstr "Beitritt zu „{testersCommunityName}“ fehlgeschlagen" #. Description text in the channel and chat canary tester dm item. Preserve {testersCommunityName}; it is inserted by code. #: src/features/channel/components/direct_message/CanaryTesterDmItem.tsx:39 msgid "Could not join {testersCommunityName}. Try again later." -msgstr "" -"Der Community \"{testersCommunityName}\" konnte nicht beigetreten werden. " -"Bitte versuche es später noch einmal." +msgstr "Der Community \"{testersCommunityName}\" konnte nicht beigetreten werden. Bitte versuche es später noch einmal." #. Error shown when the setup wizard fails to load the instance configuration. #: src/features/app/components/setup/SelfHostedSetupWizardGate.tsx:91 @@ -9217,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Abrechnungszyklus konnte nicht geändert werden" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Konnte nicht auf Updates überprüfen" @@ -9244,8 +9067,7 @@ msgstr "DM konnte nicht geschlossen werden" #. Desktop handoff flow error shown when finalizing the sign-in fails after a valid code. #: src/features/auth/flow/auth_login_core/useDesktopHandoffFlow.ts:18 msgid "Couldn't complete sign-in. Try again." -msgstr "" -"Anmeldung konnte nicht abgeschlossen werden. Bitte versuche es noch einmal." +msgstr "Anmeldung konnte nicht abgeschlossen werden. Bitte versuche es noch einmal." #. Toast shown when joining a voice channel fails because the connection timed out or the transport dropped. #: src/features/voice/engine/media_engine_facade/shared.ts:35 @@ -9325,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Nachrichten konnten nicht gelöscht werden" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Desktop-Update konnte nicht heruntergeladen werden" @@ -9357,9 +9179,7 @@ msgstr "Freundschaftsanfrage konnte nicht ignoriert werden. Bitte versuche es er #. Generic body for the error modal when an emoji pack invite fails with an unrecognized error code. #: src/features/invite/commands/InviteCommands.tsx:107 msgid "Couldn't install this emoji pack. Try again later." -msgstr "" -"Dieses Emoji-Paket konnte nicht installiert werden. Bitte versuche es später " -"noch einmal." +msgstr "Dieses Emoji-Paket konnte nicht installiert werden. Bitte versuche es später noch einmal." #. Generic body for the error modal when a sticker pack invite fails with an unrecognized error code. #: src/features/invite/commands/InviteCommands.tsx:111 @@ -9456,8 +9276,7 @@ msgstr "Geschenk konnte nicht eingelöst werden" #. Generic gift redemption error modal body. Keep calm and concise. #: src/features/gift/commands/GiftCommands.tsx:48 msgid "Couldn't redeem this gift. Try again." -msgstr "" -"Dieses Geschenk konnte nicht eingelöst werden. Bitte versuche es noch einmal." +msgstr "Dieses Geschenk konnte nicht eingelöst werden. Bitte versuche es noch einmal." #. Title of the generic fallback error modal shown when a self-serve refund fails. #: src/features/app/components/dialogs/components/plutonium/SelfServeRefundSection.tsx:63 @@ -9492,8 +9311,7 @@ msgstr "Konnte nicht aus der Gruppe entfernt werden" #. Toast error shown when removing the current account from the device fails. #: src/features/auth/utils/AccountSwitcherModalUtils.tsx:37 msgid "Couldn't remove this account. Try again." -msgstr "" -"Dieser Account konnte nicht entfernt werden. Bitte versuche es noch einmal." +msgstr "Dieser Account konnte nicht entfernt werden. Bitte versuche es noch einmal." #. Body of the remove-friend error modal. #: src/features/relationship/components/alerts/RelationshipErrorModalUtils.tsx:80 @@ -9583,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Verbindung konnte nicht gestartet werden" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Desktop-Update konnte nicht gestartet werden" @@ -10419,17 +10237,11 @@ msgstr "Passt die Rahmen- und Bannerfarbe deines Profils an" #: src/features/user/components/modals/tabs/my_profile_tab/PerGuildPremiumUpsell.tsx:15 msgid "Customizing your avatar, banner, accent color, and bio for individual communities is not enabled on this instance. Community nickname and pronouns are available for everyone." -msgstr "" -"Das Anpassen deines Avatars, Banners, deiner Akzentfarbe und Biografie für " -"einzelne Communitys ist in dieser Instanz nicht aktiviert. Community-" -"Anzeigenamen und Pronomen sind für alle verfügbar." +msgstr "Das Anpassen deines Avatars, Banners, deiner Akzentfarbe und Biografie für einzelne Communitys ist in dieser Instanz nicht aktiviert. Community-Anzeigenamen und Pronomen sind für alle verfügbar." #: src/features/user/components/modals/tabs/my_profile_tab/PerGuildPremiumUpsell.tsx:24 msgid "Customizing your avatar, banner, accent color, and bio for individual communities requires {PREMIUM_PRODUCT_NAME}. Community nickname and pronouns are free for everyone." -msgstr "" -"Das Anpassen deines Avatars, Banners, deiner Akzentfarbe und Biografie für " -"einzelne Communitys erfordert {PREMIUM_PRODUCT_NAME}. Community-Anzeigenamen " -"und Pronomen sind für alle kostenlos." +msgstr "Das Anpassen deines Avatars, Banners, deiner Akzentfarbe und Biografie für einzelne Communitys erfordert {PREMIUM_PRODUCT_NAME}. Community-Anzeigenamen und Pronomen sind für alle kostenlos." #. Textarea right-click context menu item that cuts the selected text. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:44 @@ -10465,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Gefahren-Button wurde angeklickt." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10832,7 +10644,7 @@ msgstr "Standardmäßig auf Mobilgeräten deaktiviert, um Akku und Datenvolumen #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -11127,11 +10939,6 @@ msgstr "Nachrichten gelöscht." msgid "Deleted." msgstr "Gelöscht." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Feine und leichte Typografie" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11308,21 +11115,19 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Desktop-Update verfügbar. Wähle ein Linux-Paket." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Desktop-Update bereit" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Die Desktop-Version {version} wurde heruntergeladen. Starte {productName}, um die Installation abzuschließen." #. Desktop updater modal body. The version placeholder is the target app version; productName is the app name. #: src/features/updater/commands/UpdaterModalCommands.tsx:20 msgid "Desktop version {version} is available. Download the installer, then run it to update {productName}." -msgstr "" -"Die Desktop-Version {version} ist verfügbar. Lade das Installationsprogramm " -"herunter und führe es aus, um {productName} zu aktualisieren." +msgstr "Die Desktop-Version {version} ist verfügbar. Lade das Installationsprogramm herunter und führe es aus, um {productName} zu aktualisieren." #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings section label for desktop window behavior. @@ -11411,9 +11216,7 @@ msgstr "Entwicklertools" #. Body of the developer-tools info alert. Refers to the staff badge button in the channel header. #: src/features/messaging/components/markdown/renderers/LinkRenderer.tsx:126 msgid "Developer tools are available from the staff badge in the channel header." -msgstr "" -"Entwicklertools sind über das Mitarbeiter-Abzeichen in der Kanalüberschrift " -"verfügbar." +msgstr "Entwicklertools sind über das Mitarbeiter-Abzeichen in der Kanalüberschrift verfügbar." #: src/features/channel/components/channel_header_components/DeveloperToolsContextMenu.tsx:26 msgid "Developer tools unavailable" @@ -11782,17 +11585,11 @@ msgstr "Deaktivierter Wert" #. Explains what happens after disabling screen-share preview uploads. Refers to already-uploaded preview thumbnails. #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:241 msgid "Disabling previews stops future preview uploads. Existing preview images may remain visible until the stream ends or the preview refreshes." -msgstr "" -"Wenn du die Vorschau deaktivierst, werden keine neuen Vorschau-Uploads mehr " -"durchgeführt. Bereits hochgeladene Vorschaubilder können weiterhin sichtbar " -"sein, bis der Stream endet oder die Vorschau aktualisiert wird." +msgstr "Wenn du die Vorschau deaktivierst, werden keine neuen Vorschau-Uploads mehr durchgeführt. Bereits hochgeladene Vorschaubilder können weiterhin sichtbar sein, bis der Stream endet oder die Vorschau aktualisiert wird." #: src/features/auth/components/modals/AccountDisableModal.tsx:36 msgid "Disabling your account will sign you out of all sessions. You can re-enable your account at any time by signing in again." -msgstr "" -"Wenn du deinen Account deaktivierst, wirst du von allen Sitzungen " -"abgemeldet. Du kannst deinen Account jederzeit wieder aktivieren, indem du " -"dich erneut anmeldest." +msgstr "Wenn du deinen Account deaktivierst, wirst du von allen Sitzungen abgemeldet. Du kannst deinen Account jederzeit wieder aktivieren, indem du dich erneut anmeldest." #: src/features/guild/components/modals/guild_tabs/GuildAuditLogTabRenderers.tsx:666 msgid "Disallow @mention." @@ -11926,11 +11723,9 @@ msgstr "Erwähnung verwerfen" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12089,16 +11884,12 @@ msgstr "Nichts tun, ich möchte nicht beitreten" #. Confirmation prompt in the connections tab. #: src/features/user/components/modals/tabs/privacy_safety_tab/ConnectionsTab.tsx:40 msgid "Do you also want to allow bots from your existing communities to send you direct messages?" -msgstr "" -"Möchtest du auch Bots aus deinen bestehenden Communitys erlauben, dir " -"Direktnachrichten zu senden?" +msgstr "Möchtest du auch Bots aus deinen bestehenden Communitys erlauben, dir Direktnachrichten zu senden?" #. Confirmation prompt in the connections tab. #: src/features/user/components/modals/tabs/privacy_safety_tab/ConnectionsTab.tsx:44 msgid "Do you also want to allow direct messages from members of your existing communities?" -msgstr "" -"Möchtest du auch Direktnachrichten von Mitgliedern deiner bestehenden " -"Communitys zulassen?" +msgstr "Möchtest du auch Direktnachrichten von Mitgliedern deiner bestehenden Communitys zulassen?" #. Confirmation prompt in the connections tab. Keep the tone plain and specific. #: src/features/user/components/modals/tabs/privacy_safety_tab/ConnectionsTab.tsx:48 @@ -12108,9 +11899,7 @@ msgstr "Möchtest du auch Bots aus deinen bestehenden Communitys blockieren?" #. Confirmation prompt in the connections tab. Keep the tone plain and specific. #: src/features/user/components/modals/tabs/privacy_safety_tab/ConnectionsTab.tsx:52 msgid "Do you also want to block direct messages from members of your existing communities?" -msgstr "" -"Möchtest du auch Direktnachrichten von Mitgliedern deiner bestehenden " -"Communitys blockieren?" +msgstr "Möchtest du auch Direktnachrichten von Mitgliedern deiner bestehenden Communitys blockieren?" #. Label in the accessibility tab. #. Label in the my profile tab. @@ -12420,18 +12209,12 @@ msgstr "Ziehe, um deinen Avatar neu zu positionieren, und verwende das Mausrad o #. Description in the community banner crop modal. minimumWidth and minimumHeight are pixel dimensions for the recommended image size. #: src/features/expressions/components/modals/AssetCropModal.tsx:79 msgid "Drag to reposition your banner and use the scroll wheel or pinch to zoom. The recommended minimum size is {minimumWidth}×{minimumHeight} pixels (16:9)." -msgstr "" -"Ziehen, um dein Banner neu zu positionieren, und verwende das Mausrad oder " -"die Pinch-Geste zum Zoomen. Die empfohlene Mindestgröße beträgt " -"{minimumWidth}×{minimumHeight} Pixel (16:9)." +msgstr "Ziehen, um dein Banner neu zu positionieren, und verwende das Mausrad oder die Pinch-Geste zum Zoomen. Die empfohlene Mindestgröße beträgt {minimumWidth}×{minimumHeight} Pixel (16:9)." #. Description in the profile banner crop modal. minimumWidth and minimumHeight are pixel dimensions for the recommended image size. #: src/features/expressions/components/modals/AssetCropModal.tsx:85 msgid "Drag to reposition your banner and use the scroll wheel or pinch to zoom. The recommended minimum size is {minimumWidth}×{minimumHeight} pixels (17:6)." -msgstr "" -"Ziehe, um dein Banner neu zu positionieren, und verwende das Mausrad oder " -"die Pinch-Geste zum Zoomen. Die empfohlene Mindestgröße beträgt " -"{minimumWidth}×{minimumHeight} Pixel (17:6)." +msgstr "Ziehe, um dein Banner neu zu positionieren, und verwende das Mausrad oder die Pinch-Geste zum Zoomen. Die empfohlene Mindestgröße beträgt {minimumWidth}×{minimumHeight} Pixel (17:6)." #. Description in the chat embed background crop modal. minimumWidth and minimumHeight are pixel dimensions for the recommended image size. #: src/features/expressions/components/modals/AssetCropModal.tsx:97 @@ -12441,33 +12224,22 @@ msgstr "Ziehe, um den Hintergrund deiner Chat-Einbettung neu zu positionieren, u #. Description in the community icon crop modal. minimumWidth and minimumHeight are pixel dimensions for the recommended image size. #: src/features/expressions/components/modals/AssetCropModal.tsx:67 msgid "Drag to reposition your community icon and use the scroll wheel or pinch to zoom. The recommended minimum size is {minimumWidth}×{minimumHeight} pixels." -msgstr "" -"Ziehe, um das Community-Symbol neu zu positionieren, und verwende das " -"Mausrad oder die Pinch-Geste zum Zoomen. Die empfohlene Mindestgröße beträgt " -"{minimumWidth}×{minimumHeight} Pixel." +msgstr "Ziehe, um das Community-Symbol neu zu positionieren, und verwende das Mausrad oder die Pinch-Geste zum Zoomen. Die empfohlene Mindestgröße beträgt {minimumWidth}×{minimumHeight} Pixel." #. Description in the group icon crop modal. minimumWidth and minimumHeight are pixel dimensions for the recommended image size. #: src/features/expressions/components/modals/AssetCropModal.tsx:73 msgid "Drag to reposition your group icon and use the scroll wheel or pinch to zoom. The recommended minimum size is {minimumWidth}×{minimumHeight} pixels." -msgstr "" -"Ziehe, um deine Gruppen-Icon neu zu positionieren, und verwende das Mausrad " -"oder eine Pinch-Geste zum Zoomen. Die empfohlene Mindestgröße beträgt " -"{minimumWidth}×{minimumHeight} Pixel." +msgstr "Ziehe, um deine Gruppen-Icon neu zu positionieren, und verwende das Mausrad oder eine Pinch-Geste zum Zoomen. Die empfohlene Mindestgröße beträgt {minimumWidth}×{minimumHeight} Pixel." #. Description in the invite background crop modal. minimumWidth and minimumHeight are pixel dimensions for the recommended image size. #: src/features/expressions/components/modals/AssetCropModal.tsx:91 msgid "Drag to reposition your invite background and use the scroll wheel or pinch to zoom. The recommended minimum size is {minimumWidth}×{minimumHeight} pixels (16:9)." -msgstr "" -"Ziehe, um den Hintergrund deiner Einladung neu zu positionieren, und " -"verwende das Mausrad oder die Pinch-Geste zum Zoomen. Die empfohlene " -"Mindestgröße beträgt {minimumWidth}×{minimumHeight} Pixel (16:9)." +msgstr "Ziehe, um den Hintergrund deiner Einladung neu zu positionieren, und verwende das Mausrad oder die Pinch-Geste zum Zoomen. Die empfohlene Mindestgröße beträgt {minimumWidth}×{minimumHeight} Pixel (16:9)." #. Description text in the theme studio assets section. #: src/features/theme_studio/sections/AssetsSection.tsx:47 msgid "Drop images, fonts, or other files here to use them inside your custom CSS." -msgstr "" -"Ziehe Bilder, Schriftarten oder andere Dateien hierher, um sie in deinem " -"benutzerdefinierten CSS zu verwenden." +msgstr "Ziehe Bilder, Schriftarten oder andere Dateien hierher, um sie in deinem benutzerdefinierten CSS zu verwenden." #. Keyboard shortcut action label shown in the shortcuts list and keybind editor. Keep short, sentence case. #: src/features/input/state/input_keybind/shared.ts:133 @@ -12501,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Aufgrund von Gesetzen zu nicht jugendfreien Inhalten in {regionName} ist dieses Medium in deiner aktuellen Region nicht verfügbar." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Duplizieren" @@ -12786,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Profilbeschreibung bearbeiten" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Bearbeitbarer Text" @@ -12797,9 +12569,7 @@ msgstr "Bearbeitbarer Text:" #. Body of the alt-text update error modal when message editing is temporarily disabled server-side. #: src/features/messaging/components/alerts/AltTextUpdateFailedModal.tsx:22 msgid "Editing is temporarily unavailable. Please try again later." -msgstr "" -"Bearbeiten ist vorübergehend nicht verfügbar. Bitte versuche es später noch " -"einmal." +msgstr "Bearbeiten ist vorübergehend nicht verfügbar. Bitte versuche es später noch einmal." #: src/features/channel/components/ChannelEditBar.tsx:40 msgid "Editing message" @@ -12818,9 +12588,7 @@ msgstr "Bildung" #. Inline notice in the camera preview modal when the native effects preview cannot start and the raw camera feed is shown instead. #: src/features/voice/components/modals/CameraPreviewModal.tsx:84 msgid "Effects preview unavailable — showing unprocessed camera" -msgstr "" -"Effektvorschau nicht verfügbar – es wird die unbearbeitete Kameraansicht " -"angezeigt" +msgstr "Effektvorschau nicht verfügbar – es wird die unbearbeitete Kameraansicht angezeigt" #: src/features/app/components/dialogs/components/plutonium/SelfServeRefundSection.tsx:184 msgid "Eligible for a refund until {windowEndsOn}." @@ -12958,9 +12726,7 @@ msgstr "Einbettungs-Splash" #. Error message in the guild embed splash upload field. #: src/features/guild/components/modals/guild_tabs/guild_overview_tab/fields/GuildEmbedSplashUploadField.tsx:26 msgid "Embed splash images cannot be animated. Use a static image." -msgstr "" -"Community-Einladungsbilder können nicht animiert werden. Verwende ein " -"statisches Bild." +msgstr "Community-Einladungsbilder können nicht animiert werden. Verwende ein statisches Bild." #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/ChatSettingsSections.ts:26 @@ -13203,7 +12969,7 @@ msgstr "Anhangablauf aktivieren" msgid "Enable audio" msgstr "Audio aktivieren" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Beta-Funktion aktivieren" @@ -13240,7 +13006,7 @@ msgstr "Entwicklermodus aktivieren" msgid "Enable email delivery" msgstr "E-Mail-Zustellung aktivieren" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Zusätzliche Option aktivieren" @@ -13565,9 +13331,7 @@ msgstr "Gib einen Community-Namen zwischen 1 und 100 Zeichen ein." #. Gift redemption form description. #: src/features/user/components/modals/tabs/GiftInventoryTab.tsx:86 msgid "Enter a gift code to redeem {premiumProductName} for your account." -msgstr "" -"Gib einen Geschenkcode ein, um {premiumProductName} für deinen Account " -"einzulösen." +msgstr "Gib einen Geschenkcode ein, um {premiumProductName} für deinen Account einzulösen." #: src/features/moderation/components/modals/TimeoutMemberModal.tsx:221 msgid "Enter a numeric value and choose a unit." @@ -13674,16 +13438,12 @@ msgstr "Text eingeben" #. MFA code entry instructions. digitCount is the expected authenticator-code length. #: src/features/auth/flow/MfaScreen.tsx:30 msgid "Enter the {digitCount}-digit code from your authenticator app or a backup code." -msgstr "" -"Gib den {digitCount}-stelligen Code aus deiner Authenticator-App oder einen " -"deiner Backup-Codes ein." +msgstr "Gib den {digitCount}-stelligen Code aus deiner Authenticator-App oder einen deiner Backup-Codes ein." #. Helper text for the TOTP removal code field. digitCount is the expected authenticator-code length. #: src/features/auth/components/modals/MfaTotpDisableModal.tsx:34 msgid "Enter the {digitCount}-digit code from your authenticator app or one of your backup codes." -msgstr "" -"Gib den {digitCount}-stelligen Code aus deiner Authentifikator-App oder " -"einen deiner Backup-Codes ein." +msgstr "Gib den {digitCount}-stelligen Code aus deiner Authentifikator-App oder einen deiner Backup-Codes ein." #. Helper text for the TOTP setup code field. digitCount is the expected authenticator-code length. #: src/features/auth/components/modals/MfaTotpEnableModal.tsx:44 @@ -13868,7 +13628,7 @@ msgstr "Fehler" msgid "error code {code}" msgstr "Fehlercode {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Fehler beim Rendern des Inhalts" @@ -14198,9 +13958,7 @@ msgstr "Exportieren" #. Description for the Everything export option. #: src/features/user/components/modals/tabs/privacy_safety_tab/data_request_modal/DataRequestModal.tsx:58 msgid "Export every message you have ever sent, plus all of your account settings, memberships, and metadata." -msgstr "" -"Exportiert jede Nachricht, die du jemals gesendet hast, sowie alle deine " -"Accounteinstellungen, Mitgliedschaften und Metadaten." +msgstr "Exportiert jede Nachricht, die du jemals gesendet hast, sowie alle deine Accounteinstellungen, Mitgliedschaften und Metadaten." #. Short label in the channel and chat gif picker header. Downloads favorite GIF URLs as a text file. #: src/features/channel/components/pickers/gif/GifPickerHeader.tsx:35 @@ -14305,11 +14063,6 @@ msgstr "Externe Links können gefährlich sein. Sei vorsichtig." msgid "Extra large" msgstr "Extragroß" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Extraleicht" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14379,14 +14132,12 @@ msgstr "Avatar konnte nicht zugeschnitten werden. Versuche es noch einmal." #. Error toast shown when cropping a background fails. #: src/features/expressions/components/modals/AssetCropModal.tsx:29 msgid "Failed to crop background. Try again." -msgstr "" -"Hintergrund konnte nicht zugeschnitten werden. Bitte versuche es noch einmal." +msgstr "Hintergrund konnte nicht zugeschnitten werden. Bitte versuche es noch einmal." #. Error toast shown when cropping a banner fails. #: src/features/expressions/components/modals/AssetCropModal.tsx:25 msgid "Failed to crop banner. Try again." -msgstr "" -"Banner konnte nicht zugeschnitten werden. Bitte versuche es noch einmal." +msgstr "Banner konnte nicht zugeschnitten werden. Bitte versuche es noch einmal." #. Error toast shown when cropping a community icon fails. #: src/features/expressions/components/modals/AssetCropModal.tsx:21 @@ -14406,9 +14157,7 @@ msgstr "Kamera konnte nicht aktiviert werden." #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/ToolsMenu.tsx:41 msgid "Failed to forget authorized IPs. Try again." -msgstr "" -"Autorisierte IPs konnten nicht vergessen werden. Bitte versuche es noch " -"einmal." +msgstr "Autorisierte IPs konnten nicht vergessen werden. Bitte versuche es noch einmal." #. Error message in the message forward failed modal. #: src/features/messaging/components/alerts/MessageForwardFailedModal.tsx:8 @@ -14440,8 +14189,7 @@ msgstr "Autorisierte Apps konnten nicht geladen werden" #: src/features/guild/components/modals/guild_tabs/GuildEmojiTab.tsx:443 msgid "Failed to load emojis. Try again later." -msgstr "" -"Emojis konnten nicht geladen werden. Bitte versuche es später noch einmal." +msgstr "Emojis konnten nicht geladen werden. Bitte versuche es später noch einmal." #. Error message in the gift inventory tab. #: src/features/user/components/modals/tabs/GiftInventoryTab.tsx:102 @@ -14520,15 +14268,12 @@ msgstr "Emojis konnten nicht vorbereitet werden" #. Toast error shown by image-cropping uploaders (avatar, banner, community icon) when the cropped image cannot be processed. #: src/features/i18n/utils/CommonMessageDescriptors.ts:405 msgid "Failed to process the cropped image. Try again." -msgstr "" -"Fehler beim Verarbeiten des zugeschnittenen Bildes. Bitte versuche es noch " -"einmal." +msgstr "Fehler beim Verarbeiten des zugeschnittenen Bildes. Bitte versuche es noch einmal." #. Error message in the background image gallery modal. Keep the tone plain and specific. #: src/features/theme/components/modals/BackgroundImageGalleryModal.tsx:115 msgid "Failed to remove background image. Try again." -msgstr "" -"Hintergrundbild konnte nicht entfernt werden. Bitte versuche es noch einmal." +msgstr "Hintergrundbild konnte nicht entfernt werden. Bitte versuche es noch einmal." #. Error message in the use sound settings. Keep the tone plain and specific. #: src/features/user/components/modals/tabs/notifications_tab/useSoundSettings.ts:35 @@ -14537,9 +14282,7 @@ msgstr "Benutzerdefinierter Ton konnte nicht entfernt werden" #: src/features/moderation/components/modals/RemoveTimeoutModal.tsx:40 msgid "Failed to remove timeout. Try again." -msgstr "" -"Zeitüberschreitung konnte nicht aufgehoben werden. Bitte versuche es noch " -"einmal." +msgstr "Zeitüberschreitung konnte nicht aufgehoben werden. Bitte versuche es noch einmal." #. Error message in the guild vanity url tab. #: src/features/guild/components/modals/guild_tabs/GuildVanityURLTab.tsx:32 @@ -14554,9 +14297,7 @@ msgstr "Code konnte nicht erneut gesendet werden. Versuche es noch einmal." #. Toast error shown when resending the verification code fails. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:150 msgid "Failed to resend verification code. Try again later." -msgstr "" -"Verifizierungscode konnte nicht erneut gesendet werden. Bitte versuche es " -"später noch einmal." +msgstr "Verifizierungscode konnte nicht erneut gesendet werden. Bitte versuche es später noch einmal." #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/ToolsMenu.tsx:74 @@ -14586,9 +14327,7 @@ msgstr "Meldung konnte nicht gesendet werden. Versuche es noch einmal." #. Toast error shown when sending the verification email fails. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:142 msgid "Failed to send verification email. Try again later." -msgstr "" -"Verifizierungs-E-Mail konnte nicht gesendet werden. Bitte versuche es später " -"noch einmal." +msgstr "Verifizierungs-E-Mail konnte nicht gesendet werden. Bitte versuche es später noch einmal." #: src/features/app/components/BootstrapErrorScreen.tsx:36 msgid "Failed to start" @@ -14597,9 +14336,7 @@ msgstr "Starten fehlgeschlagen" #. Error text in the camera preview modal when the camera stream cannot be opened. Prompts user to check OS / browser permissions. #: src/features/voice/components/modals/CameraPreviewModal.tsx:58 msgid "Failed to start camera preview. Check your camera permissions." -msgstr "" -"Kameravorschau konnte nicht gestartet werden. Überprüfe deine " -"Kameraberechtigungen." +msgstr "Kameravorschau konnte nicht gestartet werden. Überprüfe deine Kameraberechtigungen." #. Login flow error shown when the single sign-on redirect cannot be started. #: src/features/auth/flow/AuthSsoPanel.tsx:14 @@ -14662,9 +14399,7 @@ msgstr "Webhooks konnten nicht aktualisiert werden" #. Error message in the background image gallery modal. #: src/features/theme/components/modals/BackgroundImageGalleryModal.tsx:97 msgid "Failed to upload background image. Try again." -msgstr "" -"Hintergrundbild konnte nicht hochgeladen werden. Bitte versuche es noch " -"einmal." +msgstr "Hintergrundbild konnte nicht hochgeladen werden. Bitte versuche es noch einmal." #. Error message in the use sound settings. #: src/features/user/components/modals/tabs/notifications_tab/useSoundSettings.ts:27 @@ -15019,7 +14754,7 @@ msgstr "Erster Klick" msgid "First click pass-through when unfocused" msgstr "Erster Klick geht durch, wenn nicht im Fokus" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Erste Option" @@ -15145,10 +14880,6 @@ msgstr "Master folgen • {effectiveValue}%" msgid "Font" msgstr "Schriftart" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Schriftstärken" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15216,9 +14947,7 @@ msgstr "Für mich" #. Required-action modal body for starting an inbound phone verification challenge. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:318 msgid "For this check, you send us a text message instead of receiving one from us." -msgstr "" -"Sende uns für diese Überprüfung eine Textnachricht, anstatt eine von uns zu " -"erhalten." +msgstr "Sende uns für diese Überprüfung eine Textnachricht, anstatt eine von uns zu erhalten." #: src/features/auth/components/modals/SudoVerificationModal.tsx:168 msgid "For your security, please confirm it's you to continue." @@ -15594,7 +15323,7 @@ msgid "From {start}" msgstr "Ab {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "aus <0>{0}" @@ -15690,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Allgemein" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Generiere einen teilbaren Link oder kopiere dein kombiniertes benutzerdefiniertes CSS." @@ -15711,11 +15440,6 @@ msgstr "Neuen Code generieren" msgid "Generating code…" msgstr "Code wird generiert …" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Sanfte und luftige Textanzeige" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -15765,11 +15489,7 @@ msgstr "Neuen Code anfordern" #. Label in the notifications. #: src/features/user/components/modals/tabs/notifications_tab/Notifications.tsx:43 msgid "Get notified when you receive messages. You may need to allow notifications for {productName} in your device settings. For per-channel/per-community controls, open notification settings from a community's menu." -msgstr "" -"Benachrichtigungen erhalten, wenn du Nachrichten empfängst. Möglicherweise " -"musst du Benachrichtigungen für {productName} in deinen Geräteeinstellungen " -"zulassen. Um Benachrichtigungen pro Kanal/Community zu steuern, öffne die " -"Benachrichtigungseinstellungen über das Menü einer Community." +msgstr "Benachrichtigungen erhalten, wenn du Nachrichten empfängst. Möglicherweise musst du Benachrichtigungen für {productName} in deinen Geräteeinstellungen zulassen. Um Benachrichtigungen pro Kanal/Community zu steuern, öffne die Benachrichtigungseinstellungen über das Menü einer Community." #. Label in the notifications. #: src/features/user/components/modals/tabs/notifications_tab/Notifications.tsx:48 @@ -16415,16 +16135,11 @@ msgstr "Hardwarebeschleunigung" #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:281 msgid "Hardware acceleration can cause rendering glitches with transparent windows. Try --disable-gpu if you see flicker or smearing." -msgstr "" -"Hardwarebeschleunigung kann bei transparenten Fenstern zu " -"Darstellungsfehlern führen. Bitte versuche es mit --disable-gpu, wenn du " -"Flackern oder Schlieren siehst." +msgstr "Hardwarebeschleunigung kann bei transparenten Fenstern zu Darstellungsfehlern führen. Bitte versuche es mit --disable-gpu, wenn du Flackern oder Schlieren siehst." #: src/features/user/components/modals/tabs/components/CodecSelectorSection.tsx:132 msgid "Hardware acceleration is off, so codecs will encode on your CPU. <0>Turn it back on in {advancedSettingsLabel}." -msgstr "" -"Hardwarebeschleunigung ist deaktiviert, daher werden Codecs auf deiner CPU " -"codiert. <0>Aktiviere sie wieder in {advancedSettingsLabel}." +msgstr "Hardwarebeschleunigung ist deaktiviert, daher werden Codecs auf deiner CPU codiert. <0>Aktiviere sie wieder in {advancedSettingsLabel}." #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:152 @@ -16506,11 +16221,6 @@ msgstr "Er" msgid "Header" msgstr "Kopfzeile" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Überschrift" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -16580,9 +16290,7 @@ msgstr "Hex-Wert für {tokenLabel}" #. Nagbar warning shown to unclaimed-account users. displayName is the current user display name. #: src/features/app/components/layout/app_layout/nagbars/UnclaimedAccountNagbar.tsx:14 msgid "Hey {displayName}, claim your account to prevent losing access." -msgstr "" -"Hallo {displayName}, beanspruche deinen Account, um den Verlust des Zugriffs " -"zu verhindern." +msgstr "Hallo {displayName}, beanspruche deinen Account, um den Verlust des Zugriffs zu verhindern." #. Nagbar warning shown when the current user still needs to verify email. displayName is the user display name. #: src/features/app/components/layout/app_layout/nagbars/EmailVerificationNagbar.tsx:16 @@ -17095,17 +16803,12 @@ msgstr "Wenn jemand in unmittelbarer Gefahr ist, kontaktiere die örtlichen Rett #. Console warning about self-XSS scams. productName is the app name. Keep the warning plain and serious. #: src/features/devtools/utils/SelfXssNotice.ts:20 msgid "If someone told you to paste something here, it is a scam that can hand them your {productName} account." -msgstr "" -"Wenn jemand dir gesagt hat, du sollst hier etwas einfügen, ist das eine " -"Betrugsmasche, mit der sie Zugriff auf dein {productName}-Account erhalten " -"könnten." +msgstr "Wenn jemand dir gesagt hat, du sollst hier etwas einfügen, ist das eine Betrugsmasche, mit der sie Zugriff auf dein {productName}-Account erhalten könnten." #. IAR modal: inline safety note shown for child-safety reports. #: src/features/moderation/components/report_modal/IARModalCopy.ts:391 msgid "If this involves CSAM or exploitation of a minor, send it now and don't reshare the material." -msgstr "" -"Wenn es um CSAM oder die Ausbeutung Minderjähriger geht, sende es jetzt und " -"teile das Material nicht erneut." +msgstr "Wenn es um CSAM oder die Ausbeutung Minderjähriger geht, sende es jetzt und teile das Material nicht erneut." #. IAR modal: inline safety note for violence reports. #: src/features/moderation/components/report_modal/IARModalCopy.ts:399 @@ -17373,9 +17076,7 @@ msgstr "Vorlage von {theOtherPlatform} importieren" #. Description text in the theme studio library section. #: src/features/theme_studio/sections/LibrarySection.tsx:97 msgid "Import a .css file to get started, or paste your own CSS in Quick CSS." -msgstr "" -"Importiere eine .css-Datei, um zu beginnen, oder füge dein eigenes CSS in " -"\"Schnelles CSS\" ein." +msgstr "Importiere eine .css-Datei, um zu beginnen, oder füge dein eigenes CSS in \"Schnelles CSS\" ein." #. Completion text in the favorite GIF import modal. importedCount is the number added; skippedCount is the number skipped. #: src/features/channel/components/pickers/gif/ImportFavoriteGifsModal.tsx:27 @@ -17677,7 +17378,7 @@ msgstr "Kanal wird indexiert" msgid "Indicator" msgstr "Anzeige" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indikatoren & Status" @@ -17805,7 +17506,7 @@ msgstr "Eingabezustände" msgid "Input volume" msgstr "Eingabelautstärke" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Eingabe & Text" @@ -17821,9 +17522,7 @@ msgstr "Emoji einfügen" #. CTA card body in the screen-share picker promoting the desktop app. {productName} is Fluxer. #: src/features/voice/components/modals/screen_share_picker_modal/DesktopDownloadCta.tsx:16 msgid "Install {productName} for the full source picker and smoother screen-sharing controls." -msgstr "" -"Installiere {productName} für die vollständige Quellenauswahl und eine " -"reibungslosere Bildschirmfreigabe." +msgstr "Installiere {productName} für die vollständige Quellenauswahl und eine reibungslosere Bildschirmfreigabe." #. Button label on an emoji pack invite embed that installs the pack. #. Short label in the invite accept modal. Keep it concise. @@ -17840,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Sticker-Paket installieren" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Installiert" @@ -17964,9 +17663,7 @@ msgstr "Ungültiges Bild" #. Browser login handoff modal form validation error for an unparseable instance URL. Example domain and URL are interpolated. #: src/features/auth/flow/BrowserLoginHandoffModal.tsx:27 msgid "Invalid instance URL. Try something like \"{exampleDomain}\" or \"{exampleUrl}\"." -msgstr "" -"Ungültige Instanz-URL. Versuche es mit etwas wie \"{exampleDomain}\" oder \"" -"{exampleUrl}\"." +msgstr "Ungültige Instanz-URL. Versuche es mit etwas wie \"{exampleDomain}\" oder \"{exampleUrl}\"." #. Validation error in the paste-template-JSON form. "JSON" is a protocol token and must not be translated. #: src/features/guild/components/modals/add_guild_modal/shared.ts:132 @@ -18346,15 +18043,6 @@ msgstr "Gerade ist es ruhig hier …" msgid "Italian" msgstr "Italienisch" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Kursiv" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Demonstration des Kursivstils" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18636,9 +18324,7 @@ msgstr "Alle Nachrichten behalten" #. Settings search entry description. One-line summary of what the settings search entry controls. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:66 msgid "Keep animations, GIFs, hover, and tooltips running unfocused" -msgstr "" -"Animationen, GIFs, Hover-Effekte und Tooltips auch im Hintergrund " -"weiterlaufen lassen" +msgstr "Animationen, GIFs, Hover-Effekte und Tooltips auch im Hintergrund weiterlaufen lassen" #. Description for the mirror premium model. #: src/features/app/components/setup/SetupWizardSteps.tsx:314 @@ -18786,10 +18472,6 @@ msgstr "Sprache" msgid "Language settings" msgstr "Spracheinstellungen" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Sprachunterstützung" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18798,9 +18480,7 @@ msgid "Languages" msgstr "Sprachen" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Groß" @@ -19033,9 +18713,7 @@ msgstr "Bildschirmleser neue Nachrichten ankündigen lassen, sobald sie im offen #. Label in the accessibility tab. #: src/features/user/components/modals/tabs/AccessibilityTab.tsx:47 msgid "Let screen readers announce new messages as they arrive in the open channel. Notification sounds are unaffected." -msgstr "" -"Bildschirmleser neue Nachrichten ankündigen lassen, sobald sie im geöffneten " -"Kanal eingehen. Benachrichtigungstöne sind davon nicht betroffen." +msgstr "Bildschirmleser neue Nachrichten ankündigen lassen, sobald sie im geöffneten Kanal eingehen. Benachrichtigungstöne sind davon nicht betroffen." #. Helper text for the "Off" explicit content filter option in the community moderation settings tab. Means leave moderation to members. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:102 @@ -19078,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Lebenslang {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Hell" @@ -19164,10 +18840,7 @@ msgstr "Link abgelaufen. Deine IP-Adresse wurde wahrscheinlich bereits autorisie #: src/features/user/components/modals/tabs/LinkedAccountsTab.tsx:362 msgid "Link external accounts and domains to your {PRODUCT_NAME} profile. Verified connections will be displayed on your profile for others to see." -msgstr "" -"Verknüpfe externe Accounts und Domains mit deinem {PRODUCT_NAME}-Profil. " -"Verifizierte Verbindungen werden in deinem Profil angezeigt, damit andere " -"sie sehen können." +msgstr "Verknüpfe externe Accounts und Domains mit deinem {PRODUCT_NAME}-Profil. Verifizierte Verbindungen werden in deinem Profil angezeigt, damit andere sie sehen können." #. Settings search entry description. One-line summary of what the settings search entry controls. #: src/features/user/components/settings_utils/search_index/LinkedAccountsIndex.ts:44 @@ -19229,9 +18902,7 @@ msgstr "Link-Warnungen" #: src/features/user/components/modals/tabs/LinkedAccountsTab.tsx:405 msgid "Link your {BLUESKY_PROVIDER_NAME} account or verify domain ownership to display them on your profile." -msgstr "" -"Verknüpfe dein {BLUESKY_PROVIDER_NAME}-Account oder verifiziere den Besitz " -"der Domain, um sie in deinem Profil anzuzeigen." +msgstr "Verknüpfe dein {BLUESKY_PROVIDER_NAME}-Account oder verifiziere den Besitz der Domain, um sie in deinem Profil anzuzeigen." #. Hint shown beside has:. Lists all supported content categories in lowercase. #: src/features/search/utils/SearchUtils.ts:105 @@ -19273,15 +18944,13 @@ msgid "Linux default" msgstr "Linux Standard" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux-Paket" #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:330 msgid "List your community in Discovery so others can find and join it." -msgstr "" -"Füge deine Community zu Discovery hinzu, damit andere sie finden und ihr " -"beitreten können." +msgstr "Füge deine Community zu Discovery hinzu, damit andere sie finden und ihr beitreten können." #. Short label in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:33 @@ -19450,9 +19119,7 @@ msgstr "Lokalisierter BRL-Abonnement-Checkout" #. Error modal body shown when the localized card pre-approval session cannot be started. #: src/features/app/components/dialogs/components/plutonium/hooks/useCheckoutActions.tsx:192 msgid "Localized card verification is not available right now. Try again later." -msgstr "" -"Die lokalisierte Kartenverifizierung ist derzeit nicht verfügbar. Bitte " -"versuche es später noch einmal." +msgstr "Die lokalisierte Kartenverifizierung ist derzeit nicht verfügbar. Bitte versuche es später noch einmal." #. Plutonium gift checkout panel title for buyers in India who selected localized INR pricing. #: src/features/app/components/dialogs/components/plutonium/PricingContextPanel.tsx:35 @@ -19543,9 +19210,7 @@ msgstr "Es sieht so aus, als würdest du {0} verwenden. Wenn du die Verarbeitung #: src/features/auth/flow/IpAuthorizationScreen.tsx:122 msgid "Lost connection while waiting for authorization. Try again." -msgstr "" -"Verbindung unterbrochen, während auf Autorisierung gewartet wurde. Bitte " -"versuche es noch einmal." +msgstr "Verbindung unterbrochen, während auf Autorisierung gewartet wurde. Bitte versuche es noch einmal." #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/VoiceVideoSections.ts:57 @@ -19627,9 +19292,7 @@ msgstr "Wartungsarbeiten sind für {localizedTime} geplant. Voraussichtliche Dau #. Confirm dialog body before transferring ownership of a group DM. #: src/features/ui/action_menu/GroupDMContextMenu.tsx:81 msgid "Make {userName} the group owner? You'll lose owner privileges." -msgstr "" -"{userName} zum Gruppeneigentümer machen? Du verlierst dann die " -"Eigentümerberechtigungen." +msgstr "{userName} zum Gruppeneigentümer machen? Du verlierst dann die Eigentümerberechtigungen." #. Group DM action that transfers ownership of the group to the selected member. #. Group DM action that transfers ownership of the group to the selected member. @@ -19882,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Obersten Posteingangskanal als gelesen markieren" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19930,8 +19593,7 @@ msgstr "Namen, private Details, Einladungen, Töne und Benachrichtigungen beim T #. Label for a streaming privacy settings toggle. #: src/features/user/components/modals/tabs/appearance_tab/StreamerModeTab.tsx:27 msgid "Mask private account details like email, linked accounts, and notes" -msgstr "" -"Private Accountdaten wie E-Mail, verknüpfte Accounts und Notizen verstecken" +msgstr "Private Accountdaten wie E-Mail, verknüpfte Accounts und Notizen verstecken" #. Description for the main streaming privacy settings toggle. #: src/features/user/components/modals/tabs/appearance_tab/StreamerModeTab.tsx:15 @@ -20215,10 +19877,8 @@ msgstr "Mediengröße" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Mittel" @@ -21090,7 +20750,7 @@ msgstr "Mehr" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Weitere Aktionen" @@ -21263,10 +20923,6 @@ msgstr "Multi-Faktor" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Mehrsprachige Inhalte" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21821,9 +21477,7 @@ msgstr "NEW" #. Description text in the new account guild limit modal. #: src/features/guild/components/alerts/NewAccountGuildLimitModal.tsx:12 msgid "New accounts can join up to 10 communities in the first 24 hours. Try again later." -msgstr "" -"Neue Accounts können in den ersten 24 Stunden bis zu 10 Communitys " -"beitreten. Versuche es später noch einmal." +msgstr "Neue Accounts können in den ersten 24 Stunden bis zu 10 Communitys beitreten. Versuche es später noch einmal." #. Body text in the authentication new device monitoring. Keep the tone plain and specific. #: src/features/auth/state/NewDeviceMonitoring.tsx:23 @@ -21844,17 +21498,11 @@ msgstr "Nur neue Communitys" #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedChatControls.tsx:635 msgid "New communities you join will automatically have muted channels hidden. Would you also like to apply this setting to all your existing communities?" -msgstr "" -"Bei neuen Communitys denen du beitrittst, werden stummgeschaltete Kanäle " -"automatisch ausgeblendet. Möchtest du diese Einstellung auch auf alle deine " -"bestehenden Communitys anwenden?" +msgstr "Bei neuen Communitys denen du beitrittst, werden stummgeschaltete Kanäle automatisch ausgeblendet. Möchtest du diese Einstellung auch auf alle deine bestehenden Communitys anwenden?" #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedChatControls.tsx:666 msgid "New communities you join will no longer have muted channels hidden automatically. Would you also like to show muted channels in all your existing communities?" -msgstr "" -"Neue Communitys denen du beitrittst, blenden stummgeschaltete Kanäle nicht " -"mehr automatisch aus. Möchtest du stummgeschaltete Kanäle auch in all deinen " -"bestehenden Communitys anzeigen?" +msgstr "Neue Communitys denen du beitrittst, blenden stummgeschaltete Kanäle nicht mehr automatisch aus. Möchtest du stummgeschaltete Kanäle auch in all deinen bestehenden Communitys anzeigen?" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:475 @@ -21928,13 +21576,10 @@ msgstr "Neue Einstellungen bleiben hier für 30 Tage sichtbar." #. Invite page subtext shown during raid protection. Explains that account actions still work, but joining is paused. #: src/features/invite/utils/InviteMessageDescriptors.ts:41 msgid "New users can't join right now. You can still create an account or sign in, then try this link again later." -msgstr "" -"Neue Benutzer können im Moment nicht beitreten. Du kannst aber trotzdem " -"einen Account erstellen oder dich anmelden und es später noch einmal mit " -"diesem Link versuchen." +msgstr "Neue Benutzer können im Moment nicht beitreten. Du kannst aber trotzdem einen Account erstellen oder dich anmelden und es später noch einmal mit diesem Link versuchen." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Neue Version" @@ -22151,9 +21796,7 @@ msgstr "Keine Communitys oder Gruppen-DMs für diesen Bot verfügbar." #. OAuth bot invite empty state shown when no communities can both invite the bot and grant the requested bot permissions and no group DMs are available. #: src/features/auth/components/pages/oauth_authorize_page/OAuthCommunityStep.tsx:35 msgid "No communities where you can grant the requested permissions or group DMs are available." -msgstr "" -"Keine Communitys, in denen du die angeforderten Berechtigungen erteilen " -"kannst, oder Gruppen-DMs verfügbar." +msgstr "Keine Communitys, in denen du die angeforderten Berechtigungen erteilen kannst, oder Gruppen-DMs verfügbar." #: src/features/guild/components/modals/guild_tabs/guild_overview_tab/fields/GuildBannerUploadField.tsx:167 msgid "No community banner" @@ -22204,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Keine Emojis gefunden, die deiner Suche entsprechen." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Keine Emojis passen zur Suche" @@ -22646,11 +22289,6 @@ msgstr "Keine" msgid "None (normal behavior)" msgstr "Keine (normales Verhalten)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normal" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22921,15 +22559,11 @@ msgstr "Nach dem Löschen werden die Anwendung und ihre Anmeldeinformationen dau #: src/features/auth/components/modals/AccountDeleteModal.tsx:56 msgid "Once deletion is processed, you cannot recover access to your account" -msgstr "" -"Sobald die Löschung verarbeitet wurde, kannst du den Zugriff auf deinen " -"Account nicht wiederherstellen" +msgstr "Sobald die Löschung verarbeitet wurde, kannst du den Zugriff auf deinen Account nicht wiederherstellen" #: src/features/theme/components/pages/ThemeRegisterPage.tsx:130 msgid "Once your account is created, we'll take you back to the theme so you can apply it." -msgstr "" -"Sobald dein Account erstellt wurde, leiten wir dich zurück zum Theme, damit " -"du es anwenden kannst." +msgstr "Sobald dein Account erstellt wurde, leiten wir dich zurück zum Theme, damit du es anwenden kannst." #. Error message in the message send failed modal. #: src/features/messaging/components/alerts/MessageSendFailedModal.tsx:12 @@ -23001,9 +22635,7 @@ msgstr "Nur Standardlautsprecher" #. Description for the inaccessible-only scope option. #: src/features/user/components/modals/tabs/privacy_safety_tab/data_request_modal/DataRequestModal.tsx:83 msgid "Only delete messages from communities and group DMs you have left or been removed from." -msgstr "" -"Nur Nachrichten aus Communitys und Gruppen-DMs löschen, die du verlassen " -"hast oder aus denen du entfernt wurdest." +msgstr "Nur Nachrichten aus Communitys und Gruppen-DMs löschen, die du verlassen hast oder aus denen du entfernt wurdest." #. Privacy > Communication: select option allowing only friends to add the user to group chats. #: src/features/user/components/modals/tabs/privacy_safety_tab/CommunicationTab.tsx:39 @@ -23081,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Nur du kannst diese Nachricht sehen. <0>Ausblenden" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Deckkraft" @@ -23259,7 +22891,7 @@ msgid "Open date picker" msgstr "Datumsauswahl öffnen" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Desktop-Downloads öffnen" @@ -23454,6 +23086,11 @@ msgstr "Schnellauswahl öffnen" msgid "Open settings" msgstr "Einstellungen öffnen" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Softwarecenter öffnen" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23546,9 +23183,7 @@ msgstr "Sprachchat öffnen" #: src/features/auth/flow/BrowserLoginHandoffModal.tsx:193 msgid "Open your browser, sign in, then enter the code below to link your account." -msgstr "" -"Öffne deinen Browser, melde dich an und gib dann den folgenden Code ein, um " -"deinen Account zu verknüpfen." +msgstr "Öffne deinen Browser, melde dich an und gib dann den folgenden Code ein, um deinen Account zu verknüpfen." #. Required-action modal carousel step title for the first inbound phone verification instruction. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:330 @@ -23602,11 +23237,6 @@ msgstr "Betriebssystem" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Experimentelle Einstellungen für die Anzeige von ungelesenen Nachrichten pro Community und Kanal aktivieren" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimiert für längere Lesepassagen" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Kamera wird optimiert..." @@ -23774,7 +23404,7 @@ msgstr "Außerhalb des Rückerstattungszeitraums" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Überlappende Avatar-Gruppen, die mehrere Benutzer mit automatischer Überlaufanzahl anzeigen." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Overlays & Menüs" @@ -23785,10 +23415,7 @@ msgstr "Überschrieben" #. Helper text under the reply mention preference section in the community notification settings modal. The quoted "Inherit from account" should match the matching option label. #: src/features/guild/components/modals/GuildNotificationSettingsModal.tsx:100 msgid "Override how replies to your messages handle the @ mention in this community. \"Inherit from account\" uses your account-wide setting." -msgstr "" -"Lege fest, wie Antworten auf deine Nachrichten die Erwähnung mit @ in dieser " -"Community behandeln. \"Vom Account übernehmen\" verwendet deine " -"accountübergreifende Einstellung." +msgstr "Lege fest, wie Antworten auf deine Nachrichten die Erwähnung mit @ in dieser Community behandeln. \"Vom Account übernehmen\" verwendet deine accountübergreifende Einstellung." #. Title of the confirmation alert shown when sending a reply against the recipient mention-on-reply preference. #: src/features/channel/components/ChannelReplyBar.tsx:28 @@ -24180,11 +23807,6 @@ msgstr "Lautstärke pro Ton" msgid "Per-window audio isn't available on this build of macOS." msgstr "Audio pro Fenster ist in dieser macOS-Version nicht verfügbar." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Perfekt für alltägliche Inhalte" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24222,17 +23844,12 @@ msgstr "Die Nachrichten, die den unten stehenden Filtern entsprechen, werden dau #: src/features/user/components/modals/tabs/account_security_tab/DangerZoneTab.tsx:73 msgid "Permanently delete your account and all associated data. This action cannot be undone." -msgstr "" -"Dein Account und alle damit verbundenen Daten dauerhaft löschen. Diese " -"Aktion kann nicht rückgängig gemacht werden." +msgstr "Dein Account und alle damit verbundenen Daten dauerhaft löschen. Diese Aktion kann nicht rückgängig gemacht werden." #. Description shown on the settings page above the Delete my messages button. #: src/features/user/components/modals/tabs/privacy_safety_tab/data_request_modal/DataRequestModal.tsx:272 msgid "Permanently remove messages you have sent across DMs, group DMs, and communities. The work runs in the background, and you will get a DM when it finishes." -msgstr "" -"Entfernt dauerhaft Nachrichten, die du in DMs, Gruppen-DMs und Communitys " -"gesendet hast. Der Vorgang läuft im Hintergrund und du erhältst eine DM, " -"wenn er abgeschlossen ist." +msgstr "Entfernt dauerhaft Nachrichten, die du in DMs, Gruppen-DMs und Communitys gesendet hast. Der Vorgang läuft im Hintergrund und du erhältst eine DM, wenn er abgeschlossen ist." #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:246 @@ -24324,9 +23941,7 @@ msgstr "Telefonschritt" #. Required-action error when the account is not eligible to add phone verification. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:422 msgid "Phone verification is not available for this account. Use another method or contact support." -msgstr "" -"Telefonverifizierung ist für diesen Account nicht verfügbar. Verwende eine " -"andere Methode oder kontaktiere den Support." +msgstr "Telefonverifizierung ist für diesen Account nicht verfügbar. Verwende eine andere Methode oder kontaktiere den Support." #. Required-action modal title shown when the phone number must be verified for the first time. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:28 @@ -24381,9 +23996,7 @@ msgstr "Wähle ein oder mehrere Wörterbücher aus. Wörter aus jedem ausgewähl #. Setup wizard body for choosing the initial account theme. #: src/features/app/components/setup/SetupWizardSteps.tsx:64 msgid "Pick the appearance this administrator account should start with." -msgstr "" -"Wähle das Erscheinungsbild, mit dem dieser Administratoraccount beginnen " -"soll." +msgstr "Wähle das Erscheinungsbild, mit dem dieser Administratoraccount beginnen soll." #. Required-action modal body for choosing a verification method. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:236 @@ -24720,11 +24333,6 @@ msgstr "Position" msgid "Power saving" msgstr "Stromsparmodus" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Kraftvoll und aufmerksamkeitsstark" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24914,20 +24522,12 @@ msgstr "Vorschau-Bilder werden von {productName} vorübergehend gespeichert, um #. Privacy explanation for screen-share previews in a group DM call. productName is the app name. Refers to preview thumbnail images generated from a screen share. #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:229 msgid "Preview images are stored by {productName} temporarily for delivery and are not end-to-end encrypted. People in this group DM do not need to be actively watching your stream to see the thumbnail." -msgstr "" -"Vorschau-Bilder werden von {productName} vorübergehend gespeichert, um sie " -"anzuzeigen. Sie sind nicht Ende-zu-Ende verschlüsselt. Personen in dieser " -"Gruppen-DM müssen deinen Stream nicht aktiv ansehen, um das Vorschaubild zu " -"sehen." +msgstr "Vorschau-Bilder werden von {productName} vorübergehend gespeichert, um sie anzuzeigen. Sie sind nicht Ende-zu-Ende verschlüsselt. Personen in dieser Gruppen-DM müssen deinen Stream nicht aktiv ansehen, um das Vorschaubild zu sehen." #. Privacy explanation for screen-share previews in a guild voice channel. productName is the app name. Refers to preview thumbnail images generated from a screen share. #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:223 msgid "Preview images are stored by {productName} temporarily for delivery and are not end-to-end encrypted. People still need permission to connect, but they do not need to be actively watching your stream." -msgstr "" -"Vorschau-Bilder werden von {productName} vorübergehend gespeichert, um die " -"Übertragung zu ermöglichen, und sind nicht Ende-zu-Ende verschlüsselt. " -"Nutzer benötigen weiterhin eine Berechtigung, um sich zu verbinden, müssen " -"aber nicht aktiv deinen Stream ansehen." +msgstr "Vorschau-Bilder werden von {productName} vorübergehend gespeichert, um die Übertragung zu ermöglichen, und sind nicht Ende-zu-Ende verschlüsselt. Nutzer benötigen weiterhin eine Berechtigung, um sich zu verbinden, müssen aber nicht aktiv deinen Stream ansehen." #. Overlay on the local screen-share preview when playback is paused to reduce CPU / battery use. Local share is still being sent to others. #: src/features/voice/components/voice_participant_tile/shared.ts:56 @@ -25002,7 +24602,7 @@ msgstr "Primär (deaktiviert)" msgid "Primary accent color" msgstr "Primäre Akzentfarbe" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Primäre Aktion" @@ -25273,9 +24873,7 @@ msgstr "Pronomen: " #. Nagbar body shown to Visionary premium users who have not enabled two-factor authentication. {productName} is Fluxer. #: src/features/app/components/layout/app_layout/nagbars/VisionaryMfaNagbar.tsx:17 msgid "Protect your Visionary account by enabling two-factor authentication. Thanks for supporting {productName}!" -msgstr "" -"Schütze deinen Visionary-Account, indem du die Zwei-Faktor-Authentifizierung " -"aktivierst. Vielen Dank für deine Unterstützung von {productName}!" +msgstr "Schütze deinen Visionary-Account, indem du die Zwei-Faktor-Authentifizierung aktivierst. Vielen Dank für deine Unterstützung von {productName}!" #: src/features/moderation/components/report/ReportStepDetails.tsx:216 msgid "Provide at least a user ID or a user tag." @@ -25359,9 +24957,7 @@ msgstr "Gekaufte Geschenke" #. Modal body shown when purchases are disabled. Provides the support email for appeals. #: src/features/app/components/dialogs/components/plutonium/hooks/useCheckoutActions.tsx:140 msgid "Purchases are disabled for this account. Contact {supportEmail} if this looks wrong." -msgstr "" -"Käufe sind für diesen Account deaktiviert. Kontaktiere {supportEmail}, wenn " -"dies ein Fehler zu sein scheint." +msgstr "Käufe sind für diesen Account deaktiviert. Kontaktiere {supportEmail}, wenn dies ein Fehler zu sein scheint." #. Modal title shown when purchases are disabled on this account (server-side enforcement). #: src/features/app/components/dialogs/components/plutonium/hooks/useCheckoutActions.tsx:136 @@ -25491,10 +25087,7 @@ msgstr "Push-to-talk funktioniert nur, wenn der Browser-Tab fokussiert ist." #. Modal description shown when a push-to-talk shortcut is pressed while the user is self-deafened. #: src/features/app/keybindings/keybind_manager/shared.ts:22 msgid "Push-to-talk won't unmute your microphone while you're deafened. Undeafen yourself to talk." -msgstr "" -"Wenn du dich selbst stummgeschaltet hast, wird die Push-to-Talk-Funktion " -"dein Mikrofon nicht wieder aktivieren. Hebe die Stummschaltung auf, um zu " -"sprechen." +msgstr "Wenn du dich selbst stummgeschaltet hast, wird die Push-to-Talk-Funktion dein Mikrofon nicht wieder aktivieren. Hebe die Stummschaltung auf, um zu sprechen." #. Option label for a software encoder quality select. Means slower/higher-quality. #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:86 @@ -26040,14 +25633,7 @@ msgstr "Registrierung" #: src/features/auth/flow/AuthMinimalRegisterFormCore.tsx:211 #: src/features/auth/flow/AuthRegisterFormCore.tsx:312 msgid "Registration is currently closed. Use a registration link from an admin to create an account." -msgstr "" -"Die Registrierung ist derzeit geschlossen. Verwende einen Registrierungslink " -"von einem Admin, um einen Account zu erstellen." - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Normal" +msgstr "Die Registrierung ist derzeit geschlossen. Verwende einen Registrierungslink von einem Admin, um einen Account zu erstellen." #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" @@ -26426,8 +26012,7 @@ msgstr "Übersetzer entfernen" #. Button or menu action label in the premium badge settings. Keep it concise. Preserve {premiumProductName}; it is inserted by code. Keep the tone plain and specific. #: src/features/user/components/modals/tabs/my_profile_tab/PremiumBadgeSettings.tsx:31 msgid "Remove when you first bought {premiumProductName} from your badge" -msgstr "" -"Entferne aus deinem Abzeichen, wann du {premiumProductName} gekauft hast" +msgstr "Entferne aus deinem Abzeichen, wann du {premiumProductName} gekauft hast" #. Button or menu action label in the premium badge settings. Keep it concise. Keep the tone plain and specific. #: src/features/user/components/modals/tabs/my_profile_tab/PremiumBadgeSettings.tsx:53 @@ -26519,11 +26104,9 @@ msgstr "Nutzerlimit entfernt." msgid "Removed timeout from {0}" msgstr "Zeitüberschreitung für {0} aufgehoben" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." -msgstr "" -"Entfernt alle variablenbezogenen Überschreibungen, behält aber deine " -"Bibliothek und Assets intakt." +msgstr "Entfernt alle variablenbezogenen Überschreibungen, behält aber deine Bibliothek und Assets intakt." #: src/features/auth/components/pages/oauth_authorize_page/OAuthPermissionsStep.tsx:112 msgid "Removing permissions could limit the bot's features." @@ -26837,9 +26420,7 @@ msgstr "OAuth2-Code-Grant erforderlich" #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:466 msgid "Require two-factor authentication for moderators before they can ban, kick, timeout, or remove messages." -msgstr "" -"Zwei-Faktor-Authentifizierung für Moderatoren vorschreiben, bevor sie Nutzer " -"bannen, kicken, stummschalten oder Nachrichten löschen können." +msgstr "Zwei-Faktor-Authentifizierung für Moderatoren vorschreiben, bevor sie Nutzer bannen, kicken, stummschalten oder Nachrichten löschen können." #. Short label in the authentication OAUTH scopes step. Keep the tone plain and specific. #: src/features/auth/components/pages/oauth_authorize_page/OAuthScopesStep.tsx:24 @@ -26894,9 +26475,7 @@ msgstr "Erfordert eine Weiterleitungs-URL und einen Autorisierungscode, wenn die #. Helper text for the "Medium" member verification level option in the community moderation settings tab. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:70 msgid "Requires a verified email address, and an account that's at least 5 minutes old." -msgstr "" -"Erfordert eine verifizierte E-Mail-Adresse und einen Account, der mindestens " -"5 Minuten alt ist." +msgstr "Erfordert eine verifizierte E-Mail-Adresse und einen Account, der mindestens 5 Minuten alt ist." #. Helper text for the "Low" member verification level option in the community moderation settings tab. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:61 @@ -27030,7 +26609,7 @@ msgstr "App-Daten zurücksetzen" msgid "Reset app data and restart" msgstr "App-Daten zurücksetzen und neu starten" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Eigene Design-Daten zurücksetzen" @@ -27041,7 +26620,7 @@ msgstr "Benutzerdefinierte Design-Daten zurücksetzen?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Daten zurücksetzen" @@ -27181,7 +26760,7 @@ msgid "Restart {appName}" msgstr "{appName} neu starten" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Starte {productName} neu" @@ -27373,9 +26952,7 @@ msgstr "Prüfe, welche Berechtigungen diese App anfordert, bevor du fortfährst. #. Setup wizard finish step body. #: src/features/app/components/setup/SetupWizardSteps.tsx:331 msgid "Review your choices below, then finish. This saves the configuration and opens the instance." -msgstr "" -"Überprüfe deine Auswahl unten und schließe dann die Einrichtung ab. Dies " -"speichert die Konfiguration und öffnet die Instanz." +msgstr "Überprüfe deine Auswahl unten und schließe dann die Einrichtung ab. Dies speichert die Konfiguration und öffnet die Instanz." #. Short label in the group invites bottom sheet. Keep it concise. #. Short label in the group invites modal. Keep it concise. @@ -27913,18 +27490,12 @@ msgstr "Bildschirmfreigabe beendet" #. Warning banner shown when a watched screen share uses a software video decoder instead of hardware-accelerated decoding. {codec} is the codec name such as H.264 or AV1. #: src/features/voice/components/SoftwareEncoderNagbar.tsx:19 msgid "Screen share is using software decoding ({codec}). Playback may stutter and CPU usage may increase. Your GPU may not support hardware decoding for this codec." -msgstr "" -"Die Bildschirmfreigabe verwendet Software-Decodierung ({codec}). Die " -"Wiedergabe kann stottern und die CPU-Auslastung kann steigen. Deine GPU " -"unterstützt möglicherweise keine Hardware-Decodierung für diesen Codec." +msgstr "Die Bildschirmfreigabe verwendet Software-Decodierung ({codec}). Die Wiedergabe kann stottern und die CPU-Auslastung kann steigen. Deine GPU unterstützt möglicherweise keine Hardware-Decodierung für diesen Codec." #. Warning banner shown when screen share falls back to a software video encoder instead of hardware-accelerated encoding. {codec} is the codec name such as H.264 or AV1. #: src/features/voice/components/SoftwareEncoderNagbar.tsx:13 msgid "Screen share is using software encoding ({codec}). Quality may be reduced and CPU usage increased. Your GPU may not support hardware encoding for this codec." -msgstr "" -"Die Bildschirmfreigabe verwendet Software-Kodierung ({codec}). Die Qualität " -"kann reduziert und die CPU-Auslastung erhöht sein. Deine GPU unterstützt " -"möglicherweise keine Hardware-Kodierung für diesen Codec." +msgstr "Die Bildschirmfreigabe verwendet Software-Kodierung ({codec}). Die Qualität kann reduziert und die CPU-Auslastung erhöht sein. Deine GPU unterstützt möglicherweise keine Hardware-Kodierung für diesen Codec." #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:120 @@ -28365,7 +27936,7 @@ msgstr "Suchen" msgid "Searching people..." msgstr "Personen suchen ..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Zweite Option" @@ -28382,7 +27953,7 @@ msgstr "Sekundär (deaktiviert)" msgid "Secondary accent color" msgstr "Sekundäre Akzentfarbe" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Sekundäre Aktion" @@ -28556,8 +28127,7 @@ msgstr "Alle auswählen" #: src/features/auth/components/accounts/AccountSelector.tsx:64 msgid "Select an account to continue, or add a different one." -msgstr "" -"Wähle einen Account aus, um fortzufahren, oder füge einen anderen hinzu." +msgstr "Wähle einen Account aus, um fortzufahren, oder füge einen anderen hinzu." #. Button or menu action label in the selections tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:97 @@ -28607,8 +28177,7 @@ msgstr "Text auswählen" #: src/features/auth/flow/DesktopHandoffAccountSelector.tsx:69 msgid "Select the account you want to sign in with on the desktop app." -msgstr "" -"Wähle den Account aus, mit dem du dich in der Desktop-App anmelden möchtest." +msgstr "Wähle den Account aus, mit dem du dich in der Desktop-App anmelden möchtest." #. Aria label for the voice processing radio group in the voice settings tab. Keep it concise. #: src/features/user/components/modals/tabs/UserVoiceTab.tsx:118 @@ -28676,7 +28245,7 @@ msgstr "Auswahl: {0}" msgid "Selection: {0} (max {1})" msgstr "Auswahl: {0} (max. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Auswahl" @@ -28704,24 +28273,7 @@ msgstr "Self-hosted-Modus überschreiben" #: src/features/app/components/dialogs/components/PurchaseDisclaimer.tsx:36 msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." -msgstr "" -"Selbstbedienungsrückerstattungen sind innerhalb von 3 Tagen nach Zahlung und " -"einmal alle 30 Tage möglich. Die Rückerstattung eines Abonnements führt zur " -"Kündigung. Käufer aus der EU/dem EWR verzichten beim Checkout auf ihr 14-" -"tägiges Widerrufsrecht, um sofort auf Inhalte zugreifen zu können. Verwenden " -"Sie die In-App-Schaltfläche für Rückerstattungen anstelle einer Rückbuchung. " -"Rückbuchungen können deinen Account dauerhaft einschränken. Stripe wickelt " -"Zahlungen sicher ab. Wir sehen niemals deine vollständige Kartennummer." - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Halbfett" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Halbfett groß" +msgstr "Selbstbedienungsrückerstattungen sind innerhalb von 3 Tagen nach Zahlung und einmal alle 30 Tage möglich. Die Rückerstattung eines Abonnements führt zur Kündigung. Käufer aus der EU/dem EWR verzichten beim Checkout auf ihr 14-tägiges Widerrufsrecht, um sofort auf Inhalte zugreifen zu können. Verwenden Sie die In-App-Schaltfläche für Rückerstattungen anstelle einer Rückbuchung. Rückbuchungen können deinen Account dauerhaft einschränken. Stripe wickelt Zahlungen sicher ab. Wir sehen niemals deine vollständige Kartennummer." #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. @@ -28926,17 +28478,11 @@ msgstr "Senden:" #. Required-action modal explanation for an inbound phone verification challenge due to SMS cost. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:322 msgid "Sending an SMS to this number is expensive, so we need you to text us instead." -msgstr "" -"Das Senden einer SMS an diese Telefonnummer ist teuer, daher bitten wir " -"dich, uns stattdessen eine Nachricht zu schicken." +msgstr "Das Senden einer SMS an diese Telefonnummer ist teuer, daher bitten wir dich, uns stattdessen eine Nachricht zu schicken." #: src/features/user/components/modals/PhoneAddModal.tsx:301 msgid "Sending an SMS to this phone number is too expensive for {PRODUCT_NAME}, so we need you to send us an SMS instead. We know this isn't ideal. You can also contact <0>{SUPPORT_EMAIL} to have us lift this requirement from your account." -msgstr "" -"Das Senden einer SMS an diese Telefonnummer ist für {PRODUCT_NAME} zu teuer, " -"daher bitten wir dich, uns stattdessen eine SMS zu senden. Wir wissen, dass " -"dies nicht ideal ist. Du kannst auch <0>{SUPPORT_EMAIL} kontaktieren, " -"damit wir diese Anforderung für deinen Account aufheben." +msgstr "Das Senden einer SMS an diese Telefonnummer ist für {PRODUCT_NAME} zu teuer, daher bitten wir dich, uns stattdessen eine SMS zu senden. Wir wissen, dass dies nicht ideal ist. Du kannst auch <0>{SUPPORT_EMAIL} kontaktieren, damit wir diese Anforderung für deinen Account aufheben." #. IAR modal: rule label. #: src/features/moderation/components/report_modal/IARModalCopy.ts:295 @@ -29291,10 +28837,7 @@ msgstr "Status festlegen" #. Description in profile settings for the button that opens timezone settings. productName is the app name. A timezone identifier means values like America/New_York; only the UTC offset can be visible to others. #: src/features/user/components/modals/tabs/my_profile_tab/TimezoneProfileSettings.tsx:27 msgid "Set your timezone once so {productName} can keep your UTC offset current when daylight saving time changes. Other people can only see your UTC offset, not your exact timezone identifier." -msgstr "" -"Lege deine Zeitzone einmal fest, damit {productName} deinen UTC-Offset " -"aktuell halten kann, wenn die Sommerzeit geändert wird. Andere können nur " -"deinen UTC-Offset sehen, nicht jedoch deine genaue Zeitzone." +msgstr "Lege deine Zeitzone einmal fest, damit {productName} deinen UTC-Offset aktuell halten kann, wenn die Sommerzeit geändert wird. Andere können nur deinen UTC-Offset sehen, nicht jedoch deine genaue Zeitzone." #. Description text in the sounds. #: src/features/user/components/modals/tabs/notifications_tab/NotificationsTabSounds.tsx:28 @@ -29304,7 +28847,7 @@ msgstr "Legt die Lautstärke für alle Soundeffekte fest. Einzelne Sound-Einstel #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Einstellungen" @@ -29344,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Mehrere Personen tippen …" #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Teilen" @@ -29355,7 +28898,7 @@ msgstr "Teilen" msgid "Share action." msgstr "Aktion teilen." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Aktives Design teilen" @@ -29388,7 +28931,7 @@ msgstr "Quelle teilen" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Teile das {premiumProductName}-Erlebnis mit deinen Freunden, indem du ein Geschenkabonnement kaufst." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Design teilen" @@ -30152,9 +29695,7 @@ msgstr "Abmeldung fehlgeschlagen. Versuchen Sie es in Kürze erneut." #: src/features/auth/utils/AccountSwitcherModalUtils.tsx:196 msgid "Signing out will bring you to the sign-in screen so you can pick another account." -msgstr "" -"Wenn du dich abmeldest, gelangst du zum Anmeldebildschirm, wo du einen " -"anderen Account auswählen kannst." +msgstr "Wenn du dich abmeldest, gelangst du zum Anmeldebildschirm, wo du einen anderen Account auswählen kannst." #: src/features/auth/utils/AccountSwitcherModalUtils.tsx:198 msgid "Signing out will bring you to the sign-in screen." @@ -30318,11 +29859,6 @@ msgstr "Schieberegler mit Schrittwerten" msgid "Sliders" msgstr "Schieberegler" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Leicht fettere Hervorhebung" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30431,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Beleidigungen, entmenschlichende Sprache oder Angriffe auf geschützte Gruppen." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Klein" @@ -30516,11 +30050,6 @@ msgstr "Rastet in 5er-Schritten ein." msgid "Social" msgstr "Soziales" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Angenehmes und leichtes Leseerlebnis" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30599,9 +30128,7 @@ msgstr "Beim Ändern deines Abrechnungszyklus ist ein Fehler aufgetreten. Bitte #: src/features/connection/components/pages/ConnectionCallbackPage.tsx:48 msgid "Something went wrong while connecting your account. You can close this tab and try again." -msgstr "" -"Beim Verbinden deines Accounts ist ein Fehler aufgetreten. Du kannst diesen " -"Tab schließen und es erneut versuchen." +msgstr "Beim Verbinden deines Accounts ist ein Fehler aufgetreten. Du kannst diesen Tab schließen und es erneut versuchen." #. Body of the generic fallback error modal shown when ending the Plutonium grace period fails. #: src/features/app/components/dialogs/components/plutonium/hooks/useSubscriptionActions.ts:40 @@ -31234,7 +30761,7 @@ msgstr "Statusanzeigen" msgid "Status page" msgstr "Statusseite" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Status" @@ -31648,15 +31175,6 @@ msgstr "Stripe meldete eine Karte, die in {countryName} ausgestellt wurde. Um in msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Starke Qualität bei moderatem CPU-Verbrauch. Guter Chromium-Fallback für Bildschirmfreigabe." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Starke visuelle Hierarchie" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Stilvarianten" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31703,11 +31221,6 @@ msgstr "Abonnement-Szenarien" msgid "Subtext" msgstr "Untertext" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Untertitel" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -32243,9 +31756,7 @@ msgstr "Account vorübergehend deaktivieren" #: src/features/user/components/modals/tabs/account_security_tab/DangerZoneTab.tsx:56 msgid "Temporarily disable your account. You can reactivate it later by signing back in." -msgstr "" -"Deinen Account vorübergehend deaktivieren. Du kannst ihn später durch " -"erneutes Anmelden wieder aktivieren." +msgstr "Deinen Account vorübergehend deaktivieren. Du kannst ihn später durch erneutes Anmelden wieder aktivieren." #. Lowercase screen-reader fragment in the sidebar navigation guild list item. #: src/features/app/components/layout/sidebar_nav/GuildListItem.tsx:100 @@ -32294,10 +31805,8 @@ msgstr "URL-Vorschauen und gerenderte Einbettungen testen" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Text" @@ -32332,6 +31841,10 @@ msgstr "Textkanäle" msgid "Text formatting" msgstr "Text formatieren" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Text wird mit Graustufen-Antialiasing anstelle von ClearType gerendert, während Transparenz aktiviert ist, sodass es weicher aussieht." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32491,9 +32004,7 @@ msgstr "Die App ist abgestürzt" #: src/features/app/components/ErrorFallback.tsx:124 msgid "The app has crashed. Checking for updates that might fix this issue…" -msgstr "" -"Die App ist abgestürzt. Wir überprüfen auf Updates, die das Problem beheben " -"könnten …" +msgstr "Die App ist abgestürzt. Wir überprüfen auf Updates, die das Problem beheben könnten …" #: src/features/auth/flow/HandoffApprovalFlow.tsx:253 msgid "The app should now be signed in to your account." @@ -32522,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Die gesuchte Community wurde möglicherweise gelöscht oder du hast keinen Zugriff darauf." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Das Desktop-Update konnte nicht heruntergeladen werden. Versuche es erneut über die Schaltfläche „Update“, wenn deine Verbindung stabil ist." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Das Desktop-Update wurde heruntergeladen. Starte {productName}, um die Installation abzuschließen." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Die heruntergeladene Datei wird auf Ihrem Computer gespeichert. Installieren Sie sie mit Ihrem normalen Paketmanager." @@ -32794,9 +32305,7 @@ msgstr "Sie haben den Anruf verlassen" #. Body of the error modal shown when a DM cannot be opened (blocked or no shared community). #: src/features/app/components/alerts/DmActionErrorModal.tsx:20 msgid "They might not be accepting messages from you, or you no longer share a community." -msgstr "" -"Möglicherweise akzeptiert die Person keine Nachrichten von dir, oder ihr " -"teilt euch keine Community mehr." +msgstr "Möglicherweise akzeptiert die Person keine Nachrichten von dir, oder ihr teilt euch keine Community mehr." #. Body of the friend-request error modal when the target user has friend requests disabled. Keep tone plain and not blaming. #. Error toast when sending a friend request fails because the target user has disabled friend requests. Keep tone plain and not blaming. @@ -32805,12 +32314,7 @@ msgstr "" msgid "They're not accepting friend requests right now." msgstr "Diese Person nimmt derzeit keine Freundschaftsanfragen an." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Dünn" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Dritte Option" @@ -32827,9 +32331,7 @@ msgstr "Dieser Account kann nicht blockiert werden." #. Body of the error modal shown when a too-new account tries to join the canary testers community. #: src/features/app/components/layout/app_layout/nagbars/CanaryTesterCtaNagbar.tsx:42 msgid "This account is too new to join {testersCommunityName} yet. Try again in a little while." -msgstr "" -"Dieser Account ist noch zu neu, um {testersCommunityName} beizutreten. " -"Versuche es in Kürze noch einmal." +msgstr "Dieser Account ist noch zu neu, um {testersCommunityName} beizutreten. Versuche es in Kürze noch einmal." #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:415 msgid "This action cannot be undone. All associated data, including the bot user, will be permanently deleted." @@ -32871,11 +32373,7 @@ msgstr "Dies kann nicht rückgängig gemacht werden. Durch das Entfernen der Anw #. Premium checkout error shown when card country does not match billing country and Stripe did not provide the issuing country. productName is the app name. #: src/features/premium/components/pages/PremiumCallbackPage.tsx:28 msgid "This card does not match your billing country, so it cannot be used for this localized currency. Use a local card, choose another payment method, or return to {productName} and switch to the standard price." -msgstr "" -"Diese Kreditkarte stimmt nicht mit deinem Abrechnungsland überein und kann " -"daher nicht für diese lokale Währung verwendet werden. Verwende eine lokale " -"Karte, wähle eine andere Zahlungsmethode aus oder kehre zu {productName} " -"zurück und wechsle zum Standardpreis." +msgstr "Diese Kreditkarte stimmt nicht mit deinem Abrechnungsland überein und kann daher nicht für diese lokale Währung verwendet werden. Verwende eine lokale Karte, wähle eine andere Zahlungsmethode aus oder kehre zu {productName} zurück und wechsle zum Standardpreis." #. Modal body shown when a category cannot accept another channel because the per-category limit is reached. Limit is interpolated. #: src/features/app/components/layout/ChannelListContent.tsx:66 @@ -33040,17 +32538,12 @@ msgstr "Diese Unterhaltung ist nicht mehr verfügbar." #. Desktop updater modal body for platforms that do not support in-app installation. productName is the app name. #: src/features/updater/commands/UpdaterModalCommands.tsx:69 msgid "This desktop build cannot install updates inside {productName}. Download the latest desktop installer instead." -msgstr "" -"Diese Desktop-Version kann keine Updates innerhalb von {productName} " -"installieren. Bitte lade stattdessen die neueste Desktop-Installationsdatei " -"herunter." +msgstr "Diese Desktop-Version kann keine Updates innerhalb von {productName} installieren. Bitte lade stattdessen die neueste Desktop-Installationsdatei herunter." #. Desktop updater modal body for development or unpackaged builds. #: src/features/updater/commands/UpdaterModalCommands.tsx:65 msgid "This development build cannot update itself. Download a desktop installer to test the update flow." -msgstr "" -"Diese Entwicklungsversion kann sich nicht selbst updaten. Lade ein Desktop-" -"Installationsprogramm herunter, um den Ablauf von Updates zu testen." +msgstr "Diese Entwicklungsversion kann sich nicht selbst updaten. Lade ein Desktop-Installationsprogramm herunter, um den Ablauf von Updates zu testen." #. Modal body shown when the current device/browser cannot show notifications. #: src/features/app/components/layout/app_layout/nagbars/DesktopNotificationNagbar.tsx:26 @@ -33157,9 +32650,7 @@ msgstr "Diese Instanz erlaubt derzeit Bildschirmfreigabe bis zu 720p bei 30 FPS. #. Setup wizard body prompting the operator to register the first account. #: src/features/app/components/setup/SetupWizardSteps.tsx:52 msgid "This instance has no accounts yet. The first account you create automatically becomes the administrator." -msgstr "" -"Diese Instanz hat noch keine Accounts. Der erste Account, den du erstellst, " -"wird automatisch zum Administrator." +msgstr "Diese Instanz hat noch keine Accounts. Der erste Account, den du erstellst, wird automatisch zum Administrator." #. placeholder {0}: renderInline(change.newValue, i18n) #: src/features/guild/components/modals/guild_tabs/GuildAuditLogTabRenderers.tsx:679 @@ -33214,9 +32705,7 @@ msgstr "Dies ist ein Standard-Emoji auf {productName}." #. Required-action modal intro text when phone verification is required. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:228 msgid "This is an anti-spam check. Your phone number is not linked to your account." -msgstr "" -"Dies ist eine Anti-Spam-Prüfung. Deine Telefonnummer ist nicht mit deinem " -"Account verknüpft." +msgstr "Dies ist eine Anti-Spam-Prüfung. Deine Telefonnummer ist nicht mit deinem Account verknüpft." #. Error message in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:61 @@ -33248,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Das ist eine ganz schön lange Nachricht. Einige Reaktionen müssen entfernt werden, bevor du weitere hinzufügen kannst." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Dies ist ein Beispieltext im Textfeld." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Dies ist die Beschreibung der ersten Option" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Dies ist die Beschreibung der zweiten Option" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Dies ist die Beschreibung der dritten Option" @@ -33282,15 +32771,11 @@ msgstr "Dieser Link ist für deinen Account nicht verfügbar." #. Body in the channel gate modal when the current user cannot access a mature category. #: src/features/channel/components/modals/ChannelAccessGateModal.tsx:63 msgid "This mature category is not available to your account." -msgstr "" -"Diese Kategorie mit nicht jugendfreien Inhalten ist für deinen Account nicht " -"verfügbar." +msgstr "Diese Kategorie mit nicht jugendfreien Inhalten ist für deinen Account nicht verfügbar." #: src/features/channel/components/MatureContentChannelGate.tsx:147 msgid "This mature category is not available to your account. <0>Learn more" -msgstr "" -"Diese Kategorie mit nicht jugendfreien Inhalten ist für deinen Account nicht " -"verfügbar. <0>Mehr erfahren" +msgstr "Diese Kategorie mit nicht jugendfreien Inhalten ist für deinen Account nicht verfügbar. <0>Mehr erfahren" #. Body in the channel gate modal when the current user cannot access a mature channel. #: src/features/channel/components/modals/ChannelAccessGateModal.tsx:67 @@ -33299,28 +32784,20 @@ msgstr "Dieser nicht jugendfreie Kanal ist für deinen Account nicht verfügbar. #: src/features/channel/components/MatureContentChannelGate.tsx:169 msgid "This mature channel is not available to your account. <0>Learn more" -msgstr "" -"Dieser nicht jugendfreie Kanal ist für deinen Account nicht verfügbar. <0>" -"Mehr erfahren" +msgstr "Dieser nicht jugendfreie Kanal ist für deinen Account nicht verfügbar. <0>Mehr erfahren" #. Body in the channel gate modal when the current user cannot access a mature community. #: src/features/channel/components/modals/ChannelAccessGateModal.tsx:59 msgid "This mature community is not available to your account." -msgstr "" -"Diese Community mit nicht jugendfreien Inhalten ist für deinen Account nicht " -"verfügbar." +msgstr "Diese Community mit nicht jugendfreien Inhalten ist für deinen Account nicht verfügbar." #: src/features/channel/components/MatureContentChannelGate.tsx:124 msgid "This mature community is not available to your account. <0>Learn more" -msgstr "" -"Diese nicht jugendfreie Community ist für deinen Account nicht verfügbar. <0>" -"Mehr erfahren" +msgstr "Diese nicht jugendfreie Community ist für deinen Account nicht verfügbar. <0>Mehr erfahren" #: src/features/moderation/components/modals/MatureMediaGateDetailsModal.tsx:106 msgid "This mature media is not available to your account. <0>Learn more" -msgstr "" -"Diese nicht jugendfreien Medien sind für deinen Account nicht verfügbar. <0>" -"Mehr erfahren" +msgstr "Diese nicht jugendfreien Medien sind für deinen Account nicht verfügbar. <0>Mehr erfahren" #. Body of the error modal shown when a voice moderation action targets a member who no longer exists. #: src/features/app/components/alerts/VoiceMemberModerationFailedModal.tsx:33 @@ -33412,10 +32889,7 @@ msgstr "Dadurch werden alle benutzerdefinierten CSS-Überschreibungen entfernt. #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/ToolsMenu.tsx:49 msgid "This removes all previously authorized IP addresses on your account. The next login from any IP will require email verification." -msgstr "" -"Dadurch werden alle zuvor autorisierten IP-Adressen in deinem Account " -"entfernt. Die nächste Anmeldung von einer beliebigen IP-Adresse erfordert " -"eine E-Mail-Verifizierung." +msgstr "Dadurch werden alle zuvor autorisierten IP-Adressen in deinem Account entfernt. Die nächste Anmeldung von einer beliebigen IP-Adresse erfordert eine E-Mail-Verifizierung." #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/ToolsMenu.tsx:66 @@ -33428,10 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Dadurch werden alle benutzerdefinierten Tastenkombinationen entfernt und alle integrierten Tastenkombinationen wieder aktiviert. Dies kann nicht rückgängig gemacht werden." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "" -"Dieser Link zum Zurücksetzen ist abgelaufen. Zurücksetzungslinks sind 1 " -"Stunde lang gültig. Bitte fordere einen neuen Link an." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Dieser Zurücksetzungslink ist abgelaufen. Zurücksetzungslinks sind 1 Stunde gültig. Bitte fordere einen neuen an." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33458,36 +32930,6 @@ msgstr "Dieser Schalter ist deaktiviert und kann nicht umgelegt werden" msgid "This switch is disabled in the checked state" msgstr "Dieser Schalter ist im aktivierten Zustand deaktiviert" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Dieser Text demonstriert die Formatierung von Überschriften in Fettschrift" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Dieser Text demonstriert die Formatierung von Fettschrift-Titeln" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Dieser Text demonstriert kursive Formatierung" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Dieser Text demonstriert eine große, halbfette Formatierung" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Dieser Text zeigt die normale Formatierung" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Dieser Text demonstriert halbfette Formatierung" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Dieses Textfeld wird beim Tippen automatisch von 4 auf 12 Zeilen erweitert." @@ -33629,8 +33071,7 @@ msgstr "Dadurch werden alle Nachrichten, die Sie jemals in dieser Unterhaltung g #: src/features/auth/components/accounts/AccountSelector.tsx:77 msgid "This will remove the only saved account on this device." -msgstr "" -"Dadurch wird der einzige gespeicherte Account auf diesem Gerät entfernt." +msgstr "Dadurch wird der einzige gespeicherte Account auf diesem Gerät entfernt." #: src/features/auth/components/accounts/AccountSelector.tsx:75 msgid "This will remove the saved session for this account." @@ -33643,26 +33084,17 @@ msgstr "Dadurch wird dein aktuelles benutzerdefiniertes Design ersetzt. Du kanns #. Security warning explaining that selected OAuth application authorizations will be revoked. #: src/features/user/components/modals/tabs/AuthorizedAppsTab.tsx:154 msgid "This will revoke access for the selected {appCount, plural, one {application} other {applications}}. They will no longer be able to access your account." -msgstr "" -"Dadurch werden die Zugriffsrechte für die ausgewählten {appCount, plural, " -"one {Anwendung} other {Anwendungen}} widerrufen. Diese haben dann keinen " -"Zugriff mehr auf deinen Account." +msgstr "Dadurch werden die Zugriffsrechte für die ausgewählten {appCount, plural, one {Anwendung} other {Anwendungen}} widerrufen. Diese haben dann keinen Zugriff mehr auf deinen Account." #. Security warning explaining that selected saved login sessions will be signed out. #: src/features/auth/components/modals/DeviceRevokeModal.tsx:62 msgid "This will sign out the selected {sessionCount, plural, one {device} other {devices}} from your account. You will need to sign in again on those {sessionCount, plural, one {device} other {devices}}." -msgstr "" -"Dadurch werden die ausgewählten {sessionCount, plural, one {Geräte} other " -"{Geräte}} von deinem Account abgemeldet. Du musst dich auf diesen " -"{sessionCount, plural, one {Geräten} other {Geräten}} erneut anmelden." +msgstr "Dadurch werden die ausgewählten {sessionCount, plural, one {Geräte} other {Geräte}} von deinem Account abgemeldet. Du musst dich auf diesen {sessionCount, plural, one {Geräten} other {Geräten}} erneut anmelden." #. Confirm dialog detail text for the destructive reset action. appName is the desktop app name. Reassures users that server-side data is safe. #: src/features/platform/utils/DesktopLocaleBridge.ts:118 msgid "This will sign you out, clear cached files and stored sessions, and restart the desktop app. Your account, communities, and messages in {appName} are not affected." -msgstr "" -"Dadurch wirst du abgemeldet, zwischengespeicherte Dateien und gespeicherte " -"Sitzungen gelöscht und die Desktop-App neu gestartet. Dein Account, deine " -"Communitys und Nachrichten in {appName} bleiben davon unberührt." +msgstr "Dadurch wirst du abgemeldet, zwischengespeicherte Dateien und gespeicherte Sitzungen gelöscht und die Desktop-App neu gestartet. Dein Account, deine Communitys und Nachrichten in {appName} bleiben davon unberührt." #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabLinksTab.tsx:84 msgid "This will trust all external links and skip the warning for every domain. Your existing trusted domains will be replaced. This is less secure." @@ -33822,11 +33254,6 @@ msgstr "Zeitzone" msgid "Tip" msgstr "Tipp" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Titel" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -33848,9 +33275,7 @@ msgstr "Um einen Webhook zu erstellen, öffne <0>{channelWebhooksSettingsPath}Nutzungsbedingungen vor #: src/features/auth/components/pages/ForgotPasswordPage.tsx:52 msgid "We've sent password reset instructions to your email. Check your inbox for the reset link." -msgstr "" -"Wir haben Anweisungen zum Zurücksetzen des Passworts an deine E-Mail-Adresse " -"gesendet. Überprüfe deinen Posteingang auf den Zurücksetzungslink." +msgstr "Wir haben Anweisungen zum Zurücksetzen des Passworts an deine E-Mail-Adresse gesendet. Überprüfe deinen Posteingang auf den Zurücksetzungslink." #. Nagbar body shown when the user must accept updated policies before continuing. #: src/features/app/components/layout/app_layout/nagbars/TermsAcceptanceNagbar.tsx:14 @@ -37795,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Wir haben unsere Richtlinien aktualisiert. Bitte überprüfen und akzeptieren Sie diese, um fortzufahren." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37914,47 +37272,32 @@ msgstr "Willkommen bei {channelDisplayName}" #. Premium onboarding nagbar body. {premiumProductFullName} is the full premium product name, such as Fluxer Plutonium. {premiumProductName} is the short product name. #: src/features/app/components/layout/app_layout/nagbars/PremiumOnboardingNagbar.tsx:21 msgid "Welcome to {premiumProductFullName}. Explore your {premiumProductName} perks and manage your subscription." -msgstr "" -"Willkommen bei {premiumProductFullName}. Entdecke deine {premiumProductName}-" -"Vorteile und verwalte dein Abo." +msgstr "Willkommen bei {premiumProductFullName}. Entdecke deine {premiumProductName}-Vorteile und verwalte dein Abo." #. Premium onboarding nagbar body for lifetime premium users. Visionary is the lifetime premium tier name. {premiumProductFullName} is the full premium product name. {premiumProductName} is the short product name. #: src/features/app/components/layout/app_layout/nagbars/PremiumOnboardingNagbar.tsx:26 msgid "Welcome to {premiumProductFullName}. You have lifetime access as a Visionary. Explore your {premiumProductName} perks." -msgstr "" -"Willkommen bei {premiumProductFullName}. Als Visionary hast du lebenslangen " -"Zugriff. Entdecke deine {premiumProductName}-Vorteile." +msgstr "Willkommen bei {premiumProductFullName}. Als Visionary hast du lebenslangen Zugriff. Entdecke deine {premiumProductName}-Vorteile." #. Premium onboarding nagbar body for a gift subscription. {premiumProductFullName} is the full premium product name, {premiumProductName} is the short product name, and {formattedDate} is already localized. #: src/features/app/components/layout/app_layout/nagbars/PremiumOnboardingNagbar.tsx:50 msgid "Welcome to {premiumProductFullName}. Your gift subscription runs until {formattedDate}. Explore your {premiumProductName} perks." -msgstr "" -"Willkommen bei {premiumProductFullName}. Dein Geschenk-Abo läuft noch bis " -"zum {formattedDate}. Entdecke deine {premiumProductName}-Vorteile." +msgstr "Willkommen bei {premiumProductFullName}. Dein Geschenk-Abo läuft noch bis zum {formattedDate}. Entdecke deine {premiumProductName}-Vorteile." #. Premium onboarding nagbar body for a monthly subscription. {premiumProductFullName} is the full premium product name, {premiumProductName} is the short product name, and {formattedDate} is already localized. #: src/features/app/components/layout/app_layout/nagbars/PremiumOnboardingNagbar.tsx:38 msgid "Welcome to {premiumProductFullName}. Your monthly subscription renews on {formattedDate}. Explore your {premiumProductName} perks and manage your subscription." -msgstr "" -"Willkommen bei {premiumProductFullName}. Dein monatliches Abo wird am " -"{formattedDate} verlängert. Entdecke deine {premiumProductName}-Vorteile und " -"verwalte dein Abo." +msgstr "Willkommen bei {premiumProductFullName}. Dein monatliches Abo wird am {formattedDate} verlängert. Entdecke deine {premiumProductName}-Vorteile und verwalte dein Abo." #. Premium onboarding nagbar body for a subscription that will cancel. {premiumProductFullName} is the full premium product name, {premiumProductName} is the short product name, and {formattedDate} is already localized. #: src/features/app/components/layout/app_layout/nagbars/PremiumOnboardingNagbar.tsx:32 msgid "Welcome to {premiumProductFullName}. Your subscription is active until {formattedDate}. Explore your {premiumProductName} perks and manage your subscription." -msgstr "" -"Willkommen bei {premiumProductFullName}. Dein Abo ist bis zum " -"{formattedDate} gültig. Entdecke deine {premiumProductName}-Vorteile und " -"verwalte dein Abo." +msgstr "Willkommen bei {premiumProductFullName}. Dein Abo ist bis zum {formattedDate} gültig. Entdecke deine {premiumProductName}-Vorteile und verwalte dein Abo." #. Premium onboarding nagbar body for a yearly subscription. {premiumProductFullName} is the full premium product name, {premiumProductName} is the short product name, and {formattedDate} is already localized. #: src/features/app/components/layout/app_layout/nagbars/PremiumOnboardingNagbar.tsx:44 msgid "Welcome to {premiumProductFullName}. Your yearly subscription renews on {formattedDate}. Explore your {premiumProductName} perks and manage your subscription." -msgstr "" -"Willkommen bei {premiumProductFullName}. Dein jährliches Abo wird am " -"{formattedDate} verlängert. Entdecke deine {premiumProductName}-Vorteile und " -"verwalte dein Abo." +msgstr "Willkommen bei {premiumProductFullName}. Dein jährliches Abo wird am {formattedDate} verlängert. Entdecke deine {premiumProductName}-Vorteile und verwalte dein Abo." #. Setup wizard title shown once the operator is signed in as the instance admin. #: src/features/app/components/setup/SetupWizardSteps.tsx:39 @@ -38050,17 +37393,11 @@ msgstr "Wenn kein benutzerdefiniertes Schwellenwertdatum festgelegt ist, können #: src/features/guild/components/modals/guild_tabs/CloneAllowedToggle.tsx:62 msgid "When enabled, members of other communities can use the in-app one-click \"Clone\" shortcut on your custom emojis. This does not prevent them from saving the image and uploading it themselves." -msgstr "" -"Wenn aktiviert, können Mitglieder anderer Communitys den In-App-\"Klonen\"-" -"Shortcut für deine benutzerdefinierten Emojis verwenden. Dies hindert sie " -"nicht daran, das Bild zu speichern und selbst hochzuladen." +msgstr "Wenn aktiviert, können Mitglieder anderer Communitys den In-App-\"Klonen\"-Shortcut für deine benutzerdefinierten Emojis verwenden. Dies hindert sie nicht daran, das Bild zu speichern und selbst hochzuladen." #: src/features/guild/components/modals/guild_tabs/CloneAllowedToggle.tsx:67 msgid "When enabled, members of other communities can use the in-app one-click \"Clone\" shortcut on your custom stickers. This does not prevent them from saving the image and uploading it themselves." -msgstr "" -"Wenn aktiviert, können Mitglieder anderer Communitys die In-App-\"Klonen\"-" -"Verknüpfung für deine benutzerdefinierten Sticker verwenden. Dies hindert " -"sie nicht daran, das Bild zu speichern und selbst hochzuladen." +msgstr "Wenn aktiviert, können Mitglieder anderer Communitys die In-App-\"Klonen\"-Verknüpfung für deine benutzerdefinierten Sticker verwenden. Dies hindert sie nicht daran, das Bild zu speichern und selbst hochzuladen." #. Description text in the channel and chat active now sidebar. #: src/features/channel/components/active_now/ActiveNowSidebar.tsx:16 @@ -38373,10 +37710,7 @@ msgstr "Diese Verbindung ist bereits vorhanden." #: src/features/auth/flow/HandoffApprovalFlow.tsx:106 msgid "You are about to authorize an app to sign in to your account. Only continue if you initiated this request from a device you control." -msgstr "" -"Du bist dabei, einer App die Anmeldung bei deinem Account zu erlauben. Fahre " -"nur fort, wenn du diese Anfrage von einem Gerät gesendet hast, dass du " -"kontrollierst." +msgstr "Du bist dabei, einer App die Anmeldung bei deinem Account zu erlauben. Fahre nur fort, wenn du diese Anfrage von einem Gerät gesendet hast, dass du kontrollierst." #. External link warning title. productName is the Fluxer product name. #: src/features/messaging/components/modals/ExternalLinkWarningModal.tsx:21 @@ -38386,10 +37720,7 @@ msgstr "Sie verlassen {productName}" #. placeholder {0}: NicknameUtils.getNickname(targetUser, guildId) #: src/features/guild/components/modals/TransferOwnershipModal.tsx:72 msgid "You are about to transfer ownership of this community to <0>{0}. This action is <1>irreversible and you will lose all owner privileges." -msgstr "" -"Du bist dabei, die Eigentümerrechte dieser Community an <0>{0} zu " -"übertragen. Diese Aktion ist <1>unumkehrbar und du verlierst alle " -"Eigentümerberechtigungen." +msgstr "Du bist dabei, die Eigentümerrechte dieser Community an <0>{0} zu übertragen. Diese Aktion ist <1>unumkehrbar und du verlierst alle Eigentümerberechtigungen." #. Error message in the user banned from guild modal. Keep the tone plain and specific. #: src/features/moderation/components/alerts/UserBannedFromGuildModal.tsx:12 @@ -38406,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Du bearbeitest dein Profil für diese Community. Dieses Profil ist nur in dieser Community sichtbar und überschreibt dein globales Profil." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Du bist jetzt Entwickler!" @@ -38494,10 +37825,7 @@ msgstr "Sie können sich jederzeit wieder anmelden." #. Invite page subtext shown when community admins pause invites. Explains that account actions still work. #: src/features/invite/utils/InviteMessageDescriptors.ts:47 msgid "You can still create an account or sign in. If invites are re-enabled later, you can use this same link to join." -msgstr "" -"Du kannst weiterhin einen Account erstellen oder dich anmelden. Wenn " -"Einladungen später wieder aktiviert werden, kannst du denselben Link " -"verwenden, um beizutreten." +msgstr "Du kannst weiterhin einen Account erstellen oder dich anmelden. Wenn Einladungen später wieder aktiviert werden, kannst du denselben Link verwenden, um beizutreten." #: src/features/channel/components/pickers/gif/FavoriteGifFirstTimePromptModal.tsx:62 msgid "You can store starred GIFs as URL-only favorites or upload them to your saved media. Pick the one that fits how you use them. You can change it any time in {mediaSettingsPath}." @@ -38672,9 +38000,7 @@ msgstr "Du kannst die Mitglieder dieses Kanals in dieser Community nicht sehen" #: src/features/guild/components/modals/GuildOwnershipWarningModal.tsx:36 msgid "You cannot delete your account while you own communities. Transfer ownership of the following communities first:" -msgstr "" -"Du kannst deinen Account nicht löschen, solange du Communitys besitzt. " -"Übertrage zuerst den Besitz der folgenden Communitys:" +msgstr "Du kannst deinen Account nicht löschen, solange du Communitys besitzt. Übertrage zuerst den Besitz der folgenden Communitys:" #. Tooltip on the disabled permission list in the role editor when role hierarchy blocks editing. #: src/features/guild/components/modals/guild_tabs/GuildRolesTab.tsx:64 @@ -38704,9 +38030,7 @@ msgstr "Du kannst diese Berechtigung nicht entfernen, da du sie dir selbst entzi #. Local system message after the user changes their community nickname with a slash command. The bold markdown markers should remain around the two names. #: src/features/devtools/utils/CommandUtils.ts:27 msgid "You changed your nickname in this community from **{previousNickname}** to **{newNickname}**." -msgstr "" -"Du hast deinen Anzeigenamen in dieser Community von **{previousNickname}** " -"zu **{newNickname}** geändert." +msgstr "Du hast deinen Anzeigenamen in dieser Community von **{previousNickname}** zu **{newNickname}** geändert." #: src/features/user/components/modals/FluxerTagChangeModal.tsx:367 msgid "You changed your tag while on {PREMIUM_PRODUCT_NAME}. It will reroll randomly when your {PREMIUM_PRODUCT_NAME} expires on <0>{premiumExpiresAtLabel}, unless it renews." @@ -38798,8 +38122,7 @@ msgstr "Sie haben ungespeicherte Änderungen. Speichern oder zurücksetzen, bevo #: src/features/user/components/modals/tabs/AuthorizedAppsTab.tsx:429 msgid "You haven't authorized any applications to access your account." -msgstr "" -"Du hast noch keine Anwendungen autorisiert, auf deinen Account zuzugreifen." +msgstr "Du hast noch keine Anwendungen autorisiert, auf deinen Account zuzugreifen." #: src/features/channel/components/barriers/BarrierComponents.tsx:218 msgid "You haven't been a member of this community long enough to send messages." @@ -38848,21 +38171,17 @@ msgstr "Du hast einen Anruf von <0/> verpasst." #. Registration submit-button tooltip explaining that privacy policy agreement is required to proceed. #: src/features/auth/flow/SubmitTooltip.tsx:18 msgid "You must agree to the privacy policy to create an account" -msgstr "" -"Du musst der Datenschutzerklärung zustimmen, um einen Account zu erstellen" +msgstr "Du musst der Datenschutzerklärung zustimmen, um einen Account zu erstellen" #. Registration submit-button tooltip explaining that ToS and privacy agreement is required to proceed. #: src/features/auth/flow/SubmitTooltip.tsx:10 msgid "You must agree to the terms of service and privacy policy to create an account" -msgstr "" -"Du musst den Nutzungsbedingungen und der Datenschutzrichtlinie zustimmen, um " -"einen Account zu erstellen" +msgstr "Du musst den Nutzungsbedingungen und der Datenschutzrichtlinie zustimmen, um einen Account zu erstellen" #. Registration submit-button tooltip explaining that terms agreement is required to proceed. #: src/features/auth/flow/SubmitTooltip.tsx:14 msgid "You must agree to the terms of service to create an account" -msgstr "" -"Du musst den Nutzungsbedingungen zustimmen, um einen Account zu erstellen" +msgstr "Du musst den Nutzungsbedingungen zustimmen, um einen Account zu erstellen" #. Inline error on the details step of the DSA report flow when the user has not completed email verification. #: src/features/moderation/components/pages/ReportPage.tsx:93 @@ -38910,16 +38229,12 @@ msgstr "Du benötigst die Berechtigung \"{manageWebhooksPermissionLabel}\", um W #. Permission error shown when sending external emoji without the required permission. #: src/features/expressions/utils/ExpressionPermissionUtils.ts:20 msgid "You need the \"{permissionLabel}\" permission to use emoji from other communities here." -msgstr "" -"Du benötigst die Berechtigung \"{permissionLabel}\", um hier Emojis aus " -"anderen Communitys zu verwenden." +msgstr "Du benötigst die Berechtigung \"{permissionLabel}\", um hier Emojis aus anderen Communitys zu verwenden." #. Permission error shown when sending external stickers without the required permission. #: src/features/expressions/utils/ExpressionPermissionUtils.ts:32 msgid "You need the \"{permissionLabel}\" permission to use stickers from other communities here." -msgstr "" -"Du benötigst die Berechtigung \"{permissionLabel}\", um hier Sticker aus " -"anderen Communitys zu verwenden." +msgstr "Du benötigst die Berechtigung \"{permissionLabel}\", um hier Sticker aus anderen Communitys zu verwenden." #. Forward dialog error shown when the user lacks the Send Messages permission in the target channel. Permission name is interpolated. #: src/features/app/components/dialogs/shared/ForwardChannelSelection.ts:37 @@ -38929,27 +38244,20 @@ msgstr "Du benötigst die Berechtigung \"{sendMessagesPermissionLabel}\", um Nac #: src/features/guild/components/modals/add_guild_modal/GuildCreateForm.tsx:206 #: src/features/guild/components/modals/add_guild_modal/TemplateImportForm.tsx:431 msgid "You need to claim your account before you can create a community." -msgstr "" -"Du musst zuerst deinen Account beanspruchen, bevor du eine Community " -"erstellen kannst." +msgstr "Du musst zuerst deinen Account beanspruchen, bevor du eine Community erstellen kannst." #. Body of the error modal shown when an unclaimed account tries to start a DM. #: src/features/app/components/alerts/DmActionErrorModal.tsx:36 msgid "You need to claim your account before you can start a direct message." -msgstr "" -"Du musst deinen Account beanspruchen, bevor du eine Direktnachricht starten " -"kannst." +msgstr "Du musst deinen Account beanspruchen, bevor du eine Direktnachricht starten kannst." #: src/features/channel/components/barriers/BarrierComponents.tsx:368 msgid "You need to claim your account to send direct messages." -msgstr "" -"Du musst deinen Account beanspruchen, um Direktnachrichten senden zu können." +msgstr "Du musst deinen Account beanspruchen, um Direktnachrichten senden zu können." #: src/features/channel/components/barriers/BarrierComponents.tsx:133 msgid "You need to claim your account to send messages in this community." -msgstr "" -"Du musst deinen Account beanspruchen, um Nachrichten in dieser Community " -"senden zu können." +msgstr "Du musst deinen Account beanspruchen, um Nachrichten in dieser Community senden zu können." #: src/features/channel/components/barriers/BarrierComponents.tsx:241 msgid "You need to verify a phone number to send messages in this community." @@ -39000,9 +38308,7 @@ msgstr "Nach der Autorisierung werden Sie zu {redirectHostname} weitergeleitet." #: src/features/auth/components/modals/AccountDeleteModal.tsx:59 msgid "You will not be able to delete your sent messages after your account is deleted" -msgstr "" -"Gesendete Nachrichten können nach dem Löschen deines Accounts nicht mehr " -"gelöscht werden" +msgstr "Gesendete Nachrichten können nach dem Löschen deines Accounts nicht mehr gelöscht werden" #: src/features/app/components/floating/UserAreaPopout.tsx:93 #: src/features/user/components/modals/StatusChangeBottomSheet.tsx:40 @@ -39163,9 +38469,7 @@ msgstr "Du bist im Anruf" #. Body of the error modal shown when the user is already in the maximum number of communities. #: src/features/discovery/discovery/DiscoveryGuildCard.tsx:52 msgid "You're in the maximum number of communities. Leave one and try again." -msgstr "" -"Du bist der maximalen Anzahl von Communitys beigetreten. Verlasse eine und " -"versuche es erneut." +msgstr "Du bist der maximalen Anzahl von Communitys beigetreten. Verlasse eine und versuche es erneut." #. Subtitle below the connected-to-voice header confirming the user is in the channel. #: src/features/voice/components/bottomsheets/VoiceLobbyBottomSheet.tsx:76 @@ -39308,10 +38612,7 @@ msgstr "Du hast alle deine letzten Erwähnungen gesehen. Weitere werden hier bal #. Nagbar body shown when a premium subscription has expired. {premiumProductName} is the premium product name. #: src/features/app/components/layout/app_layout/nagbars/PremiumExpiredNagbar.tsx:18 msgid "Your {premiumProductName} subscription has expired. You have lost all {premiumProductName} perks. Reactivate your subscription to regain access." -msgstr "" -"Dein {premiumProductName}-Abo ist abgelaufen. Du hast alle " -"{premiumProductName}-Vorteile verloren. Reaktiviere dein Abo, um den Zugriff " -"wiederherzustellen." +msgstr "Dein {premiumProductName}-Abo ist abgelaufen. Du hast alle {premiumProductName}-Vorteile verloren. Reaktiviere dein Abo, um den Zugriff wiederherzustellen." #. OAuth authorize page error shown when the session expired mid-authorization. Keep plain. Preserve {productName}; it is inserted by code. #: src/features/auth/components/pages/oauth_authorize_page/state/useAuthorizeFlow.ts:40 @@ -39325,23 +38626,15 @@ msgstr "Dein Account" #. Body of the error modal shown when a flagged account is blocked from joining the canary testers community. #: src/features/app/components/layout/app_layout/nagbars/CanaryTesterCtaNagbar.tsx:51 msgid "Your account can't join {testersCommunityName} at the moment. Contact support if you think this is a mistake." -msgstr "" -"Dein Account kann {testersCommunityName} zurzeit nicht beitreten. " -"Kontaktiere den Support, wenn du denkst, dass dies ein Fehler ist." +msgstr "Dein Account kann {testersCommunityName} zurzeit nicht beitreten. Kontaktiere den Support, wenn du denkst, dass dies ein Fehler ist." #: src/features/connection/components/pages/ConnectionCallbackPage.tsx:29 msgid "Your account has been linked successfully. You can now close this tab and return to the app." -msgstr "" -"Dein Account wurde erfolgreich verknüpft. Du kannst diesen Tab jetzt " -"schließen und zur App zurückkehren." +msgstr "Dein Account wurde erfolgreich verknüpft. Du kannst diesen Tab jetzt schließen und zur App zurückkehren." #: src/features/app/components/dialogs/components/UnclaimedAccountAlert.tsx:26 msgid "Your account is not yet claimed. Without an email and password, you won't be able to sign in from other devices and you could lose access to your account. Claim your account now to secure it." -msgstr "" -"Dein Account ist noch nicht beansprucht. Ohne E-Mail-Adresse und Passwort " -"kannst du dich nicht von anderen Geräten aus anmelden und könntest den " -"Zugriff auf deinen Account verlieren. Beanspruche deinen Account jetzt, um " -"es zu sichern." +msgstr "Dein Account ist noch nicht beansprucht. Ohne E-Mail-Adresse und Passwort kannst du dich nicht von anderen Geräten aus anmelden und könntest den Zugriff auf deinen Account verlieren. Beanspruche deinen Account jetzt, um es zu sichern." #. Title of the error modal shown when a too-new account tries to join the canary testers community. #: src/features/app/components/layout/app_layout/nagbars/CanaryTesterCtaNagbar.tsx:38 @@ -39355,17 +38648,11 @@ msgstr "Dein Account ist zu neu, um Nachrichten in dieser Community zu senden." #: src/features/auth/flow/AuthMinimalRegisterFormCore.tsx:220 #: src/features/auth/flow/AuthRegisterFormCore.tsx:321 msgid "Your account request is pending approval. You can sign in after an admin approves it." -msgstr "" -"Deine Accountanfrage wartet auf Genehmigung. Du kannst dich anmelden, " -"nachdem ein Admin sie genehmigt hat." +msgstr "Deine Accountanfrage wartet auf Genehmigung. Du kannst dich anmelden, nachdem ein Admin sie genehmigt hat." #: src/features/auth/components/modals/SudoVerificationModal.tsx:180 msgid "Your account requires multi-factor authentication, but no supported methods are set up on this device. Sign in on a device with your authenticator app or security key, or contact support." -msgstr "" -"Für deinen Account ist die Multi-Faktor-Authentifizierung erforderlich, aber " -"auf diesem Gerät sind keine unterstützten Methoden eingerichtet. Melde dich " -"auf einem Gerät mit deiner Authentifizierungsapp oder deinem " -"Sicherheitsschlüssel an oder wende dich an den Support." +msgstr "Für deinen Account ist die Multi-Faktor-Authentifizierung erforderlich, aber auf diesem Gerät sind keine unterstützten Methoden eingerichtet. Melde dich auf einem Gerät mit deiner Authentifizierungsapp oder deinem Sicherheitsschlüssel an oder wende dich an den Support." #. Modal body shown when the safety system blocks the requested action. Keep plain and calm; offer support path. #: src/features/auth/components/ContentBlockedHandler.tsx:14 @@ -39408,10 +38695,7 @@ msgstr "Deine Community benötigt mindestens {minMemberCount} Mitglieder, bevor #. Body copy on the mature content check callback page after a successful check submission. #: src/features/auth/components/pages/MatureContentCheckCallbackPage.tsx:14 msgid "Your credit card has been checked. If the card is valid, mature content will unlock shortly. You can close this tab and return to the app." -msgstr "" -"Deine Kreditkarte wurde überprüft. Wenn die Kreditkarte gültig ist, werden " -"Inhalte für Erwachsene in Kürze freigeschaltet. Du kannst diesen Tab " -"schließen und zur App zurückkehren." +msgstr "Deine Kreditkarte wurde überprüft. Wenn die Kreditkarte gültig ist, werden Inhalte für Erwachsene in Kürze freigeschaltet. Du kannst diesen Tab schließen und zur App zurückkehren." #. Toast confirmation after the email address has been successfully updated. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:124 @@ -39421,22 +38705,16 @@ msgstr "Deine E-Mail-Adresse wurde aktualisiert." #. Required-action modal intro text when the current account email bounced and must be replaced. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:224 msgid "Your email could not receive messages. Add a working email so we can keep your account reachable." -msgstr "" -"Deine E-Mails konnten nicht zugestellt werden. Füge eine funktionierende E-" -"Mail-Adresse hinzu, damit wir deinen Account erreichbar halten können." +msgstr "Deine E-Mails konnten nicht zugestellt werden. Füge eine funktionierende E-Mail-Adresse hinzu, damit wir deinen Account erreichbar halten können." #. Required-action modal body. Explains the email needs updating because delivery failed. Product name is interpolated. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:44 msgid "Your email couldn't receive messages. Update it to continue using {productName}." -msgstr "" -"Deine E-Mail-Adresse konnte keine Nachrichten empfangen. Aktualisiere sie, " -"um {productName} weiterhin nutzen zu können." +msgstr "Deine E-Mail-Adresse konnte keine Nachrichten empfangen. Aktualisiere sie, um {productName} weiterhin nutzen zu können." #: src/features/auth/components/pages/VerifyEmailPage.tsx:97 msgid "Your email has been verified. You can now sign in to your account." -msgstr "" -"Deine E-Mail-Adresse wurde verifiziert. Du kannst dich jetzt bei deinem " -"Account anmelden." +msgstr "Deine E-Mail-Adresse wurde verifiziert. Du kannst dich jetzt bei deinem Account anmelden." #. Description text in the sounds. #: src/features/user/components/modals/tabs/notifications_tab/NotificationsTabSounds.tsx:40 @@ -39446,9 +38724,7 @@ msgstr "Deine bestehenden Benachrichtigungston-Einstellungen bleiben erhalten." #. Description text in the entrance sound section. #: src/features/user/components/modals/tabs/components/EntranceSoundSection.tsx:83 msgid "Your fallback entrance sound for all communities and direct messages. More specific settings override it." -msgstr "" -"Dein Fallback-Beitrittssound für alle Communitys und Direktnachrichten. " -"Spezifischere Einstellungen überschreiben ihn." +msgstr "Dein Fallback-Beitrittssound für alle Communitys und Direktnachrichten. Spezifischere Einstellungen überschreiben ihn." #. Empty state title in the friends list Online tab when no friends are online. Tone can be friendly. #: src/features/channel/components/friends/views/FriendsList.tsx:28 @@ -39468,9 +38744,7 @@ msgstr "Dein vollständiges Profil ist nur für deine Freunde sichtbar" #. Privacy > Profile privacy: helper text under the Small communities option. #: src/features/user/components/modals/tabs/privacy_safety_tab/ProfilePrivacyTab.tsx:33 msgid "Your full profile is visible to friends and members of your communities with 200 or fewer members" -msgstr "" -"Dein vollständiges Profil ist für Freunde und Mitglieder deiner Communitys " -"mit 200 oder weniger Mitgliedern sichtbar" +msgstr "Dein vollständiges Profil ist für Freunde und Mitglieder deiner Communitys mit 200 oder weniger Mitgliedern sichtbar" #. Privacy > Profile privacy: helper text under the Friends and all communities option. #: src/features/user/components/modals/tabs/privacy_safety_tab/ProfilePrivacyTab.tsx:25 @@ -39508,9 +38782,7 @@ msgstr "Deine IP-Adresse wurde erfolgreich autorisiert." #. Error message in the user ip banned from guild modal. Keep the tone plain and specific. #: src/features/moderation/components/alerts/UserIpBannedFromGuildModal.tsx:12 msgid "Your IP address is banned from this community and you cannot join." -msgstr "" -"Deine IP-Adresse wurde in dieser Community gebannt und du kannst ihr nicht " -"beitreten." +msgstr "Deine IP-Adresse wurde in dieser Community gebannt und du kannst ihr nicht beitreten." #. Label in the user ip banned from guild modal. Keep the tone plain and specific. #: src/features/moderation/components/alerts/UserIpBannedFromGuildModal.tsx:8 @@ -39519,17 +38791,12 @@ msgstr "Deine IP-Adresse ist gebannt" #: src/features/app/components/dialogs/components/plutonium/SelfServeRefundSection.tsx:187 msgid "Your last purchase is outside the refund window. Contact support for billing issues." -msgstr "" -"Dein letzter Kauf liegt außerhalb des Rückerstattungszeitraums. Kontaktiere " -"den Support bei Abrechnungsproblemen." +msgstr "Dein letzter Kauf liegt außerhalb des Rückerstattungszeitraums. Kontaktiere den Support bei Abrechnungsproblemen." #. Label in the message queue state. #: src/features/messaging/state/MessageQueue.tsx:82 msgid "Your message could not be delivered because it contains mature emoji or stickers that are not allowed in this context." -msgstr "" -"Deine Nachricht konnte nicht zugestellt werden, da sie Emojis oder Sticker " -"mit nicht jugendfreiem Inhalt enthält, die in diesem Kontext nicht erlaubt " -"sind." +msgstr "Deine Nachricht konnte nicht zugestellt werden, da sie Emojis oder Sticker mit nicht jugendfreiem Inhalt enthält, die in diesem Kontext nicht erlaubt sind." #. Label in the message queue state. #: src/features/messaging/state/MessageQueue.tsx:77 @@ -39544,16 +38811,12 @@ msgstr "Deine Nachricht konnte nicht zugestellt werden. Das liegt normalerweise #. Description text in the message queue state. #: src/features/messaging/state/MessageQueue.tsx:69 msgid "Your message could not be delivered. You need to claim your account to send direct messages." -msgstr "" -"Deine Nachricht konnte nicht zugestellt werden. Du musst deinen Account " -"beanspruchen, um Direktnachrichten senden zu können." +msgstr "Deine Nachricht konnte nicht zugestellt werden. Du musst deinen Account beanspruchen, um Direktnachrichten senden zu können." #. Description text in the message queue state. #: src/features/messaging/state/MessageQueue.tsx:73 msgid "Your message could not be delivered. You need to claim your account to send messages." -msgstr "" -"Deine Nachricht konnte nicht zugestellt werden. Du musst deinen Account " -"beanspruchen, um Nachrichten senden zu können." +msgstr "Deine Nachricht konnte nicht zugestellt werden. Du musst deinen Account beanspruchen, um Nachrichten senden zu können." #. Label in the message send failed modal. #: src/features/messaging/components/alerts/MessageSendFailedModal.tsx:8 @@ -39568,9 +38831,7 @@ msgstr "Deine Nachricht wurde nicht aktualisiert" #. Body of the error modal shown when a self-serve refund is no longer within the eligible window. #: src/features/app/components/dialogs/components/plutonium/SelfServeRefundSection.tsx:43 msgid "Your most recent purchase is no longer within the refund window. Contact support for billing issues." -msgstr "" -"Dein jüngster Kauf liegt nicht mehr innerhalb des Rückerstattungszeitraums. " -"Kontaktiere den Support bei Abrechnungsproblemen." +msgstr "Dein jüngster Kauf liegt nicht mehr innerhalb des Rückerstattungszeitraums. Kontaktiere den Support bei Abrechnungsproblemen." #. Placeholder text inside the new email field. Sentence-fragment hint, intentionally lowercase. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:88 @@ -39580,10 +38841,7 @@ msgstr "deine neue E-Mail-Adresse" #. Required-action modal privacy note for phone verification. limit and duration are inserted by code. #: src/features/auth/components/modals/required_action/RequiredActionDescriptors.ts:301 msgid "Your number is not linked to your account. We keep only an encrypted marker, with no user ID, for at most {limit} verifications in about {duration} days." -msgstr "" -"Deine Telefonnummer ist nicht mit deinem Account verknüpft. Wir speichern " -"nur eine verschlüsselte Markierung, ohne Benutzer-ID, für höchstens {limit} " -"Verifizierungen in etwa {duration} Tagen." +msgstr "Deine Telefonnummer ist nicht mit deinem Account verknüpft. Wir speichern nur eine verschlüsselte Markierung, ohne Benutzer-ID, für höchstens {limit} Verifizierungen in etwa {duration} Tagen." #: src/features/premium/components/pages/PremiumCallbackPage.tsx:152 msgid "Your payment was canceled. You can now close this tab and return to the app." @@ -39617,9 +38875,7 @@ msgstr "Deine Profilbeschreibung ist zu lang." #: src/features/connection/components/modals/EditConnectionModal.tsx:72 msgid "Your profile privacy is limited, so some people still won't see this connection even when Everyone is enabled." -msgstr "" -"Deine Profil-Privatsphäre ist eingeschränkt, sodass einige Personen diese " -"Verbindung nicht sehen können, selbst wenn „Jeder“ aktiviert ist." +msgstr "Deine Profil-Privatsphäre ist eingeschränkt, sodass einige Personen diese Verbindung nicht sehen können, selbst wenn „Jeder“ aktiviert ist." #. Settings search entry label. Names the settings search entry in the settings UI. #: src/features/user/components/settings_utils/search_index/GiftInventoryIndex.ts:34 @@ -39628,10 +38884,7 @@ msgstr "Deine gekauften Geschenke" #: src/features/app/components/dialogs/components/plutonium/PurchaseHistorySection.tsx:32 msgid "Your recent invoices. To change the payment method for your subscription, add or choose one in the billing portal and make it the default." -msgstr "" -"Deine letzten Rechnungen. Um die Zahlungsmethode für dein Abo zu ändern, " -"füge eine im Abrechnungsportal hinzu oder wähle eine aus und legen sie als " -"Standard fest." +msgstr "Deine letzten Rechnungen. Um die Zahlungsmethode für dein Abo zu ändern, füge eine im Abrechnungsportal hinzu oder wähle eine aus und legen sie als Standard fest." #. Short label in the region display names. Keep it concise. #: src/features/user/utils/UserGeo.ts:7 @@ -39655,10 +38908,7 @@ msgstr "Dein Abo ist abgelaufen, aber <0/> bleibt bis zum <1>{graceDate} akt #. Nagbar body shown while a premium subscription is in its grace period. {premiumProductName} is the premium product name and {formattedGraceDate} is already localized. #: src/features/app/components/layout/app_layout/nagbars/PremiumGracePeriodNagbar.tsx:22 msgid "Your subscription failed to renew, but you still have access to {premiumProductName} perks until {formattedGraceDate}. Take action now or you'll lose all perks." -msgstr "" -"Dein Abo konnte nicht verlängert werden, aber du hast noch bis zum " -"{formattedGraceDate} Zugriff auf die Vorteile von {premiumProductName}. " -"Handle jetzt, sonst verlierst du alle Vorteile." +msgstr "Dein Abo konnte nicht verlängert werden, aber du hast noch bis zum {formattedGraceDate} Zugriff auf die Vorteile von {premiumProductName}. Handle jetzt, sonst verlierst du alle Vorteile." #. Body text in the Plutonium subscription actions. Keep the tone plain and specific. #: src/features/app/components/dialogs/components/plutonium/hooks/useSubscriptionActions.ts:44 @@ -39697,16 +38947,12 @@ msgstr "Dein Abo ist nicht zur Kündigung vorgemerkt, daher gibt es nichts zu re #. Toast success shown after a Plutonium subscription is scheduled to switch to monthly billing. #: src/features/app/components/dialogs/components/plutonium/hooks/useSubscriptionActions.ts:68 msgid "Your subscription will switch to monthly billing at the next renewal." -msgstr "" -"Dein Abo wird bei der nächsten Verlängerung auf monatliche Abrechnung " -"umgestellt." +msgstr "Dein Abo wird bei der nächsten Verlängerung auf monatliche Abrechnung umgestellt." #. Toast success shown after a Plutonium subscription is scheduled to switch to yearly billing. #: src/features/app/components/dialogs/components/plutonium/hooks/useSubscriptionActions.ts:64 msgid "Your subscription will switch to yearly billing at the next renewal." -msgstr "" -"Dein Abo wird bei der nächsten Verlängerung auf jährliche Abrechnung " -"umgestellt." +msgstr "Dein Abo wird bei der nächsten Verlängerung auf jährliche Abrechnung umgestellt." #. Body of the error modal shown when a theme CSS exceeds the maximum shareable size. #: src/features/theme/components/modals/ShareThemeModal.tsx:58 diff --git a/fluxer_app/src/features/i18n/locales/el/messages.po b/fluxer_app/src/features/i18n/locales/el/messages.po index 715791b63..12648d7f2 100644 --- a/fluxer_app/src/features/i18n/locales/el/messages.po +++ b/fluxer_app/src/features/i18n/locales/el/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "Επιφάνεια εργασίας {desktopChannel} {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Ομάδα κοινότητας {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "Το {productName} δεν μπόρεσε να επικοινωνήσει με την υπηρεσία ενημερώσεων. Ελέγξτε τη σύνδεσή σας και δοκιμάστε ξανά." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "Το {productName} δεν μπόρεσε να επανεκκινηθεί στην ενημερωμένη έκδοση που έγινε λήψη. Επαναλάβετε τη διαδικασία από το κουμπί ενημέρωσης." @@ -1210,8 +1210,8 @@ msgstr "Λογότυπο {productName}" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} στο διαδίκτυο" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Ομάδα του/της {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "ένα όνομα κεντρικού υπολογιστή, π.χ. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Μια ενημέρωση για την επιφάνεια εργασίας Linux είναι διαθέσιμη. Επιλέξτε τη μορφή πακέτου για αυτό το σύστημα και το {productName} θα το αποθηκεύσει τοπικά." @@ -1990,7 +1990,7 @@ msgstr "μια δημοσκόπηση" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Απαιτείται ένα redirect_uri όταν το πεδίο εφαρμογής bot δεν είναι το μόνο πεδίο εφαρμογής." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Ένα επαναχρησιμοποιήσιμο στοιχείο για κενές καταστάσεις, σφάλματα και μηνύματα κατάστασης." @@ -3891,7 +3891,7 @@ msgstr "Εφαρμογές" msgid "Arabic" msgstr "Αραβικά" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Αρχειοθέτηση" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Αυτόματη κύλιση" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Διαθέσιμο" @@ -5243,26 +5243,6 @@ msgstr "Θάμπωμα" msgid "Blur strength" msgstr "Ένταση θολώματος" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Κείμενο" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Έντονα" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Έντονη επικεφαλίδα" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Έντονος τίτλος" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Παραλλαγές κουμπιών" msgid "Button with context menu" msgstr "Κουμπί με μενού επιλογών" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Κουμπιά" @@ -5989,11 +5969,6 @@ msgstr "Δεν είναι δυνατή η εγκατάσταση του πακέ msgid "Captcha verification failed. Try again." msgstr "Η επαλήθευση Captcha απέτυχε. Δοκιμάστε ξανά." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Λεζάντα" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Εκκαθάριση όλων των ενεργών παρακάμψεω msgid "Clear all attachment mocks" msgstr "Εκκαθάριση όλων των προεπισκοπήσεων συνημμένων" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Εκκαθάριση όλων των παρακάμψεων διακριτικών" @@ -7215,7 +7190,7 @@ msgstr "Εκκαθάριση δοκιμαστικών δεδομένων για msgid "Clear nickname" msgstr "Εκκαθάριση ψευδώνυμου" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Εκκαθάριση παρακάμψεων" @@ -7299,7 +7274,7 @@ msgstr "Διαγράφηκε το θέμα." msgid "Clearing trusted domains..." msgstr "Εκκαθάριση αξιόπιστων τομέων..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Εκκαθαρίζει γρήγορο CSS, εισαγόμενα θέματα, μεταφορτωμένα στοιχεία και τοπικές αναφορές αρχείων σε αυτήν τη συσκευή." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Πατήστε για να λάβετε το δώρο σας!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Πατήστε για αντιγραφή" @@ -8825,7 +8800,7 @@ msgstr "Αντιγραφή URL πρόσκλησης" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Αντιγραφή συνδέσμου" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Δεν ήταν δυνατή η αλλαγή του κύκλου χρέωσης" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Δεν ήταν δυνατός ο έλεγχος για ενημερώσεις" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Δεν ήταν δυνατή η διαγραφή των μηνυμάτων σας" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Δεν ήταν δυνατή η λήψη της ενημέρωσης για υπολογιστές" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Δεν ήταν δυνατή η έναρξη της σύνδεσης" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Δεν ήταν δυνατή η έναρξη της ενημέρωσης για υπολογιστές" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Έγινε κλικ στο κουμπί κινδύνου." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Είναι απενεργοποιημένο από προεπιλογή #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Τα μηνύματά σας διαγράφηκαν." msgid "Deleted." msgstr "Διαγράφηκε." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Λεπτή και ανάλαφρη τυπογραφία" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Διαθέσιμη ενημέρωση για υπολογιστή. Επιλέξτε πακέτο Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Η ενημέρωση για υπολογιστές είναι έτοιμη" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Έχει γίνει λήψη της έκδοσης για επιτραπέζιο υπολογιστή {version}. Επανεκκινήστε το {productName} για να ολοκληρώσετε την εγκατάσταση." @@ -11753,11 +11723,9 @@ msgstr "Παράβλεψη αναφοράς" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Λόγω των νόμων περί περιεχομένου ενηλίκων στην περιοχή {regionName}, αυτό το πολυμέσο δεν είναι διαθέσιμο από την τρέχουσα περιοχή σας." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Αντιγραφή" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Επεξεργασία βιογραφικού προφίλ" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Επεξεργάσιμο κείμενο" @@ -13001,7 +12969,7 @@ msgstr "Ενεργοποίηση λήξης συνημμένων" msgid "Enable audio" msgstr "Ενεργοποίηση ήχου" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Ενεργοποίηση λειτουργίας beta" @@ -13038,7 +13006,7 @@ msgstr "Ενεργοποίηση λειτουργίας προγραμματισ msgid "Enable email delivery" msgstr "Ενεργοποίηση παράδοσης email" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Ενεργοποίηση επιπλέον επιλογής" @@ -13660,7 +13628,7 @@ msgstr "Σφάλμα" msgid "error code {code}" msgstr "κωδικός σφάλματος {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Σφάλμα κατά την απόδοση περιεχομένου" @@ -14095,11 +14063,6 @@ msgstr "Οι εξωτερικοί σύνδεσμοι μπορεί να είνα msgid "Extra large" msgstr "Πολύ μεγάλο" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Πολύ λεπτή" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Πρώτο κλικ" msgid "First click pass-through when unfocused" msgstr "Πρώτο κλικ διαπερατό όταν δεν είναι εστιασμένο" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Πρώτη επιλογή" @@ -14917,10 +14880,6 @@ msgstr "Ακολουθεί κύρια ρύθμιση • {effectiveValue}%" msgid "Font" msgstr "Γραμματοσειρά" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Βάρη γραμματοσειράς" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "Από {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "από <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Γενικά" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Δημιουργήστε έναν σύνδεσμο κοινής χρήσης ή αντιγράψτε το συνδυασμένο προσαρμοσμένο CSS σας." @@ -15481,11 +15440,6 @@ msgstr "Δημιουργία νέου κωδικού" msgid "Generating code…" msgstr "Δημιουργία κωδικού…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Απαλή και ανάλαφρη εμφάνιση κειμένου" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Αυτός" msgid "Header" msgstr "Κεφαλίδα" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Επικεφαλίδα" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Ευρετηρίαση καναλιού" msgid "Indicator" msgstr "Ένδειξη" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Ενδείξεις και κατάσταση" @@ -17557,7 +17506,7 @@ msgstr "Καταστάσεις εισόδου" msgid "Input volume" msgstr "Ένταση εισόδου" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Εισαγωγή και κείμενο" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Εγκατάσταση πακέτου αυτοκόλλητων" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Εγκατεστημένο" @@ -18094,15 +18043,6 @@ msgstr "Έχει ησυχία τώρα..." msgid "Italian" msgstr "Ιταλικά" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Πλάγια" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Επίδειξη πλάγιας γραφής" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Γλώσσα" msgid "Language settings" msgstr "Ρυθμίσεις γλώσσας" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Υποστήριξη γλώσσας" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Γλώσσες" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Μεγάλο" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Διάρκεια ζωής {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Ανοιχτό" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Προεπιλεγμένη συσκευή Linux" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Πακέτο Linux" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Σήμανση του κορυφαίου καναλιού εισερχομένων ως αναγνωσμένου" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Μαρκντάουν" @@ -19945,10 +19877,8 @@ msgstr "Μέγεθος πολυμέσων" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Μέτρια" @@ -20820,7 +20750,7 @@ msgstr "Περισσότερα" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Περισσότερες ενέργειες" @@ -20993,10 +20923,6 @@ msgstr "Έλεγχος ταυτότητας δύο παραγόντων" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Πολύγλωσσο περιεχόμενο" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Οι νέοι χρήστες δεν μπορούν να εγγραφούν αυτήν τη στιγμή. Μπορείτε να δημιουργήσετε έναν λογαριασμό ή να συνδεθείτε και να δοκιμάσετε ξανά αυτόν τον σύνδεσμο αργότερα." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Νέα έκδοση" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Δεν βρέθηκαν emoji που να ταιριάζουν στην αναζήτησή σου." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Δεν βρέθηκαν emoji που να ταιριάζουν στην αναζήτηση" @@ -22363,11 +22289,6 @@ msgstr "Καθόλου" msgid "None (normal behavior)" msgstr "Κανονική συμπεριφορά" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Κανονικό" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Μόνο εσείς μπορείτε να δείτε αυτό το μήνυμα. <0>Παράβλεψη" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Διαφάνεια" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Άνοιγμα επιλογέα ημερομηνίας" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Άνοιγμα λήψεων για υπολογιστή" @@ -23165,6 +23086,11 @@ msgstr "Άνοιγμα γρήγορης εναλλαγής" msgid "Open settings" msgstr "Άνοιγμα ρυθμίσεων" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Άνοιγμα κέντρου λογισμικού" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Λειτουργικό σύστημα" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Επιλέξτε για να ενεργοποιήσετε τις πειραματικές ρυθμίσεις ελέγχου των μη αναγνωσμένων ειδοποιήσεων ανά κοινότητα και κανάλι" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Βελτιστοποιημένο για μεγαλύτερα κείμενα" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Βελτιστοποίηση κάμερας..." @@ -23483,7 +23404,7 @@ msgstr "Εκτός του παραθύρου επιστροφής χρημάτω msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Ομάδες avatar που επικαλύπτονται, εμφανίζοντας πολλούς χρήστες με αυτόματη μέτρηση υπερχείλισης." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Επικαλύψεις και μενού" @@ -23886,11 +23807,6 @@ msgstr "Ένταση ήχου ανά ήχο" msgid "Per-window audio isn't available on this build of macOS." msgstr "Ο ήχος ανά παράθυρο δεν είναι διαθέσιμος σε αυτήν την έκδοση του macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Ιδανικό για καθημερινό περιεχόμενο" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Θέση" msgid "Power saving" msgstr "Εξοικονόμηση ενέργειας" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Δυναμικό και εντυπωσιακό" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Πρωτεύον (απενεργοποιημένο)" msgid "Primary accent color" msgstr "Βασικό χρώμα έμφασης" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Κύρια ενέργεια" @@ -25724,11 +25635,6 @@ msgstr "Εγγραφή" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Οι εγγραφές είναι προς το παρόν κλειστές. Χρησιμοποίησε έναν σύνδεσμο εγγραφής από διαχειριστή για να δημιουργήσεις λογαριασμό." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Κανονική" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Κανονικό κουμπί" @@ -26198,7 +26104,7 @@ msgstr "Καταργήθηκε το όριο χρηστών." msgid "Removed timeout from {0}" msgstr "Η προσωρινή απαγόρευση χρήσης καταργήθηκε από τον/την {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Καταργεί κάθε παράκαμψη ανά μεταβλητή, αλλά διατηρεί τη βιβλιοθήκη και τα στοιχεία σας ανέπαφα." @@ -26703,7 +26609,7 @@ msgstr "Επαναφορά δεδομένων εφαρμογής" msgid "Reset app data and restart" msgstr "Επαναφορά δεδομένων εφαρμογής και επανεκκίνηση" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Επαναφορά δεδομένων προσαρμοσμένου θέματος" @@ -26714,7 +26620,7 @@ msgstr "Επαναφορά δεδομένων προσαρμοσμένου θέ #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Επαναφορά δεδομένων" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Επανεκκίνηση του {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Επανεκκίνηση του {productName}" @@ -28030,7 +27936,7 @@ msgstr "Αναζήτηση" msgid "Searching people..." msgstr "Αναζήτηση ατόμων..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Δεύτερη επιλογή" @@ -28047,7 +27953,7 @@ msgstr "Δευτερεύον (απενεργοποιημένο)" msgid "Secondary accent color" msgstr "Δευτερεύον χρώμα έμφασης" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Δευτερεύουσα ενέργεια" @@ -28339,7 +28245,7 @@ msgstr "Επιλογή: {0}" msgid "Selection: {0} (max {1})" msgstr "Επιλογή: {0} (μέγ. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Επιλογές" @@ -28369,16 +28275,6 @@ msgstr "Παράκαμψη λειτουργίας αυτο-φιλοξενίας" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Αυτοματοποιημένες επιστροφές χρημάτων είναι διαθέσιμες εντός 3 ημερών από την πληρωμή, μία φορά κάθε 30 ημέρες. Η επιστροφή χρημάτων μιας συνδρομής την ακυρώνει. Οι αγοραστές από ΕΕ/ΕΟΧ παραιτούνται από το δικαίωμα υπαναχώρησης 14 ημερών κατά την ολοκλήρωση της αγοράς για άμεση πρόσβαση στο περιεχόμενο. Χρησιμοποιήστε το κουμπί επιστροφής χρημάτων εντός της εφαρμογής αντί για αντιστροφή χρέωσης. Οι αντιστροφές χρεώσεων μπορούν να περιορίσουν μόνιμα τον λογαριασμό σας. Η Stripe χειρίζεται την πληρωμή με ασφάλεια. Δεν βλέπουμε ποτέ τον πλήρη αριθμό της κάρτας σας." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Ημίτονη" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Έντονα μεγάλα" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Ορίζει την ένταση για όλα τα ηχητικά εφ #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Ρυθμίσεις" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Αρκετοί πληκτρολογούν..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Κοινοποίηση" @@ -29002,7 +28898,7 @@ msgstr "Κοινοποίηση" msgid "Share action." msgstr "Κοινή χρήση ενέργειας." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Κοινή χρήση ενεργού προσαρμοσμένου θέματος" @@ -29035,7 +28931,7 @@ msgstr "Κοινή χρήση πηγής" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Μοιραστείτε την εμπειρία {premiumProductName} με τους φίλους σας αγοράζοντας μια συνδρομή δώρου." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Κοινή χρήση θέματος" @@ -29963,11 +29859,6 @@ msgstr "Ρυθμιστικό με διαβαθμισμένες τιμές" msgid "Sliders" msgstr "Ρυθμιστικά" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Ελαφρώς πιο έντονη έμφαση" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Ύβρεις, απάνθρωπη γλώσσα ή επιθέσεις σε προστατευμένες ομάδες." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Μικρό" @@ -30161,11 +30050,6 @@ msgstr "Κουμπώνει σε βήματα των 5." msgid "Social" msgstr "Κοινωνικά" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Απαλή και ξεκούραστη εμπειρία ανάγνωσης" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Ενδείξεις κατάστασης" msgid "Status page" msgstr "Σελίδα κατάστασης" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Κατάσταση" @@ -31291,15 +31175,6 @@ msgstr "Η Stripe ανέφερε μια κάρτα που εκδόθηκε στ msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Ισχυρή ποιότητα με μέτριο κόστος CPU. Καλή εναλλακτική Chromium για κοινή χρήση οθόνης." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Έντονη οπτική ιεραρχία" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Παραλλαγές στυλ" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Σενάρια συνδρομής" msgid "Subtext" msgstr "Υπότιτλος" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Υπότιτλος" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Δοκιμή URL unfurls και αποδοθέντων ενσωματώ #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Κείμενο" @@ -31973,6 +31841,10 @@ msgstr "Κανάλια κειμένου" msgid "Text formatting" msgstr "Μορφοποίηση κειμένου" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Το κείμενο αποδίδεται με εξομάλυνση κλίμακας του γκρι αντί για ClearType όταν είναι ενεργοποιημένη η διαφάνεια, οπότε θα φαίνεται πιο απαλό." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Η κοινότητα που ψάχνεις μπορεί να έχει διαγραφεί ή να μην έχεις πρόσβαση σε αυτήν." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Δεν ήταν δυνατή η λήψη της ενημέρωσης για την εφαρμογή υπολογιστή. Δοκιμάστε ξανά από το κουμπί ενημέρωσης όταν η σύνδεσή σας είναι σταθερή." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Η ενημέρωση για την επιφάνεια εργασίας έχει ληφθεί. Επανεκκινήστε το {productName} για να ολοκληρώσετε την εγκατάσταση." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Το αρχείο που κατεβάσατε αποθηκεύεται στον υπολογιστή σας. Εγκαταστήστε το με τον κανονικό διαχειριστή πακέτων σας." @@ -32442,12 +32314,7 @@ msgstr "Ενδέχεται να μην δέχονται μηνύματα από msgid "They're not accepting friend requests right now." msgstr "Δεν δέχονται αιτήματα φιλίας αυτήν τη στιγμή." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Λεπτή" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Τρίτη επιλογή" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Αυτό είναι ένα πολύ \"βαρύ\" μήνυμα. Πρέπει να αφαιρέσεις κάποιες αντιδράσεις για να μπορέσεις να προσθέσεις κι άλλες." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Αυτό είναι ένα παράδειγμα κειμένου στο πεδίο κειμένου." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Αυτή είναι η περιγραφή της πρώτης επιλογής" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Αυτή είναι η περιγραφή της δεύτερης επιλογής" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Αυτή είναι η περιγραφή της τρίτης επιλογής" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Αυτό καταργεί κάθε προσαρμοσμένη συντόμευση και ενεργοποιεί ξανά όλες τις ενσωματωμένες συντομεύσεις. Αυτό δεν μπορεί να αναιρεθεί." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Αυτός ο σύνδεσμος επαναφοράς έχει λήξει. Οι σύνδεσμοι επαναφοράς διαρκούν 24 ώρες. Ζητήστε έναν νέο." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Αυτός ο σύνδεσμος επαναφοράς έχει λήξει. Οι σύνδεσμοι επαναφοράς ισχύουν για 1 ώρα. Ζητήστε έναν νέο." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Αυτός ο διακόπτης είναι απενεργοποιημέ msgid "This switch is disabled in the checked state" msgstr "Αυτός ο διακόπτης είναι απενεργοποιημένος όταν είναι επιλεγμένος" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Αυτό το κείμενο δείχνει έντονη γραφή επικεφαλίδας" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Αυτό το κείμενο δείχνει έντονη γραφή τίτλου" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Αυτό το κείμενο δείχνει πλάγια γραφή" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Αυτό το κείμενο δείχνει έντονη γραφή σε μεγάλο μέγεθος" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Αυτό το κείμενο δείχνει κανονική μορφοποίηση" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Αυτό το κείμενο δείχνει ημιέντονη γραφή" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Αυτό το πεδίο κειμένου επεκτείνεται αυτόματα από 4 έως 12 γραμμές καθώς πληκτρολογείτε." @@ -33417,11 +33254,6 @@ msgstr "Ζώνη ώρας" msgid "Tip" msgstr "Συμβουλή" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Τίτλος" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Πληκτρολογήστε ένα χρώμα (δεκαεξαδικό, msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Πληκτρολογήστε ένα χρώμα (δεκαεξαδικό, rgb(), hsl() ή όνομα) ή χρησιμοποιήστε την επιλογή." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Μέγεθος γραμματοσειράς" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Μόνο ένδειξη πληκτρολόγησης" msgid "Typing state" msgstr "Κατάσταση πληκτρολόγησης" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Τυπογραφία" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Επίδειξη κλίμακας τυπογραφίας" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Καθολική εφεδρική επιλογή. Η χαμηλότερ #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Άγνωστο" @@ -34649,8 +34469,8 @@ msgstr "Απεριόριστα emoji" msgid "Unlimited stickers" msgstr "Απεριόριστα αυτοκόλλητα" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Ξεκλειδώστε {lockedEmojiCount, plural, one {# προσαρμοσμένο emoji} other {# προσαρμοσμένα emoji}} από {communityCount, plural, one {# κοινότητα} other {# κοινότητες}} με το {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Κανάλι χωρίς όνομα" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Ομάδα χωρίς όνομα" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Ενημερώσαμε τις πολιτικές μας. Ελέγξτε και αποδεχτείτε τις για να συνεχίσετε." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Επεξεργάζεστε το προφίλ σας για αυτήν την κοινότητα. Αυτό το προφίλ θα είναι ορατό μόνο σε αυτήν την κοινότητα και θα αντικαταστήσει το γενικό σας προφίλ." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Είστε πλέον προγραμματιστής!" diff --git a/fluxer_app/src/features/i18n/locales/en-GB/messages.po b/fluxer_app/src/features/i18n/locales/en-GB/messages.po index eadededaf..3d0ab4280 100644 --- a/fluxer_app/src/features/i18n/locales/en-GB/messages.po +++ b/fluxer_app/src/features/i18n/locales/en-GB/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} Desktop {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName} Community Team" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} could not reach the update service. Check your connection and try again." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} could not restart into the downloaded update. Try again from the update button." @@ -1210,8 +1210,8 @@ msgstr "{productName} wordmark" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} online" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "{resolvedName}'s group" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "a hostname, e.g. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." @@ -1990,7 +1990,7 @@ msgstr "a poll" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "A redirect_uri is required when the bot scope isn't the only scope." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "A reusable component for empty states, errors, and status messages." @@ -3891,7 +3891,7 @@ msgstr "Apps" msgid "Arabic" msgstr "Arabic" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Archive" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Autoscrolling" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Available" @@ -5243,26 +5243,6 @@ msgstr "Blur" msgid "Blur strength" msgstr "Blur strength" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Body" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Bold" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Bold heading" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Bold title" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Button variants" msgid "Button with context menu" msgstr "Button with context menu" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Buttons" @@ -5989,11 +5969,6 @@ msgstr "Cannot install sticker pack" msgid "Captcha verification failed. Try again." msgstr "Captcha verification failed. Please try again." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Caption" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Clear all active overrides" msgid "Clear all attachment mocks" msgstr "Clear all attachment mocks" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Clear all token overrides" @@ -7215,7 +7190,7 @@ msgstr "Clear mock for this attachment" msgid "Clear nickname" msgstr "Clear nickname" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Clear overrides" @@ -7299,7 +7274,7 @@ msgstr "Cleared the topic." msgid "Clearing trusted domains..." msgstr "Clearing trusted domains…" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Click to claim your gift!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Click to copy" @@ -8825,7 +8800,7 @@ msgstr "Copy invite URL" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Copy link" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Couldn't change your billing cycle" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Couldn't check for updates" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Couldn't delete your messages" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Couldn't download the desktop update" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Couldn't start the connection" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Couldn't start the desktop update" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Danger button clicked." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Defaults to off on mobile to preserve battery life and data usage." #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Deleted your messages." msgid "Deleted." msgstr "Deleted." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Delicate and light typography" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Desktop update available. Choose a Linux package." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Desktop update ready" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Desktop version {version} has been downloaded. Restart {productName} to finish installing." @@ -11753,11 +11723,9 @@ msgstr "Dismiss mention" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Due to mature content laws in {regionName}, this media is not available from your current region." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Duplicate" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Edit your profile bio" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Editable text" @@ -13001,7 +12969,7 @@ msgstr "Enable attachment expiry" msgid "Enable audio" msgstr "Enable audio" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Enable beta feature" @@ -13038,7 +13006,7 @@ msgstr "Enable developer mode" msgid "Enable email delivery" msgstr "Enable email delivery" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Enable extra option" @@ -13660,7 +13628,7 @@ msgstr "Error" msgid "error code {code}" msgstr "error code {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Error rendering content" @@ -14095,11 +14063,6 @@ msgstr "External links can be dangerous. Be careful." msgid "Extra large" msgstr "Extra large" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Extra light" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "First click" msgid "First click pass-through when unfocused" msgstr "First click passthrough when unfocused" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "First option" @@ -14917,10 +14880,6 @@ msgstr "Following master • {effectiveValue}%" msgid "Font" msgstr "Font" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Font weights" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "From {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "from <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "General" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Generate a shareable link or copy your combined custom CSS." @@ -15481,11 +15440,6 @@ msgstr "Generate new code" msgid "Generating code…" msgstr "Generating code…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Gentle and airy text display" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "He" msgid "Header" msgstr "Header" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Heading" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Indexing channel" msgid "Indicator" msgstr "Indicator" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indicators & status" @@ -17557,7 +17506,7 @@ msgstr "Input states" msgid "Input volume" msgstr "Input volume" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Inputs & text" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Install sticker pack" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Installed" @@ -18094,15 +18043,6 @@ msgstr "It's quiet for now..." msgid "Italian" msgstr "Italian" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Italic" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Italic style demonstration" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Language" msgid "Language settings" msgstr "Language settings" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Language support" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Languages" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Large" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Lifetime {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Light" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux default" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux package" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Mark top inbox channel as read" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Media size" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Medium" @@ -20820,7 +20750,7 @@ msgstr "More" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "More actions" @@ -20993,10 +20923,6 @@ msgstr "Multi-factor" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Multilingual content" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "New users can't join right now. You can still create an account or sign in, then try this link again later." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "New version" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "No emojis found matching your search." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "No emojis match that search" @@ -22363,11 +22289,6 @@ msgstr "None" msgid "None (normal behavior)" msgstr "None (normal behaviour)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normal" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Only you can see this message. <0>Dismiss" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Opacity" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Open date picker" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Open desktop downloads" @@ -23165,6 +23086,11 @@ msgstr "Open quick switcher" msgid "Open settings" msgstr "Open settings" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Open software centre" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Operating system" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Opt into experimental per-community and per-channel unread badge controls" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimised for longer reading passages" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Optimising camera..." @@ -23483,7 +23404,7 @@ msgstr "Outside the refund window" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Overlapping avatar groups showing multiple users with automatic overflow counts." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Overlays & menus" @@ -23886,11 +23807,6 @@ msgstr "Volume per sound" msgid "Per-window audio isn't available on this build of macOS." msgstr "Per-window audio isn't available on this build of macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Perfect for everyday content" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Position" msgid "Power saving" msgstr "Power saving" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Powerful and attention-grabbing" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Primary (disabled)" msgid "Primary accent color" msgstr "Primary accent colour" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Primary action" @@ -25724,11 +25635,6 @@ msgstr "Registration" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Registration is currently closed. Use a registration link from an admin to create an account." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Regular" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Regular button" @@ -26198,7 +26104,7 @@ msgstr "Removed the user limit." msgid "Removed timeout from {0}" msgstr "Removed timeout from {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Removes every per-variable override but keeps your library and assets intact." @@ -26703,7 +26609,7 @@ msgstr "Reset app data" msgid "Reset app data and restart" msgstr "Reset app data and restart" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Reset custom theme data" @@ -26714,7 +26620,7 @@ msgstr "Reset custom theme data?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Reset data" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Restart {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Restart {productName}" @@ -28030,7 +27936,7 @@ msgstr "Searching" msgid "Searching people..." msgstr "Searching for people..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Second option" @@ -28047,7 +27953,7 @@ msgstr "Secondary (disabled)" msgid "Secondary accent color" msgstr "Secondary accent colour" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Secondary action" @@ -28339,7 +28245,7 @@ msgstr "Selection: {0}" msgid "Selection: {0} (max {1})" msgstr "Selection: {0} (max {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Selections" @@ -28369,16 +28275,6 @@ msgstr "Self-hosted mode override" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Self-service refunds are available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Please use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payments securely. We never see your full card number." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Semi-bold" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Semi-bold large" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28658,13 +28554,11 @@ msgstr "sent an embed" msgid "Sent messages" msgstr "Sent messages" -# auto-i18n: reviewed unchanged #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:131 msgid "Sequential send" msgstr "Sequential send" -# auto-i18n: reviewed unchanged #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:143 msgid "Serial send" @@ -28953,7 +28847,7 @@ msgstr "Sets the level for every sound effect. Per-sound overrides ignore this." #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Settings" @@ -28993,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Several people are typing..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Share" @@ -29004,7 +28898,7 @@ msgstr "Share" msgid "Share action." msgstr "Share action." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Share active custom theme" @@ -29037,7 +28931,7 @@ msgstr "Share source" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Share theme" @@ -29965,11 +29859,6 @@ msgstr "Slider with step values" msgid "Sliders" msgstr "Sliders" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Slightly bolder emphasis" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30078,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Slurs, dehumanising language, or attacks on protected groups." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Small" @@ -30163,11 +30050,6 @@ msgstr "Snaps to increments of 5." msgid "Social" msgstr "Social" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Soft and easy reading experience" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30879,7 +30761,7 @@ msgstr "Status indicators" msgid "Status page" msgstr "Status page" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Status slate" @@ -31293,15 +31175,6 @@ msgstr "Stripe reported a card issued in {countryName}. To pay in this localised msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Strong visual hierarchy" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Style variations" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31348,11 +31221,6 @@ msgstr "Subscription scenarios" msgid "Subtext" msgstr "Subtext" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Subtitle" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31937,10 +31805,8 @@ msgstr "Test URL unfurls and rendered embeds" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Text" @@ -31975,6 +31841,10 @@ msgstr "Text channels" msgid "Text formatting" msgstr "Text formatting" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32163,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "The community you're looking for may have been deleted or you may not have access to it." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "The desktop update could not be downloaded. Try again from the update button when your connection is stable." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "The desktop update has been downloaded. Restart {productName} to finish installing." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "The downloaded file is saved to your computer. Install it with your normal package manager." @@ -32444,12 +32314,7 @@ msgstr "They might not be accepting messages from you, or you no longer share a msgid "They're not accepting friend requests right now." msgstr "They're not accepting friend requests right now." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Thin" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Third option" @@ -32872,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "This is one heavy message. Some reactions need to be removed before you can add more." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "This is some example text in the text area." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "This is the first option description" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "This is the second option description" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "This is the third option description" @@ -33036,9 +32901,10 @@ msgstr "This removes all trusted domains. You'll see the external link warning f msgid "This removes every custom shortcut and re-enables all built-in shortcuts. This cannot be undone." msgstr "This removes every custom shortcut and re-enables all built-in shortcuts. This cannot be undone." +# auto-i18n: reviewed unchanged #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "This reset link has expired. Reset links last 24 hours. Request a new one." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "This reset link has expired. Reset links last 1 hour. Please request a new one." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33065,36 +32931,6 @@ msgstr "This switch is disabled and cannot be toggled" msgid "This switch is disabled in the checked state" msgstr "This switch is disabled when checked" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "This text demonstrates bold heading styling" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "This text demonstrates bold title styling" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "This text demonstrates italic styling" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "This text demonstrates large semi-bold styling" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "This text demonstrates normal styling" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "This text demonstrates semi-bold styling" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "This text area automatically expands to between 4 and 12 rows as you type." @@ -33419,11 +33255,6 @@ msgstr "Time zone" msgid "Tip" msgstr "Tip" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Title" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34118,10 +33949,6 @@ msgstr "Type a colour (hex, rgb(), hsl, or name), or use the picker." msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Type a colour (hex, rgb(), hsl(), or name) or use the picker." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Type scale" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34170,14 +33997,6 @@ msgstr "Typing indicator only" msgid "Typing state" msgstr "Typing status" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Typography" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Typography scale demonstration" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34496,7 +34315,7 @@ msgstr "Universal fallback. Lowest quality, but works everywhere." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Unknown" @@ -34651,8 +34470,8 @@ msgstr "Unlimited emoji" msgid "Unlimited stickers" msgstr "Unlimited stickers" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." @@ -34798,7 +34617,7 @@ msgstr "Unnamed channel" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Unnamed group" @@ -37335,7 +37154,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "We've updated our policies. Please review and accept them to continue." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37919,7 +37738,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "You're editing your profile for this community. It'll only be visible here and will override your global profile." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "You are now a developer!" diff --git a/fluxer_app/src/features/i18n/locales/en-US/messages.po b/fluxer_app/src/features/i18n/locales/en-US/messages.po index 9c1191aec..bfb035366 100644 --- a/fluxer_app/src/features/i18n/locales/en-US/messages.po +++ b/fluxer_app/src/features/i18n/locales/en-US/messages.po @@ -619,7 +619,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} Desktop {desktopVersion}" @@ -1090,12 +1090,12 @@ msgid "{productName} Community Team" msgstr "{productName} Community Team" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} could not reach the update service. Check your connection and try again." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} could not restart into the downloaded update. Try again from the update button." @@ -1211,8 +1211,8 @@ msgstr "{productName} wordmark" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1243,7 +1243,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} online" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "{resolvedName}'s group" @@ -1962,7 +1962,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "a hostname, e.g. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." @@ -1991,7 +1991,7 @@ msgstr "a poll" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "A redirect_uri is required when the bot scope is not the only scope." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "A reusable component for empty states, errors, and status messages." @@ -3892,7 +3892,7 @@ msgstr "Apps" msgid "Arabic" msgstr "Arabic" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Archive" @@ -4668,7 +4668,7 @@ msgid "Autoscrolling" msgstr "Autoscrolling" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Available" @@ -5244,26 +5244,6 @@ msgstr "Blur" msgid "Blur strength" msgstr "Blur strength" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Body" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Bold" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Bold heading" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Bold title" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5591,7 +5571,7 @@ msgstr "Button variants" msgid "Button with context menu" msgstr "Button with context menu" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Buttons" @@ -5990,11 +5970,6 @@ msgstr "Cannot install sticker pack" msgid "Captcha verification failed. Try again." msgstr "Captcha verification failed. Try again." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Caption" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7180,7 +7155,7 @@ msgstr "Clear all active overrides" msgid "Clear all attachment mocks" msgstr "Clear all attachment mocks" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Clear all token overrides" @@ -7216,7 +7191,7 @@ msgstr "Clear mock for this attachment" msgid "Clear nickname" msgstr "Clear nickname" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Clear overrides" @@ -7300,7 +7275,7 @@ msgstr "Cleared the topic." msgid "Clearing trusted domains..." msgstr "Clearing trusted domains..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." @@ -7342,7 +7317,7 @@ msgid "Click to claim your gift!" msgstr "Click to claim your gift!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Click to copy" @@ -8826,7 +8801,7 @@ msgstr "Copy invite URL" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Copy link" @@ -9066,7 +9041,7 @@ msgid "Couldn't change your billing cycle" msgstr "Couldn't change your billing cycle" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Couldn't check for updates" @@ -9173,7 +9148,7 @@ msgid "Couldn't delete your messages" msgstr "Couldn't delete your messages" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Couldn't download the desktop update" @@ -9427,7 +9402,7 @@ msgid "Couldn't start the connection" msgstr "Couldn't start the connection" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Couldn't start the desktop update" @@ -10303,7 +10278,7 @@ msgid "Danger button clicked." msgstr "Danger button clicked." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10670,7 +10645,7 @@ msgstr "Defaults to off on mobile to preserve battery life and data usage." #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10965,11 +10940,6 @@ msgstr "Deleted your messages." msgid "Deleted." msgstr "Deleted." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Delicate and light typography" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11146,12 +11116,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Desktop update available. Choose a Linux package." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Desktop update ready" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Desktop version {version} has been downloaded. Restart {productName} to finish installing." @@ -11754,11 +11724,9 @@ msgstr "Dismiss mention" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12306,7 +12274,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Due to mature content laws in {regionName}, this media is not available from your current region." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Duplicate" @@ -12591,7 +12559,7 @@ msgid "Edit your profile bio" msgstr "Edit your profile bio" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Editable text" @@ -13002,7 +12970,7 @@ msgstr "Enable attachment expiry" msgid "Enable audio" msgstr "Enable audio" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Enable beta feature" @@ -13039,7 +13007,7 @@ msgstr "Enable developer mode" msgid "Enable email delivery" msgstr "Enable email delivery" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Enable extra option" @@ -13661,7 +13629,7 @@ msgstr "Error" msgid "error code {code}" msgstr "error code {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Error rendering content" @@ -14096,11 +14064,6 @@ msgstr "External links can be dangerous. Be careful." msgid "Extra large" msgstr "Extra large" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Extra light" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14792,7 +14755,7 @@ msgstr "First click" msgid "First click pass-through when unfocused" msgstr "First click pass-through when unfocused" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "First option" @@ -14918,10 +14881,6 @@ msgstr "Following master • {effectiveValue}%" msgid "Font" msgstr "Font" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Font weights" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15365,7 +15324,7 @@ msgid "From {start}" msgstr "From {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "from <0>{0}" @@ -15461,7 +15420,7 @@ msgstr "GDPR" msgid "General" msgstr "General" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Generate a shareable link or copy your combined custom CSS." @@ -15482,11 +15441,6 @@ msgstr "Generate new code" msgid "Generating code…" msgstr "Generating code…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Gentle and airy text display" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16268,11 +16222,6 @@ msgstr "He" msgid "Header" msgstr "Header" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Heading" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17430,7 +17379,7 @@ msgstr "Indexing channel" msgid "Indicator" msgstr "Indicator" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indicators & status" @@ -17558,7 +17507,7 @@ msgstr "Input states" msgid "Input volume" msgstr "Input volume" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Inputs & text" @@ -17591,7 +17540,7 @@ msgid "Install sticker pack" msgstr "Install sticker pack" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Installed" @@ -18095,15 +18044,6 @@ msgstr "It's quiet for now..." msgid "Italian" msgstr "Italian" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Italic" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Italic style demonstration" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18533,10 +18473,6 @@ msgstr "Language" msgid "Language settings" msgstr "Language settings" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Language support" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18545,9 +18481,7 @@ msgid "Languages" msgstr "Languages" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Large" @@ -18823,9 +18757,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Lifetime {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Light" @@ -19013,7 +18945,7 @@ msgid "Linux default" msgstr "Linux default" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux package" @@ -19614,7 +19546,7 @@ msgid "Mark top inbox channel as read" msgstr "Mark top inbox channel as read" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19946,10 +19878,8 @@ msgstr "Media size" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Medium" @@ -20821,7 +20751,7 @@ msgstr "More" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "More actions" @@ -20994,10 +20924,6 @@ msgstr "Multi factor" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Multilingual content" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21654,7 +21580,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "New users can't join right now. You can still create an account or sign in, then try this link again later." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "New version" @@ -21922,7 +21848,7 @@ msgid "No emojis found matching your search." msgstr "No emojis found matching your search." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "No emojis match that search" @@ -22364,11 +22290,6 @@ msgstr "None" msgid "None (normal behavior)" msgstr "None (normal behavior)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normal" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22793,7 +22714,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Only you can see this message. <0>Dismiss" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Opacity" @@ -22971,7 +22892,7 @@ msgid "Open date picker" msgstr "Open date picker" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Open desktop downloads" @@ -23166,6 +23087,11 @@ msgstr "Open quick switcher" msgid "Open settings" msgstr "Open settings" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Open software center" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23312,11 +23238,6 @@ msgstr "Operating system" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Opt into experimental per-community and per-channel unread badge controls" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimized for longer reading passages" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Optimizing camera..." @@ -23484,7 +23405,7 @@ msgstr "Outside the refund window" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Overlapping avatar groups showing multiple users with automatic overflow counts." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Overlays & menus" @@ -23887,11 +23808,6 @@ msgstr "Per-sound volume" msgid "Per-window audio isn't available on this build of macOS." msgstr "Per-window audio isn't available on this build of macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Perfect for everyday content" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24418,11 +24334,6 @@ msgstr "Position" msgid "Power saving" msgstr "Power saving" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Powerful and attention-grabbing" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24692,7 +24603,7 @@ msgstr "Primary (disabled)" msgid "Primary accent color" msgstr "Primary accent color" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Primary action" @@ -25725,11 +25636,6 @@ msgstr "Registration" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Registration is currently closed. Use a registration link from an admin to create an account." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Regular" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Regular button" @@ -26199,7 +26105,7 @@ msgstr "Removed the user limit." msgid "Removed timeout from {0}" msgstr "Removed timeout from {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Removes every per-variable override but keeps your library and assets intact." @@ -26704,7 +26610,7 @@ msgstr "Reset app data" msgid "Reset app data and restart" msgstr "Reset app data and restart" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Reset custom theme data" @@ -26715,7 +26621,7 @@ msgstr "Reset custom theme data?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Reset data" @@ -26855,7 +26761,7 @@ msgid "Restart {appName}" msgstr "Restart {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Restart {productName}" @@ -28031,7 +27937,7 @@ msgstr "Searching" msgid "Searching people..." msgstr "Searching people..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Second option" @@ -28048,7 +27954,7 @@ msgstr "Secondary (disabled)" msgid "Secondary accent color" msgstr "Secondary accent color" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Secondary action" @@ -28340,7 +28246,7 @@ msgstr "Selection: {0}" msgid "Selection: {0} (max {1})" msgstr "Selection: {0} (max {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Selections" @@ -28370,16 +28276,6 @@ msgstr "Self-hosted mode override" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Semi bold" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Semi-bold large" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28952,7 +28848,7 @@ msgstr "Sets the level for every sound effect. Per-sound overrides ignore this." #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Settings" @@ -28992,9 +28888,9 @@ msgid "Several people are typing..." msgstr "Several people are typing..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Share" @@ -29003,7 +28899,7 @@ msgstr "Share" msgid "Share action." msgstr "Share action." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Share active custom theme" @@ -29036,7 +28932,7 @@ msgstr "Share source" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Share theme" @@ -29964,11 +29860,6 @@ msgstr "Slider with step values" msgid "Sliders" msgstr "Sliders" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Slightly bolder emphasis" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30077,9 +29968,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Slurs, dehumanizing language, or attacks on protected groups." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Small" @@ -30162,11 +30051,6 @@ msgstr "Snaps to increments of 5." msgid "Social" msgstr "Social" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Soft and easy reading experience" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30878,7 +30762,7 @@ msgstr "Status indicators" msgid "Status page" msgstr "Status page" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Status slate" @@ -31292,15 +31176,6 @@ msgstr "Stripe reported a card issued in {countryName}. To pay in this localized msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Strong visual hierarchy" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Style variations" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31347,11 +31222,6 @@ msgstr "Subscription scenarios" msgid "Subtext" msgstr "Subtext" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Subtitle" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31936,10 +31806,8 @@ msgstr "Test URL unfurls and rendered embeds" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Text" @@ -31974,6 +31842,10 @@ msgstr "Text channels" msgid "Text formatting" msgstr "Text formatting" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32162,17 +32034,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "The community you're looking for may have been deleted or you may not have access to it." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "The desktop update could not be downloaded. Try again from the update button when your connection is stable." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "The desktop update has been downloaded. Restart {productName} to finish installing." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "The downloaded file is saved to your computer. Install it with your normal package manager." @@ -32443,12 +32315,7 @@ msgstr "They might not be accepting messages from you, or you no longer share a msgid "They're not accepting friend requests right now." msgstr "They're not accepting friend requests right now." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Thin" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Third option" @@ -32871,19 +32738,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "This is one heavy message. Some reactions need to be removed before you can add more." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "This is some example text in the textarea." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "This is the first option description" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "This is the second option description" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "This is the third option description" @@ -33036,8 +32903,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "This removes every custom shortcut and re-enables all built-in shortcuts. This cannot be undone." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "This reset link has expired. Reset links last 24 hours. Request a new one." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "This reset link has expired. Reset links last 1 hour. Please request a new one." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33064,36 +32931,6 @@ msgstr "This switch is disabled and cannot be toggled" msgid "This switch is disabled in the checked state" msgstr "This switch is disabled in the checked state" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "This text demonstrates bold heading styling" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "This text demonstrates bold title styling" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "This text demonstrates italic styling" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "This text demonstrates large semi-bold styling" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "This text demonstrates normal styling" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "This text demonstrates semi-bold styling" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "This textarea auto-expands between 4 and 12 rows as you type." @@ -33418,11 +33255,6 @@ msgstr "Timezone" msgid "Tip" msgstr "Tip" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Title" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34117,10 +33949,6 @@ msgstr "Type a color (hex, rgb(), hsl, or name), or use the picker." msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Type a color (hex, rgb(), hsl(), or name) or use the picker." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Type scale" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34169,14 +33997,6 @@ msgstr "Typing indicator only" msgid "Typing state" msgstr "Typing state" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Typography" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Typography scale demonstration" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34495,7 +34315,7 @@ msgstr "Universal fallback. Lowest quality, but it works everywhere." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Unknown" @@ -34650,8 +34470,8 @@ msgstr "Unlimited emoji" msgid "Unlimited stickers" msgstr "Unlimited stickers" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." @@ -34797,7 +34617,7 @@ msgstr "Unnamed channel" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Unnamed group" @@ -37334,7 +37154,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "We've updated our policies. Review and accept them to continue." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37918,7 +37738,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "You are editing your per-community profile. This profile will only be visible in this community and will override your global profile." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "You are now a developer!" diff --git a/fluxer_app/src/features/i18n/locales/es-419/messages.po b/fluxer_app/src/features/i18n/locales/es-419/messages.po index 675f3877b..1128a0b0c 100644 --- a/fluxer_app/src/features/i18n/locales/es-419/messages.po +++ b/fluxer_app/src/features/i18n/locales/es-419/messages.po @@ -10,8 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "PO-Revision-Date: 2026-07-04 12:18+0000\n" "Last-Translator: Eyeflame \n" -"Language-Team: Spanish (Latin America) \n" +"Language-Team: Spanish (Latin America) \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Description text in the messages tab. @@ -619,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} para escritorio {desktopVersion}" @@ -1090,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Equipo de la comunidad de {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} no pudo contactar con el servicio de actualizaciones. Comprueba tu conexión e inténtalo de nuevo." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} no pudo reiniciarse para aplicar la actualización descargada. Inténtalo de nuevo desde el botón de actualización." @@ -1211,8 +1210,8 @@ msgstr "{productName} marca denominativa" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} web {buildVersion}" @@ -1243,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} en línea" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Grupo de {resolvedName}" @@ -1962,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "un nombre de host, p. ej. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Hay una actualización de Fluxer disponible para escritorio en Linux. Elija el formato del paquete para este sistema y {productName} lo guardará localmente." @@ -1991,7 +1990,7 @@ msgstr "una encuesta" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Se requiere una redirect_uri cuando el \"bot\" no es el único alcance." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Un componente reutilizable para estados vacíos, errores y mensajes de estado." @@ -3892,7 +3891,7 @@ msgstr "Aplicaciones" msgid "Arabic" msgstr "Árabe" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Archivar" @@ -4668,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Desplazamiento automático" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Disponible" @@ -5244,26 +5243,6 @@ msgstr "Desenfoque" msgid "Blur strength" msgstr "Intensidad del desenfoque" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Cuerpo" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Negrita" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Encabezado en negrita" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Título en negrita" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5591,7 +5570,7 @@ msgstr "Variantes de botón" msgid "Button with context menu" msgstr "Botón con menú contextual" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Botones" @@ -5990,11 +5969,6 @@ msgstr "No se puede instalar el paquete de stickers" msgid "Captcha verification failed. Try again." msgstr "Falló la verificación del captcha. Intenta de nuevo." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Título" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7180,7 +7154,7 @@ msgstr "Borrar todas las anulaciones activas" msgid "Clear all attachment mocks" msgstr "Borrar todos los archivos adjuntos de prueba" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Borrar todas las anulaciones de tokens" @@ -7216,7 +7190,7 @@ msgstr "Borrar simulación para este adjunto" msgid "Clear nickname" msgstr "Borrar apodo" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Borrar anulaciones" @@ -7300,7 +7274,7 @@ msgstr "Se borró el tema." msgid "Clearing trusted domains..." msgstr "Borrando dominios de confianza..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Borra el CSS rápido, los temas importados, los recursos subidos y las referencias de archivos locales en este dispositivo." @@ -7342,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "¡Toca para reclamar tu regalo!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Toca para copiar" @@ -8826,7 +8800,7 @@ msgstr "Copiar enlace de invitación" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Copiar enlace" @@ -9066,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "No se pudo cambiar tu ciclo de facturación" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "No se pudieron buscar actualizaciones" @@ -9173,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "No se pudieron eliminar tus mensajes" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "No se pudo descargar la actualización de escritorio" @@ -9427,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "No se pudo iniciar la conexión" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "No se pudo iniciar la actualización de escritorio" @@ -10303,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Se hizo clic en el botón de peligro." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10670,7 +10644,7 @@ msgstr "Viene desactivado por defecto en celulares para ahorrar batería y datos #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10965,11 +10939,6 @@ msgstr "Mensajes eliminados." msgid "Deleted." msgstr "Eliminado." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Tipografía delicada y ligera" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11146,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Actualización de escritorio disponible. Elige un paquete de Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Actualización de escritorio lista" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "La versión de escritorio {version} se ha descargado. Reinicia {productName} para finalizar la instalación." @@ -11754,11 +11723,9 @@ msgstr "Descartar mención" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12306,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Debido a las leyes de contenido para adultos en {regionName}, este contenido multimedia no está disponible en tu región actual." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Duplicar" @@ -12591,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Editar tu biografía del perfil" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Texto editable" @@ -13002,7 +12969,7 @@ msgstr "Habilitar caducidad de archivos adjuntos" msgid "Enable audio" msgstr "Activar audio" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Activar función beta" @@ -13039,7 +13006,7 @@ msgstr "Activar el modo de desarrollador" msgid "Enable email delivery" msgstr "Habilitar entrega de correo electrónico" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Activar opción adicional" @@ -13248,9 +13215,7 @@ msgstr "Preferencia de codificador para nuevos flujos de pantalla." #. Settings search entry description. One-line summary of what the settings search entry controls. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:164 msgid "Encoder, SVC, backup stream, and bitrate presets" -msgstr "" -"Codificador, SVC, flujo secundario y ajustes preestablecidos de velocidad de " -"bits" +msgstr "Codificador, SVC, flujo secundario y ajustes preestablecidos de velocidad de bits" #. IAR modal: rule label. #: src/features/moderation/components/report_modal/IARModalCopy.ts:375 @@ -13663,7 +13628,7 @@ msgstr "Error" msgid "error code {code}" msgstr "código de error {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Error al mostrar el contenido" @@ -14098,11 +14063,6 @@ msgstr "Los enlaces externos pueden ser peligrosos. Ten cuidado." msgid "Extra large" msgstr "Extragrande" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Extraligera" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14794,7 +14754,7 @@ msgstr "Primer clic" msgid "First click pass-through when unfocused" msgstr "Primer clic de paso cuando no está enfocado" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Primera opción" @@ -14920,10 +14880,6 @@ msgstr "Siguiendo al principal • {effectiveValue}%" msgid "Font" msgstr "Fuente" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Pesos de fuente" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15367,7 +15323,7 @@ msgid "From {start}" msgstr "Desde el {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "de <0>{0}" @@ -15463,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "General" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Genera un enlace para compartir o copia tu CSS personalizado combinado." @@ -15484,11 +15440,6 @@ msgstr "Generar código nuevo" msgid "Generating code…" msgstr "Generando código…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Texto suave y ligero" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16270,11 +16221,6 @@ msgstr "Él" msgid "Header" msgstr "Encabezado" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Encabezado" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17432,7 +17378,7 @@ msgstr "Indexando canal" msgid "Indicator" msgstr "Indicador" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indicadores y estado" @@ -17560,7 +17506,7 @@ msgstr "Estados de entrada" msgid "Input volume" msgstr "Volumen de entrada" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Entrada y texto" @@ -17593,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Instalar paquete de stickers" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Instalado" @@ -18097,15 +18043,6 @@ msgstr "Por ahora está tranquilo..." msgid "Italian" msgstr "Italiano" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Cursiva" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Demostración de estilo cursiva" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18387,9 +18324,7 @@ msgstr "Mantener todos los mensajes" #. Settings search entry description. One-line summary of what the settings search entry controls. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:66 msgid "Keep animations, GIFs, hover, and tooltips running unfocused" -msgstr "" -"Mantén las animaciones, GIF, efectos visuales y consejos activos incluso " -"cuando la ventana no esté enfocada" +msgstr "Mantén las animaciones, GIF, efectos visuales y consejos activos incluso cuando la ventana no esté enfocada" #. Description for the mirror premium model. #: src/features/app/components/setup/SetupWizardSteps.tsx:314 @@ -18537,10 +18472,6 @@ msgstr "Idioma" msgid "Language settings" msgstr "Idioma" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Soporte de idiomas" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18549,9 +18480,7 @@ msgid "Languages" msgstr "Idiomas" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Grande" @@ -18827,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "De por vida {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Claro" @@ -19017,7 +18944,7 @@ msgid "Linux default" msgstr "Predeterminado de Linux" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Paquete para Linux" @@ -19618,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Marcar como leído el canal principal de la bandeja de entrada" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19950,10 +19877,8 @@ msgstr "Tamaño de los archivos multimedia" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Medio" @@ -20825,7 +20750,7 @@ msgstr "Más" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Más opciones" @@ -20998,10 +20923,6 @@ msgstr "Doble factor" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Contenido multilingüe" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21658,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Los usuarios nuevos no pueden unirse en este momento. Puedes crear una cuenta o iniciar sesión y volver a intentar con este enlace más tarde." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Nueva versión" @@ -21926,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "No se encontraron emojis que coincidan con tu búsqueda." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "No hay emojis que coincidan con la búsqueda" @@ -22368,11 +22289,6 @@ msgstr "Ninguna" msgid "None (normal behavior)" msgstr "Ninguno (comportamiento normal)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normal" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22797,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Solo tú puedes ver este mensaje. <0>Descartar" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Opacidad" @@ -22975,7 +22891,7 @@ msgid "Open date picker" msgstr "Abrir selector de fecha" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Abrir descargas de escritorio" @@ -23170,6 +23086,11 @@ msgstr "Abrir selector rápido" msgid "Open settings" msgstr "Abrir configuración" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Abrir centro de software" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23316,11 +23237,6 @@ msgstr "Sistema operativo" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Activar los controles de insignias de mensajes no leídos por comunidad y canal, que están en fase experimental" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimizado para pasajes de lectura más largos" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Optimizando cámara..." @@ -23488,7 +23404,7 @@ msgstr "Fuera del período de reembolso" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Grupos de avatares superpuestos que muestran varios usuarios con recuentos de desbordamiento automáticos." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Superposiciones y menús" @@ -23891,11 +23807,6 @@ msgstr "Volumen por sonido" msgid "Per-window audio isn't available on this build of macOS." msgstr "El audio por ventana no está disponible en esta versión de macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Perfecto para tu contenido diario" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24422,11 +24333,6 @@ msgstr "Cargo" msgid "Power saving" msgstr "Ahorro de batería" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Potente y llamativo" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24638,8 +24544,7 @@ msgstr "Previsualizar sonido" #. Settings search entry description. One-line summary of what the settings search entry controls. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:136 msgid "Preview, popout, and stream thumbnail behavior" -msgstr "" -"Comportamiento de la vista previa, ventana emergente y miniatura del stream" +msgstr "Comportamiento de la vista previa, ventana emergente y miniatura del stream" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/ChatSettingsSections.ts:82 @@ -24697,7 +24602,7 @@ msgstr "Principal (deshabilitado)" msgid "Primary accent color" msgstr "Color de acento principal" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Acción principal" @@ -25730,11 +25635,6 @@ msgstr "Registro" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "El registro está cerrado actualmente. Usa un enlace de registro de un administrador para crear una cuenta." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Normal" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Botón normal" @@ -26204,7 +26104,7 @@ msgstr "Se eliminó el límite de usuarios." msgid "Removed timeout from {0}" msgstr "Se quitó el tiempo de espera de {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Elimina todas las anulaciones por variable, pero mantiene tu biblioteca y tus activos intactos." @@ -26709,7 +26609,7 @@ msgstr "Restablecer datos de la app" msgid "Reset app data and restart" msgstr "Restablecer datos de la app y reiniciar" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Restablecer datos del tema personalizado" @@ -26720,7 +26620,7 @@ msgstr "¿Restablecer los datos del tema personalizado?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Restablecer datos" @@ -26860,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Reiniciar {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Reiniciar {productName}" @@ -28036,7 +27936,7 @@ msgstr "Buscando" msgid "Searching people..." msgstr "Buscando personas..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Segunda opción" @@ -28053,7 +27953,7 @@ msgstr "Secundario (deshabilitado)" msgid "Secondary accent color" msgstr "Color de énfasis secundario" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Acción secundaria" @@ -28345,7 +28245,7 @@ msgstr "Selección: {0}" msgid "Selection: {0} (max {1})" msgstr "Selección: {0} (máx. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Selecciones" @@ -28375,16 +28275,6 @@ msgstr "Anulación del modo autohospedado" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Reembolsos de autoservicio disponibles dentro de los 3 días posteriores al pago, una vez cada 30 días. El reembolso de una suscripción la cancela. Los compradores de la UE/EEE renuncian al derecho de desistimiento de 14 días al finalizar la compra para acceder al contenido de inmediato. Usa el botón de reembolso en la aplicación en lugar de una contracarga. Las contracargas pueden restringir permanentemente tu cuenta. Stripe maneja el pago de forma segura. Nunca vemos el número completo de tu tarjeta." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Seminegrita" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Seminegrita grande" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28957,7 +28847,7 @@ msgstr "Establece el nivel de todos los efectos de sonido. Las anulaciones por s #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Configuración" @@ -28997,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Varias personas están escribiendo..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Compartir" @@ -29008,7 +28898,7 @@ msgstr "Compartir" msgid "Share action." msgstr "Compartir acción." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Compartir tema personalizado activo" @@ -29041,7 +28931,7 @@ msgstr "Compartir fuente" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Comparte la experiencia de {premiumProductName} con tus amigos comprando una suscripción de regalo." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Compartir tema" @@ -29969,11 +29859,6 @@ msgstr "Control deslizante con valores de pasos" msgid "Sliders" msgstr "Deslizadores" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Énfasis un poco más marcado" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30082,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Insultos, lenguaje deshumanizante o ataques a grupos protegidos." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Pequeño" @@ -30167,11 +30050,6 @@ msgstr "Se ajusta en incrementos de 5." msgid "Social" msgstr "Social" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Lectura suave y sencilla" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30883,7 +30761,7 @@ msgstr "Indicadores de estado" msgid "Status page" msgstr "Página de estado" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Estado" @@ -31297,15 +31175,6 @@ msgstr "Stripe informó que la tarjeta fue emitida en {countryName}. Para pagar msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Buena calidad con costo moderado de CPU. Buena alternativa de Chromium para compartir pantalla." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Jerarquía visual fuerte" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Variaciones de estilo" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31352,11 +31221,6 @@ msgstr "Escenarios de suscripción" msgid "Subtext" msgstr "Subtexto" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Subtítulo" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31941,10 +31805,8 @@ msgstr "Probar las previsualizaciones de URL y los elementos incrustados renderi #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Texto" @@ -31979,6 +31841,10 @@ msgstr "Canales de texto" msgid "Text formatting" msgstr "Formato de texto" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "El texto se renderiza con antialiasing en escala de grises en lugar de ClearType mientras la transparencia está habilitada, por lo que se verá más suave." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32167,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Es posible que la comunidad que buscas haya sido eliminada o que no tengas acceso a ella." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "No se pudo descargar la actualización de escritorio. Intenta de nuevo desde el botón de actualización cuando tu conexión sea estable." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "La actualización de escritorio se ha descargado. Reinicia {productName} para finalizar la instalación." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "El archivo descargado se guarda en tu computadora. Instálalo con tu gestor de paquetes habitual." @@ -32448,12 +32314,7 @@ msgstr "Es posible que no acepten mensajes tuyos o que ya no compartan una comun msgid "They're not accepting friend requests right now." msgstr "No están aceptando solicitudes de amistad en este momento." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Fina" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Tercera opción" @@ -32876,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Este es un mensaje muy cargado. Tienes que eliminar algunas reacciones antes de poder añadir más." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Este es un texto de ejemplo en el área de texto." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Esta es la descripción de la primera opción" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Esta es la descripción de la segunda opción" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Esta es la descripción de la tercera opción" @@ -33041,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Esto elimina todos los atajos personalizados y vuelve a habilitar todos los atajos integrados. Esto no se puede deshacer." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Este enlace de restablecimiento ha caducado. Los enlaces de restablecimiento duran 24 horas. Solicita uno nuevo." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Este enlace de restablecimiento ha expirado. Los enlaces de restablecimiento duran 1 hora. Por favor, solicita uno nuevo." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33069,36 +32930,6 @@ msgstr "Este interruptor está desactivado y no se puede alternar" msgid "This switch is disabled in the checked state" msgstr "Este interruptor está desactivado en el estado marcado" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Este texto demuestra el estilo de encabezado en negrita" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Este texto demuestra el estilo de título en negrita" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Este texto demuestra el estilo cursiva" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Este texto demuestra el estilo seminegrita grande" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Este texto demuestra el estilo normal" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Este texto demuestra el estilo seminegrita" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Este cuadro de texto se expande automáticamente entre 4 y 12 filas a medida que escribes." @@ -33423,11 +33254,6 @@ msgstr "Zona horaria" msgid "Tip" msgstr "Consejo" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Título" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34122,10 +33948,6 @@ msgstr "Escribe un color (hex, rgb(), hsl o nombre) o usa el selector." msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Escribe un color (hex, rgb(), hsl() o nombre) o usa el selector." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Escala de texto" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34174,14 +33996,6 @@ msgstr "Solo indicador de escritura" msgid "Typing state" msgstr "Estado de escritura" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Tipografía" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Demostración de escala tipográfica" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34500,7 +34314,7 @@ msgstr "Alternativa universal. La calidad más baja, pero funciona en todas part #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Desconocido" @@ -34655,8 +34469,8 @@ msgstr "Emojis ilimitados" msgid "Unlimited stickers" msgstr "Stickers ilimitados" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Desbloquea {lockedEmojiCount, plural, one {# emoji personalizado} other {# emojis personalizados}} de {communityCount, plural, one {# comunidad} other {# comunidades}} con {PREMIUM_PRODUCT_NAME}." @@ -34802,7 +34616,7 @@ msgstr "Canal sin nombre" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Grupo sin nombre" @@ -37339,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Hemos actualizado nuestras políticas. Revísalas y acéptalas para continuar." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37923,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Estás editando tu perfil para esta comunidad. Este perfil solo será visible aquí y anulará tu perfil global." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "¡Ahora eres desarrollador!" diff --git a/fluxer_app/src/features/i18n/locales/es-ES/messages.po b/fluxer_app/src/features/i18n/locales/es-ES/messages.po index 3b136cebb..608568ab3 100644 --- a/fluxer_app/src/features/i18n/locales/es-ES/messages.po +++ b/fluxer_app/src/features/i18n/locales/es-ES/messages.po @@ -10,8 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "PO-Revision-Date: 2026-07-07 23:18+0000\n" "Last-Translator: Hampus \n" -"Language-Team: Spanish " -"\n" +"Language-Team: Spanish \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Description text in the messages tab. @@ -619,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} de escritorio {desktopVersion}" @@ -1090,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Equipo de la comunidad de {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} no pudo contactar con el servicio de actualizaciones. Comprueba tu conexión e inténtalo de nuevo." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} no pudo reiniciarse para aplicar la actualización descargada. Inténtalo de nuevo desde el botón de actualización." @@ -1211,8 +1210,8 @@ msgstr "Logotipo de {productName}" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1243,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} en línea" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Grupo de {resolvedName}" @@ -1962,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "un nombre de host, p. ej., {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Hay una actualización de Fluxer para escritorio disponible en Linux. Elige el formato del paquete para este sistema y {productName} lo guardará localmente." @@ -1991,7 +1990,7 @@ msgstr "una encuesta" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Se requiere una redirect_uri cuando el ámbito del bot no es el único ámbito." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Un componente reutilizable para estados vacíos, errores y mensajes de estado." @@ -3892,7 +3891,7 @@ msgstr "Aplicaciones" msgid "Arabic" msgstr "Árabe" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Archivar" @@ -4668,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Desplazamiento automático" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Disponible" @@ -5244,26 +5243,6 @@ msgstr "Desenfoque" msgid "Blur strength" msgstr "Intensidad del desenfoque" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Cuerpo" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Negrita" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Encabezado en negrita" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Título en negrita" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5591,7 +5570,7 @@ msgstr "Variantes de botón" msgid "Button with context menu" msgstr "Botón con menú contextual" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Botones" @@ -5990,11 +5969,6 @@ msgstr "No se puede instalar el paquete de stickers" msgid "Captcha verification failed. Try again." msgstr "Error de verificación de captcha. Inténtalo de nuevo." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Título" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7180,7 +7154,7 @@ msgstr "Borrar todas las anulaciones activas" msgid "Clear all attachment mocks" msgstr "Borrar todos los archivos adjuntos de prueba" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Borrar todas las anulaciones de token" @@ -7216,7 +7190,7 @@ msgstr "Borrar simulación para este adjunto" msgid "Clear nickname" msgstr "Borrar apodo" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Borrar anulaciones" @@ -7300,7 +7274,7 @@ msgstr "Se borró el tema." msgid "Clearing trusted domains..." msgstr "Borrando dominios de confianza..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Borra el CSS rápido, los temas importados, los recursos subidos y las referencias de archivos locales en este dispositivo." @@ -7342,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "¡Toca para reclamar tu regalo!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Toca para copiar" @@ -8826,7 +8800,7 @@ msgstr "Copiar enlace de invitación" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Copiar enlace" @@ -9066,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "No se pudo cambiar tu ciclo de facturación" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "No se han podido buscar actualizaciones" @@ -9173,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "No se pudieron eliminar tus mensajes" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "No se ha podido descargar la actualización de escritorio" @@ -9427,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "No se pudo iniciar la conexión" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "No se pudo iniciar la actualización de escritorio" @@ -10303,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Se ha hecho clic en el botón de peligro." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10670,7 +10644,7 @@ msgstr "Desactivado por defecto en móviles para preservar la batería y el uso #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10965,11 +10939,6 @@ msgstr "Mensajes eliminados." msgid "Deleted." msgstr "Eliminado." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Tipografía delicada y ligera" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11146,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Actualización de escritorio disponible. Elige un paquete de Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Actualización de escritorio lista" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "La versión de escritorio {version} se ha descargado. Reinicia {productName} para finalizar la instalación." @@ -11754,11 +11723,9 @@ msgstr "Descartar mención" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12306,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Debido a las leyes de contenido para adultos en {regionName}, este contenido multimedia no está disponible en tu región actual." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Duplicar" @@ -12591,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Editar tu biografía del perfil" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Texto editable" @@ -13002,7 +12969,7 @@ msgstr "Activar caducidad de archivos adjuntos" msgid "Enable audio" msgstr "Activar audio" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Activar función beta" @@ -13039,7 +13006,7 @@ msgstr "Activar el modo de desarrollador" msgid "Enable email delivery" msgstr "Activar entrega de correo electrónico" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Activar opción adicional" @@ -13661,7 +13628,7 @@ msgstr "Error" msgid "error code {code}" msgstr "código de error {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Error al mostrar el contenido" @@ -14096,11 +14063,6 @@ msgstr "Los enlaces externos pueden ser peligrosos. Ten cuidado." msgid "Extra large" msgstr "Extragrande" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Extraligera" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14792,7 +14754,7 @@ msgstr "Primer clic" msgid "First click pass-through when unfocused" msgstr "Primer clic de paso cuando no está en foco" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Primera opción" @@ -14918,10 +14880,6 @@ msgstr "Siguiendo a la principal • {effectiveValue}%" msgid "Font" msgstr "Fuente" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Pesos de fuente" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15365,7 +15323,7 @@ msgid "From {start}" msgstr "Desde el {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "de <0>{0}" @@ -15461,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "General" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Genera un enlace para compartir o copia tu CSS personalizado combinado." @@ -15482,11 +15440,6 @@ msgstr "Generar nuevo código" msgid "Generating code…" msgstr "Generando código…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Visualización de texto suave y ligera" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16268,11 +16221,6 @@ msgstr "Él" msgid "Header" msgstr "Encabezado" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Encabezado" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17430,7 +17378,7 @@ msgstr "Indexando canal" msgid "Indicator" msgstr "Indicador" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indicadores y estado" @@ -17558,7 +17506,7 @@ msgstr "Estados de entrada" msgid "Input volume" msgstr "Volumen de entrada" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Entrada y texto" @@ -17591,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Instalar paquete de stickers" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Instalada" @@ -18095,15 +18043,6 @@ msgstr "Ahora está tranquilo..." msgid "Italian" msgstr "Italiano" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Cursiva" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Demostración de estilo cursiva" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18533,10 +18472,6 @@ msgstr "Idioma" msgid "Language settings" msgstr "Ajustes de idioma" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Soporte de idiomas" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18545,9 +18480,7 @@ msgid "Languages" msgstr "Idiomas" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Grande" @@ -18823,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "De por vida {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Claro" @@ -19013,7 +18944,7 @@ msgid "Linux default" msgstr "Predeterminado de Linux" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Paquete de Linux" @@ -19614,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Marcar como leído el canal superior de la bandeja de entrada" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Fluxer" @@ -19946,10 +19877,8 @@ msgstr "Tamaño de los archivos multimedia" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Medio" @@ -20821,7 +20750,7 @@ msgstr "Más" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Más acciones" @@ -20994,10 +20923,6 @@ msgstr "Doble factor" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Contenido multilingüe" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21654,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Los usuarios nuevos no pueden unirse ahora mismo. Puedes crear una cuenta o iniciar sesión y volver a probar este enlace más tarde." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Nueva versión" @@ -21922,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "No se han encontrado emojis que coincidan con tu búsqueda." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "No hay emojis que coincidan con la búsqueda" @@ -22364,11 +22289,6 @@ msgstr "Ninguna" msgid "None (normal behavior)" msgstr "Ninguno (comportamiento normal)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "PiP" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22793,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Solo tú puedes ver este mensaje. <0>Descartar" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Opacidad" @@ -22971,7 +22891,7 @@ msgid "Open date picker" msgstr "Abrir selector de fecha" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Abrir descargas de escritorio" @@ -23166,6 +23086,11 @@ msgstr "Abrir selector rápido" msgid "Open settings" msgstr "Abrir ajustes" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Abrir centro de software" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23312,11 +23237,6 @@ msgstr "Sistema operativo" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Activar los controles de insignias de mensajes no leídos por comunidad y canal, que están en fase experimental" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimizado para pasajes de lectura más largos" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Optimizando cámara..." @@ -23484,7 +23404,7 @@ msgstr "Fuera del plazo de reembolso" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Grupos de avatares superpuestos que muestran varios usuarios con recuentos de desbordamiento automáticos." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Superposiciones y menús" @@ -23887,11 +23807,6 @@ msgstr "Volumen por sonido" msgid "Per-window audio isn't available on this build of macOS." msgstr "El audio por ventana no está disponible en esta versión de macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Perfecto para el contenido diario" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24418,11 +24333,6 @@ msgstr "Cargo" msgid "Power saving" msgstr "Ahorro de batería" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Potente y llamativo" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24692,7 +24602,7 @@ msgstr "Principal (deshabilitado)" msgid "Primary accent color" msgstr "Color de énfasis principal" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Acción principal" @@ -25725,11 +25635,6 @@ msgstr "Registro" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "El registro está cerrado actualmente. Usa un enlace de registro de un administrador para crear una cuenta." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Normal" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Botón normal" @@ -26199,7 +26104,7 @@ msgstr "Se eliminó el límite de usuarios." msgid "Removed timeout from {0}" msgstr "Se ha quitado el tiempo de espera a {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Elimina todas las anulaciones por variable, pero mantiene intactas tu biblioteca y tus recursos." @@ -26704,7 +26609,7 @@ msgstr "Restablecer datos de la aplicación" msgid "Reset app data and restart" msgstr "Restablecer datos de la aplicación y reiniciar" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Restablecer datos del tema personalizado" @@ -26715,7 +26620,7 @@ msgstr "¿Restablecer los datos del tema personalizado?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Restablecer datos" @@ -26855,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Reiniciar {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Reiniciar {productName}" @@ -28031,7 +27936,7 @@ msgstr "Buscando" msgid "Searching people..." msgstr "Buscando personas..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Segunda opción" @@ -28048,7 +27953,7 @@ msgstr "Secundario (desactivado)" msgid "Secondary accent color" msgstr "Color de énfasis secundario" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Acción secundaria" @@ -28340,7 +28245,7 @@ msgstr "Selección: {0}" msgid "Selection: {0} (max {1})" msgstr "Selección: {0} (máx. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Selecciones" @@ -28370,16 +28275,6 @@ msgstr "Anular modo autohospedado" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Reembolsos de autoservicio disponibles en los 3 días siguientes al pago, una vez cada 30 días. El reembolso de una suscripción la cancela. Los compradores de la UE/EEE renuncian al derecho de desistimiento de 14 días al finalizar la compra para acceder al contenido de inmediato. Usa el botón de reembolso de la aplicación en lugar de una devolución de cargo. Las devoluciones de cargo pueden restringir tu cuenta de forma permanente. Stripe gestiona el pago de forma segura. Nunca vemos el número completo de tu tarjeta." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Seminegrita" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Seminegrita grande" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28952,7 +28847,7 @@ msgstr "Establece el nivel para cada efecto de sonido. Las anulaciones de sonido #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Ajustes" @@ -28992,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Varias personas están escribiendo..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Compartir" @@ -29003,7 +28898,7 @@ msgstr "Compartir" msgid "Share action." msgstr "Compartir acción." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Compartir tema personalizado activo" @@ -29036,7 +28931,7 @@ msgstr "Compartir fuente" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Comparte la experiencia de {premiumProductName} con tus amigos comprando una suscripción de regalo." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Compartir tema" @@ -29964,11 +29859,6 @@ msgstr "Control deslizante con valores de paso" msgid "Sliders" msgstr "Deslizadores" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Énfasis ligeramente más marcado" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30077,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Insultos, lenguaje deshumanizador o ataques a grupos protegidos." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Pequeño" @@ -30162,11 +30050,6 @@ msgstr "Se ajusta en incrementos de 5." msgid "Social" msgstr "Spam" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Experiencia de lectura suave y sencilla" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30878,7 +30761,7 @@ msgstr "Indicadores de estado" msgid "Status page" msgstr "Página de estado" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Estado" @@ -31292,15 +31175,6 @@ msgstr "Stripe ha informado de que la tarjeta se emitió en {countryName}. Para msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Buena calidad con un coste de CPU moderado. Buena alternativa de Chromium para compartir pantalla." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Jerarquía visual marcada" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Variaciones de estilo" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31347,11 +31221,6 @@ msgstr "Escenarios de suscripción" msgid "Subtext" msgstr "Subtexto" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Subtítulo" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31936,10 +31805,8 @@ msgstr "Probar la previsualización de URL y los elementos incrustados renderiza #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Texto" @@ -31974,6 +31841,10 @@ msgstr "Canales de texto" msgid "Text formatting" msgstr "Formato de texto" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "El texto se renderiza con antialiasing en escala de grises en lugar de ClearType mientras la transparencia está activada, por lo que se verá más suave." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32162,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Puede que la comunidad que buscas haya sido eliminada o que no tengas acceso a ella." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "No se pudo descargar la actualización de escritorio. Inténtalo de nuevo desde el botón de actualización cuando tu conexión sea estable." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "La actualización para escritorio se ha descargado. Reinicia {productName} para finalizar la instalación." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "El archivo descargado se guarda en tu ordenador. Instálalo con tu gestor de paquetes habitual." @@ -32443,12 +32314,7 @@ msgstr "Puede que no acepten mensajes tuyos o que ya no compartáis una comunida msgid "They're not accepting friend requests right now." msgstr "No está aceptando solicitudes de amistad en este momento." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Fina" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Tercera opción" @@ -32871,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Este mensaje es demasiado pesado. Tienes que eliminar algunas reacciones antes de poder añadir más." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Este es un texto de ejemplo en el área de texto." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Esta es la descripción de la primera opción" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Esta es la descripción de la segunda opción" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Esta es la descripción de la tercera opción" @@ -33036,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Esto elimina todos los atajos personalizados y vuelve a habilitar los atajos integrados. Esta acción no se puede deshacer." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Este enlace de restablecimiento ha caducado. Los enlaces de restablecimiento duran 24 horas. Solicita uno nuevo." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Este enlace de restablecimiento ha caducado. Los enlaces de restablecimiento duran 1 hora. Por favor, solicita uno nuevo." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33064,36 +32930,6 @@ msgstr "Este interruptor está desactivado y no se puede cambiar" msgid "This switch is disabled in the checked state" msgstr "Este interruptor está desactivado en el estado marcado" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Este texto muestra el estilo de encabezado en negrita" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Este texto demuestra el estilo de título en negrita" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Este texto muestra el estilo en cursiva" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Este texto muestra un estilo seminegrita grande" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Este texto muestra el estilo normal" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Este texto muestra el estilo seminegrita" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Este cuadro de texto se expande automáticamente entre 4 y 12 filas a medida que escribes." @@ -33418,11 +33254,6 @@ msgstr "Zona horaria" msgid "Tip" msgstr "Consejo" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Título" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34117,10 +33948,6 @@ msgstr "Escribe un color (hex, rgb(), hsl o nombre) o usa el selector." msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Escribe un color (hex, rgb(), hsl() o nombre) o usa el selector." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Escala de texto" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34169,14 +33996,6 @@ msgstr "Solo indicador de escritura" msgid "Typing state" msgstr "Estado de escritura" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Tipografía" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Demostración de la escala tipográfica" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34495,7 +34314,7 @@ msgstr "Alternativa universal. La calidad más baja, pero funciona en todas part #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Desconocido" @@ -34650,8 +34469,8 @@ msgstr "Emojis ilimitados" msgid "Unlimited stickers" msgstr "Stickers ilimitados" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Desbloquea {lockedEmojiCount, plural, one {# emoji personalizado} other {# emojis personalizados}} de {communityCount, plural, one {# comunidad} other {# comunidades}} con {PREMIUM_PRODUCT_NAME}." @@ -34797,7 +34616,7 @@ msgstr "Canal sin nombre" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Grupo sin nombre" @@ -37334,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Hemos actualizado nuestras políticas. Revísalas y acéptalas para continuar." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37918,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Estás editando tu perfil para esta comunidad. Este perfil solo será visible en esta comunidad y anulará tu perfil global." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "¡Ahora eres desarrollador!" diff --git a/fluxer_app/src/features/i18n/locales/fi/messages.po b/fluxer_app/src/features/i18n/locales/fi/messages.po index c6703c682..cd7310ab7 100644 --- a/fluxer_app/src/features/i18n/locales/fi/messages.po +++ b/fluxer_app/src/features/i18n/locales/fi/messages.po @@ -10,8 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "PO-Revision-Date: 2026-07-09 00:18+0000\n" "Last-Translator: Hampus \n" -"Language-Team: Finnish " -"\n" +"Language-Team: Finnish \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Description text in the messages tab. @@ -319,9 +318,7 @@ msgstr "{communityName} on tällä hetkellä vain {productName}-henkilöstön j #. Displayed value for the voice channel participant limit slider. ∞ is the infinity symbol. #: src/features/channel/components/modals/channel_tabs/channel_overview_tab/VoiceSettings.tsx:43 msgid "{count, plural, =0 {∞ No limit} one {# participant} other {# participants}}" -msgstr "" -"{count, plural, =0 {∞ Ei rajoitusta} one {# osallistuja} other {# " -"osallistujaa}}" +msgstr "{count, plural, =0 {∞ Ei rajoitusta} one {# osallistuja} other {# osallistujaa}}" #: src/features/channel/components/embeds/attachments/TextualAttachmentPreview.tsx:121 msgid "{count, plural, one {... (# line left)} other {... (# lines left)}}" @@ -360,10 +357,7 @@ msgstr "{count, plural, one {# yhteisö löytyi} other {# yhteisöä löytyi}}" #: src/features/app/components/layout/GuildsLayout.tsx:730 msgid "{count, plural, one {# community is temporarily unavailable due to a flux capacitor malfunction.} other {# communities are temporarily unavailable due to a flux capacitor malfunction.}}" -msgstr "" -"{count, plural, one {# yhteisö on tilapäisesti pois käytöstä toimintahäiriön " -"vuoksi.} other {# yhteisöä on tilapäisesti pois käytöstä toimintahäiriön " -"vuoksi.}}" +msgstr "{count, plural, one {# yhteisö on tilapäisesti pois käytöstä toimintahäiriön vuoksi.} other {# yhteisöä on tilapäisesti pois käytöstä toimintahäiriön vuoksi.}}" #. Displayed value for the voice channel connection limit slider. #: src/features/channel/components/modals/channel_tabs/channel_overview_tab/VoiceSettings.tsx:47 @@ -624,16 +618,14 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} Desktop {desktopVersion}" #. Unsaved-changes banner text in the devices tab. Counts selected devices that will be signed out. #: src/features/user/components/modals/tabs/DevicesTab.tsx:74 msgid "{deviceCount, plural, one {# device selected for sign out} other {# devices selected for sign out}}" -msgstr "" -"{deviceCount, plural, one {# laite valittu uloskirjautumista varten} other " -"{# laitetta valittu uloskirjautumista varten}}" +msgstr "{deviceCount, plural, one {# laite valittu uloskirjautumista varten} other {# laitetta valittu uloskirjautumista varten}}" #. Sidebar Fluxer-home button tooltip showing how many incoming friend requests are pending. Count is interpolated. #: src/features/app/components/layout/sidebar_nav/FluxerButton.tsx:47 @@ -1065,10 +1057,7 @@ msgstr "{productName}-sovelluksen symboli" #. Label in the push settings. #: src/features/user/components/modals/tabs/notifications_tab/PushSettings.tsx:16 msgid "{productName} avoids sending push notifications to your mobile devices when you are at your computer. Choose how long you need to be inactive on desktop before you receive push notifications." -msgstr "" -"{productName} ei lähetä push-ilmoituksia mobiililaitteeseesi, kun olet " -"aktiivisena tietokoneella. Valitse, kuinka kauan sinun on oltava käyttämättä " -"työpöydällä, ennen kuin saat push-ilmoituksia." +msgstr "{productName} ei lähetä push-ilmoituksia mobiililaitteeseesi, kun olet aktiivisena tietokoneella. Valitse, kuinka kauan sinun on oltava käyttämättä työpöydällä, ennen kuin saat push-ilmoituksia." #. Short badge title in the user profile badges popout. Preserve {productName}; it is inserted by code. English locales use Title Case for official badge titles; other locales should use natural local capitalization. #: src/features/user/components/popouts/UserProfileBadges.tsx:37 @@ -1080,9 +1069,7 @@ msgstr "{productName}-buginmetsästäjä" #: src/features/voice/components/modals/screen_share_picker_modal/PerWindowAudioNotice.tsx:23 #: src/features/voice/components/modals/screen_share_picker_modal/PerWindowAudioNotice.tsx:42 msgid "{productName} cannot capture desktop audio here while excluding {productName}'s call audio." -msgstr "" -"{productName} ei voi jakaa työpöydän ääntä siten, että itse puhelun ääni " -"jäisi pois jaosta." +msgstr "{productName} ei voi jakaa työpöydän ääntä siten, että itse puhelun ääni jäisi pois jaosta." #. Inline notice body on Windows. Explains that app audio is disabled because productName cannot guarantee isolated audio capture on this OS build. #. Inline notice body on macOS. Explains that app audio is disabled because productName cannot guarantee isolated audio capture on this OS build. @@ -1102,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName}-yhteisötiimi" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} ei saanut yhteyttä päivityspalveluun. Tarkista internetyhteytesi ja yritä uudelleen." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName}-sovellusta ei voitu käynnistää uudelleen ladatun päivityksen avulla. Yritä uudelleen päivityspainikkeesta." @@ -1223,8 +1210,8 @@ msgstr "{productName} sanamerkki" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1255,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} paikalla" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Ryhmä: {resolvedName}" @@ -1974,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "isäntänimi, esim. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Linux-työpöytäpäivitys on saatavilla. Valitse pakettimuoto tälle järjestelmälle, niin {productName} tallentaa sen paikallisesti." @@ -2003,7 +1990,7 @@ msgstr "kysely" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "redirect_uri tarvitaan, kun bot-laajuus ei ole ainoa laajuus." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Uudelleenkäytettävä komponentti tyhjille tiloille, virheille ja tilaviesteille." @@ -3904,7 +3891,7 @@ msgstr "Sovellukset" msgid "Arabic" msgstr "arabia" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Arkistoi" @@ -3984,9 +3971,7 @@ msgstr "Haluatko varmasti ottaa kutsut käyttöön? Tämän jälkeen käyttäjä #. placeholder {0}: targetUser.tag #: src/features/moderation/components/modals/KickMemberModal.tsx:44 msgid "Are you sure you want to kick <0>{0} from the community? They will be able to rejoin with a new invite." -msgstr "" -"Haluatko varmasti potkaista käyttäjän <0>{0} yhteisöstä? Hän voi liittyä " -"uudelleen uudella kutsulla." +msgstr "Haluatko varmasti potkaista käyttäjän <0>{0} yhteisöstä? Hän voi liittyä uudelleen uudella kutsulla." #: src/features/user/components/modals/tabs/chat_settings_tab/SearchEnginesTab.tsx:229 msgid "Are you sure you want to remove <0>{engineName}?" @@ -4682,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Automaattinen vieritys" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Saatavilla" @@ -5258,26 +5243,6 @@ msgstr "Sumenna" msgid "Blur strength" msgstr "Sumennuksen voimakkuus" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Leipäteksti" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Lihavointi" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Lihavoitu otsikko" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Lihavoitu otsikko" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5605,7 +5570,7 @@ msgstr "Painikevariantit" msgid "Button with context menu" msgstr "Painike ja pikavalikko" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Painikkeet" @@ -6004,11 +5969,6 @@ msgstr "Tarrapakettia ei voi asentaa" msgid "Captcha verification failed. Try again." msgstr "Captcha-varmennus epäonnistui. Yritä uudelleen." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Kuvateksti" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7194,7 +7154,7 @@ msgstr "Poista kaikki aktiiviset ohitukset" msgid "Clear all attachment mocks" msgstr "Tyhjennä kaikki liitteiden esikatselukuvat" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Tyhjennä kaikki tunnuksen ohitukset" @@ -7230,7 +7190,7 @@ msgstr "Tyhjennä liitteen testidata" msgid "Clear nickname" msgstr "Tyhjennä lempinimi" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Tyhjennä ohitukset" @@ -7314,7 +7274,7 @@ msgstr "Tyhjensi aiheen." msgid "Clearing trusted domains..." msgstr "Tyhjennetään luotettuja verkkotunnuksia..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Tyhjentää nopean CSS:n, tuodut teemat, ladatut resurssit ja paikalliset tiedostoviittaukset tällä laitteella." @@ -7356,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Lunasta lahjasi napauttamalla!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Kopioi napsauttamalla" @@ -8840,7 +8800,7 @@ msgstr "Kopioi kutsulinkki" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Kopioi linkki" @@ -9080,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Laskutusjaksoa ei voitu muuttaa" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Päivitysten tarkistus epäonnistui" @@ -9187,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Viestejäsi ei voitu poistaa" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Työpöytäsovelluksen päivitystä ei voitu ladata" @@ -9441,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Yhteyden luominen epäonnistui" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Työpöytäsovelluksen päivitystä ei voitu aloittaa" @@ -10317,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Varoituspainiketta napsautettiin." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10684,7 +10644,7 @@ msgstr "Oletuksena pois päältä mobiililaitteilla akun keston ja datan sääst #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10979,11 +10939,6 @@ msgstr "Viestisi poistettu." msgid "Deleted." msgstr "Poistettu." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Hienostunut ja kevyt typografia" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11160,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Työpöytäpäivitys saatavilla. Valitse Linux-paketti." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Työpöytäsovelluksen päivitys valmis" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Työpöytäversio {version} on ladattu. Käynnistä {productName} uudelleen asennuksen viimeistelemiseksi." @@ -11768,11 +11723,9 @@ msgstr "Hylkää maininta" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12320,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Tämän median sisältö ei ole saatavilla nykyisellä alueellasi ({regionName}) aikuisviihdettä koskevien lakien vuoksi." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Monista" @@ -12605,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Muokkaa profiilin biografiaa" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Muokattava teksti" @@ -13016,7 +12969,7 @@ msgstr "Ota liitteiden vanheneminen käyttöön" msgid "Enable audio" msgstr "Ota ääni käyttöön" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Ota beetaominaisuus käyttöön" @@ -13053,7 +13006,7 @@ msgstr "Ota kehittäjätila käyttöön" msgid "Enable email delivery" msgstr "Ota sähköpostitoimitus käyttöön" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Ota lisäasetus käyttöön" @@ -13675,7 +13628,7 @@ msgstr "Virhe" msgid "error code {code}" msgstr "virhekoodi {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Virhe sisällön näyttämisessä" @@ -14110,11 +14063,6 @@ msgstr "Ulkoiset linkit voivat olla vaarallisia. Ole varovainen." msgid "Extra large" msgstr "Erittäin suuri" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Erittäin ohut" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14806,7 +14754,7 @@ msgstr "Ensimmäinen klikkaus" msgid "First click pass-through when unfocused" msgstr "Ensimmäinen napsautus menee läpi, kun ikkuna ei ole aktiivinen" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Ensimmäinen vaihtoehto" @@ -14932,10 +14880,6 @@ msgstr "Seuraa pääasetusta • {effectiveValue}%" msgid "Font" msgstr "Fontti" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Fontin paksuudet" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15379,7 +15323,7 @@ msgid "From {start}" msgstr "Alkaen {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "lähettäjältä <0>{0}" @@ -15475,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Yleiset" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Luo jaettava linkki tai kopioi yhdistetty mukautettu CSS-koodisi." @@ -15496,11 +15440,6 @@ msgstr "Luo uusi koodi" msgid "Generating code…" msgstr "Luodaan koodia…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Kevyt ja ilmava tekstinäyttö" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16282,11 +16221,6 @@ msgstr "Hän" msgid "Header" msgstr "Otsikko" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Otsikko" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17444,7 +17378,7 @@ msgstr "Kanavaa indeksoidaan" msgid "Indicator" msgstr "Ilmaisin" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Ilmaisimet ja tila" @@ -17572,7 +17506,7 @@ msgstr "Syöttökenttien tilat" msgid "Input volume" msgstr "Syöttöäänenvoimakkuus" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Syöte ja teksti" @@ -17605,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Asenna tarrapaketti" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Asennettu" @@ -18109,15 +18043,6 @@ msgstr "Hiljaista toistaiseksi..." msgid "Italian" msgstr "italia" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Kursivoitu" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Kursivoidun tekstin esittely" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18547,10 +18472,6 @@ msgstr "Kieli" msgid "Language settings" msgstr "Kieliasetukset" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Kielituki" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18559,9 +18480,7 @@ msgid "Languages" msgstr "Kielet" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Suuri" @@ -18837,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Elinikäinen {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Vaalea" @@ -19027,7 +18944,7 @@ msgid "Linux default" msgstr "Linuxin oletusarvo" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux-paketti" @@ -19628,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Merkitse ylin saapuneet-kanava luetuksi" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19960,10 +19877,8 @@ msgstr "Median koko" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Keskitaso" @@ -20782,10 +20697,7 @@ msgstr "Tässä näkyvät moderointitoimet ja yhteisön muutokset." #. Guild nagbar body shown when moderation actions in a community require two-factor authentication. {communityName} is the community name. #: src/features/app/components/layout/GuildLayout.tsx:77 msgid "Moderation actions in {communityName} require two-factor authentication. Enable 2FA to kick, ban, timeout, or delete messages here." -msgstr "" -"Yhteisön {communityName} moderointitoiminnot edellyttävät kaksivaiheista " -"todennusta. Ota kaksivaiheinen todennus käyttöön, jos haluat potkia, " -"porttikieltää, aikakatkaista tai poistaa viestejä täällä." +msgstr "Yhteisön {communityName} moderointitoiminnot edellyttävät kaksivaiheista todennusta. Ota kaksivaiheinen todennus käyttöön, jos haluat potkia, porttikieltää, aikakatkaista tai poistaa viestejä täällä." #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/ChatSettingsSections.ts:66 @@ -20838,7 +20750,7 @@ msgstr "Lisää" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Lisää toimintoja" @@ -21011,10 +20923,6 @@ msgstr "Monivaiheinen todennus" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Monikielinen sisältö" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21671,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Uudet käyttäjät eivät voi liittyä juuri nyt. Voit silti luoda tilin tai kirjautua sisään ja yrittää tätä linkkiä uudelleen myöhemmin." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Uusi versio" @@ -21939,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Hakua vastaavia emojeita ei löytynyt." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Haullasi ei löytynyt emojeita" @@ -22381,11 +22289,6 @@ msgstr "Ei mitään" msgid "None (normal behavior)" msgstr "Ei mitään (normaali toiminta)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normaali" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22810,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Vain sinä näet tämän viestin. <0>Hylkää" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Läpinäkyvyys" @@ -22988,7 +22891,7 @@ msgid "Open date picker" msgstr "Avaa päivämäärävalitsin" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Avaa työpöytäversion lataussivu" @@ -23183,6 +23086,11 @@ msgstr "Avaa pikavaihtaja" msgid "Open settings" msgstr "Avaa asetukset" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Avaa ohjelmistokeskus" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23329,11 +23237,6 @@ msgstr "Käyttöjärjestelmä" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Ota käyttöön kokeelliset asetukset, joilla voit hallita lukemattomien viestien merkkien näkyvyyttä erikseen jokaisessa yhteisössä ja kanavassa" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimoitu pidempiin lukukappaleisiin" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Kameraa optimoidaan..." @@ -23501,7 +23404,7 @@ msgstr "Palautusikkunan ulkopuolella" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Päällekkäiset avatar-ryhmät, joissa näkyy useita käyttäjiä automaattisella ylivuodon laskennalla." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Päällekkäisnäkymät ja valikot" @@ -23904,11 +23807,6 @@ msgstr "Äänenvoimakkuus äänittäin" msgid "Per-window audio isn't available on this build of macOS." msgstr "Ikkunakohtainen ääni ei ole käytettävissä tässä macOS-versiossa." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Sopii täydellisesti jokapäiväiseen sisältöön" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24435,11 +24333,6 @@ msgstr "Sijainti" msgid "Power saving" msgstr "Virransäästö" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Tehokas ja huomiota herättävä" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24709,7 +24602,7 @@ msgstr "Ensisijainen (pois käytöstä)" msgid "Primary accent color" msgstr "Pääväri" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Ensisijainen toiminto" @@ -25742,11 +25635,6 @@ msgstr "Rekisteröinti" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Rekisteröityminen on tällä hetkellä suljettu. Luo tili käyttämällä ylläpitäjältä saatua rekisteröitymislinkkiä." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Normaali" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Tavallinen painike" @@ -26216,7 +26104,7 @@ msgstr "Käyttäjärajoitus poistettu." msgid "Removed timeout from {0}" msgstr "Käyttäjän {0} aikakatkaisu poistettu" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Poistaa kaikki muuttujakohtaiset ohitukset, mutta säilyttää kirjastosi ja resurssisi ennallaan." @@ -26532,9 +26420,7 @@ msgstr "Vaadi OAuth2-koodivaltuutus" #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:466 msgid "Require two-factor authentication for moderators before they can ban, kick, timeout, or remove messages." -msgstr "" -"Vaadi moderaattoreilta kaksivaiheista tunnistautumista ennen kuin he voivat " -"porttikieltää, potkaista, aikakatkaista tai poistaa viestejä." +msgstr "Vaadi moderaattoreilta kaksivaiheista tunnistautumista ennen kuin he voivat porttikieltää, potkaista, aikakatkaista tai poistaa viestejä." #. Short label in the authentication OAUTH scopes step. Keep the tone plain and specific. #: src/features/auth/components/pages/oauth_authorize_page/OAuthScopesStep.tsx:24 @@ -26723,7 +26609,7 @@ msgstr "Nollaa sovelluksen tiedot" msgid "Reset app data and restart" msgstr "Nollaa sovelluksen tiedot ja käynnistä uudelleen" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Palauta mukautetun teeman tiedot" @@ -26734,7 +26620,7 @@ msgstr "Palautetaanko mukautetun teeman tiedot?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Palauta tiedot" @@ -26874,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Käynnistä {appName} uudelleen" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Käynnistä {productName} uudelleen" @@ -28050,7 +27936,7 @@ msgstr "Haetaan" msgid "Searching people..." msgstr "Etsitään henkilöitä..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Toinen vaihtoehto" @@ -28067,7 +27953,7 @@ msgstr "Toissijainen (pois käytöstä)" msgid "Secondary accent color" msgstr "Toissijainen korostusväri" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Toissijainen toiminto" @@ -28359,7 +28245,7 @@ msgstr "Valinta: {0}" msgid "Selection: {0} (max {1})" msgstr "Valinta: {0} (enintään {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Valinnat" @@ -28389,16 +28275,6 @@ msgstr "Itseisännöidyn tilan ohitus" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Itsepalveluhyvitykset ovat saatavilla 3 päivän kuluessa maksusta, kerran 30 päivässä. Tilauksen hyvittäminen peruuttaa sen. EU-/ETA-alueen ostajat luopuvat 14 päivän peruuttamisoikeudesta kassalla saadakseen sisällön käyttöönsä välittömästi. Käytä sovelluksen sisäistä hyvityspainiketta takaisinmaksun sijaan. Takaisinmaksut voivat rajoittaa tiliäsi pysyvästi. Stripe käsittelee maksut turvallisesti. Emme koskaan näe koko korttinumeroasi." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Puolilihavoitu" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Puolilihava suuri" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28971,7 +28847,7 @@ msgstr "Määrittää kaikkien äänitehosteiden voimakkuuden. Yksittäisten ä #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Asetukset" @@ -29011,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Useita kirjoittaa..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Jaa" @@ -29022,7 +28898,7 @@ msgstr "Jaa" msgid "Share action." msgstr "Jaa toiminto." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Jaa aktiivinen mukautettu teema" @@ -29055,7 +28931,7 @@ msgstr "Jaa sisältöä" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Jaa {premiumProductName}-elämys ystäviesi kanssa ostamalla lahjatilauksen." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Jaa teema" @@ -29983,11 +29859,6 @@ msgstr "Liukusäädin askelarvoilla" msgid "Sliders" msgstr "Liukusäätimet" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Hieman lihavoidumpi korostus" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30096,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Herjaaminen, epäinhimillistävä kieli tai hyökkäykset suojeltuja ryhmiä vastaan." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Pieni" @@ -30181,11 +30050,6 @@ msgstr "Kohdistuu 5:n välein." msgid "Social" msgstr "Sosiaalinen" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Pehmeä ja helppo lukukokemus" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30897,7 +30761,7 @@ msgstr "Tilan ilmaisimet" msgid "Status page" msgstr "Tilasivu" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Tilatila" @@ -31311,15 +31175,6 @@ msgstr "Stripe ilmoitti, että kortti on myönnetty maassa {countryName}. Maksaa msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Hyvä laatu kohtuullisella suorittimen kuormituksella. Toimii hyvin Chromium-pohjaisissa näytönjaoissa." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Selkeä visuaalinen hierarkia" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Tyylivaihtoehdot" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31366,11 +31221,6 @@ msgstr "Tilausskenaariot" msgid "Subtext" msgstr "Lisäteksti" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Alaotsikko" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31955,10 +31805,8 @@ msgstr "Testaa URL-osoitteiden esikatseluja ja upotettuja sisältöjä" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Teksti" @@ -31993,6 +31841,10 @@ msgstr "Tekstikanavat" msgid "Text formatting" msgstr "Tekstin muotoilu" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Teksti renderöidään ClearType-tekstin sijaan harmaasävyisellä antialiasoinnilla läpinäkyvyyden ollessa käytössä, joten se näyttää pehmeämmältä." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32181,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Etsimääsi yhteisöä ei ehkä enää ole tai sinulla ei ole siihen pääsyä." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Työpöytäpäivitystä ei voitu ladata. Yritä uudelleen päivityspainikkeesta, kun yhteytesi on vakaa." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Työpöytäpäivitys on ladattu. Käynnistä {productName} uudelleen asennuksen viimeistelemiseksi." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Ladattu tiedosto tallennetaan tietokoneellesi. Asenna se tavallisella pakettienhallintaohjelmallasi." @@ -32462,12 +32314,7 @@ msgstr "He eivät ehkä hyväksy sinulta viestejä, tai teillä ei ole enää yh msgid "They're not accepting friend requests right now." msgstr "He eivät hyväksy kaveripyyntöjä juuri nyt." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Ohut" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Kolmas vaihtoehto" @@ -32890,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Tämä on todella suosittu viesti. Poista joitakin reaktioita, ennen kuin voit lisätä uusia." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Tämä on esimerkkitekstiä tekstikentässä." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Tämä on ensimmäisen vaihtoehdon kuvaus" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Tämä on toisen vaihtoehdon kuvaus" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Tämä on kolmannen vaihtoehdon kuvaus" @@ -33055,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Tämä poistaa kaikki mukautetut pikanäppäimet ja ottaa käyttöön kaikki sisäänrakennetut pikanäppäimet uudelleen. Tätä toimintoa ei voi kumota." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Tämä nollauslinkki on vanhentunut. Nollauslinkit ovat voimassa 24 tuntia. Pyydä uusi linkki." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Tämä palautuslinkki on vanhentunut. Palautuslinkit ovat voimassa 1 tunnin. Pyydä uusi linkki." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33083,36 +32930,6 @@ msgstr "Tämä kytkin on poissa käytöstä, eikä sitä voi vaihtaa" msgid "This switch is disabled in the checked state" msgstr "Tämä valitsin on poissa käytöstä, kun se on valittuna" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Tämä teksti esittelee lihavoitua otsikkotyyliä" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Tämä teksti esittelee lihavoitua otsikkotyyliä" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Tämä teksti esittelee kursivointia" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Tämä teksti esittelee suurta puolilihavaa tyyliä" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Tämä teksti esittelee normaalia tyyliä" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Tämä teksti näyttää puolilihavaa tyyliä" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Tekstikenttä laajenee automaattisesti 4–12 rivin kokoiseksi kirjoittaessasi." @@ -33437,11 +33254,6 @@ msgstr "Aikavyöhyke" msgid "Tip" msgstr "Vinkki" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Otsikko" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34136,10 +33948,6 @@ msgstr "Kirjoita väri (heksakoodi, rgb(), hsl tai nimi) tai käytä valitsinta. msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Kirjoita väri (heksakoodi, rgb(), hsl() tai nimi) tai käytä valitsinta." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Tekstin koko" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34188,14 +33996,6 @@ msgstr "Vain kirjoitusilmaisin" msgid "Typing state" msgstr "Kirjoitustila" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Typografia" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Typografian skaalan esittely" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34514,7 +34314,7 @@ msgstr "Yleinen vararatkaisu. Huonoin laatu, mutta toimii kaikkialla." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Tuntematon" @@ -34669,8 +34469,8 @@ msgstr "Rajoittamaton määrä emojeita" msgid "Unlimited stickers" msgstr "Rajoittamaton määrä tarroja" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Avaa {lockedEmojiCount, plural, one {# mukautettu emoji} other {# mukautettua emojia}} {communityCount, plural, one {# yhteisöstä} other {# yhteisöstä}} {PREMIUM_PRODUCT_NAME}-tilauksella." @@ -34816,7 +34616,7 @@ msgstr "Nimetön kanava" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Nimetön ryhmä" @@ -37353,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Olemme päivittäneet käytäntöjämme. Jatkaaksesi sinun on tarkistettava ja hyväksyttävä ne." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Verkko {buildVersion}" @@ -37937,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Muokkaat yhteisökohtaista profiiliasi. Tämä profiili näkyy vain tässä yhteisössä ja ohittaa globaalin profiilisi." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Olet nyt kehittäjä!" diff --git a/fluxer_app/src/features/i18n/locales/fr/messages.po b/fluxer_app/src/features/i18n/locales/fr/messages.po index 4982e3beb..b901b4947 100644 --- a/fluxer_app/src/features/i18n/locales/fr/messages.po +++ b/fluxer_app/src/features/i18n/locales/fr/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "Ordinateur de bureau {desktopChannel} {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Équipe communautaire {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} n’a pas pu joindre le service de mise à jour. Vérifiez votre connexion et réessayez." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} n’a pas pu redémarrer pour lancer la mise à jour téléchargée. Veuillez réessayer en utilisant le bouton de mise à jour." @@ -1210,8 +1210,8 @@ msgstr "{productName} logo" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "Web {buildVersion} {releaseChannel}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} en ligne" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Groupe de {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "un nom d'hôte, par exemple {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Une mise à jour pour le bureau Linux est disponible. Choisissez le format de paquet pour ce système, et {productName} l’enregistrera localement." @@ -1990,7 +1990,7 @@ msgstr "un sondage" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Une redirect_uri est requise lorsque le champ d'application du bot n'est pas le seul champ d'application." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Un composant réutilisable pour les états vides, les erreurs et les messages d'état." @@ -3891,7 +3891,7 @@ msgstr "Applications" msgid "Arabic" msgstr "Arabe" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Archiver" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Défilement automatique" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Disponible" @@ -5243,26 +5243,6 @@ msgstr "Flouter" msgid "Blur strength" msgstr "Intensité du flou" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Corps de texte" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Gras" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Titre en gras" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Titre en gras" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Variantes de bouton" msgid "Button with context menu" msgstr "Bouton avec menu contextuel" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Boutons" @@ -5989,11 +5969,6 @@ msgstr "Impossible d'installer le pack de stickers" msgid "Captcha verification failed. Try again." msgstr "Échec de la vérification du CAPTCHA. Veuillez réessayer." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Légende" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Effacer toutes les surcharges actives" msgid "Clear all attachment mocks" msgstr "Supprimer tous les aperçus de pièces jointes" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Effacer toutes les surcharges de jetons" @@ -7215,7 +7190,7 @@ msgstr "Effacer la maquette pour cette pièce jointe" msgid "Clear nickname" msgstr "Effacer le pseudo" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Effacer les remplacements" @@ -7299,7 +7274,7 @@ msgstr "A effacé le sujet." msgid "Clearing trusted domains..." msgstr "Effacement des domaines de confiance…" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Efface le CSS rapide, les thèmes importés, les ressources téléchargées et les références de fichiers locaux sur cet appareil." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Cliquez pour récupérer votre cadeau !" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Cliquer pour copier" @@ -8825,7 +8800,7 @@ msgstr "Copier le lien d'invitation" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Copier le lien" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Impossible de modifier votre cycle de facturation" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Impossible de rechercher les mises à jour" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Impossible de supprimer vos messages" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Impossible de télécharger la mise à jour de bureau" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Impossible de démarrer la connexion" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Impossible de démarrer la mise à jour de bureau" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Bouton de danger cliqué." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Désactivé par défaut sur mobile pour préserver la batterie et l'util #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Vos messages ont été supprimés." msgid "Deleted." msgstr "Supprimé." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Typographie délicate et légère" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Mise à jour de l’application disponible. Choisissez un paquet Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Mise à jour de l'application prête" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "La version de bureau {version} a été téléchargée. Redémarrez {productName} pour terminer l’installation." @@ -11753,11 +11723,9 @@ msgstr "Ignorer la mention" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "En raison des lois sur le contenu mature en {regionName}, ce média n'est pas disponible dans votre région actuelle." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Dupliquer" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Modifier votre bio de profil" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Texte modifiable" @@ -13001,7 +12969,7 @@ msgstr "Activer l'expiration des pièces jointes" msgid "Enable audio" msgstr "Activer l'audio" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Activer la fonctionnalité bêta" @@ -13038,7 +13006,7 @@ msgstr "Activer le mode développeur" msgid "Enable email delivery" msgstr "Activer la livraison par e-mail" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Activer l'option supplémentaire" @@ -13660,7 +13628,7 @@ msgstr "Erreur" msgid "error code {code}" msgstr "code d'erreur {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Erreur lors de l'affichage du contenu" @@ -14095,11 +14063,6 @@ msgstr "Les liens externes peuvent être dangereux. Soyez prudent." msgid "Extra large" msgstr "Très grande" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Très léger" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Premier clic" msgid "First click pass-through when unfocused" msgstr "Cliquer à travers quand la fenêtre est inactive" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Première option" @@ -14917,10 +14880,6 @@ msgstr "Suivre la principale • {effectiveValue} %" msgid "Font" msgstr "Police" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Graisses de police" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "À partir du {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "de <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Général" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Générez un lien partageable ou copiez votre CSS personnalisé combiné." @@ -15481,11 +15440,6 @@ msgstr "Générer un nouveau code" msgid "Generating code…" msgstr "Génération du code…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Affichage de texte doux et aéré" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Il" msgid "Header" msgstr "En-tête" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Titre" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Indexation de la chaîne" msgid "Indicator" msgstr "Indicateur" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indicateurs et statut" @@ -17557,7 +17506,7 @@ msgstr "États de saisie" msgid "Input volume" msgstr "Volume d'entrée" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Saisie et texte" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Installer le pack de stickers" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Installé" @@ -18094,15 +18043,6 @@ msgstr "C'est calme pour l'instant..." msgid "Italian" msgstr "Italien" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Italique" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Exemple de style italique" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Langue" msgid "Language settings" msgstr "Paramètres de langue" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Langues prises en charge" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Langues" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Grande" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "À vie {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Clair" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux (par défaut)" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Paquet Linux" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Marquer le canal de la boîte de réception supérieure comme lu" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Taille des médias" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Moyen" @@ -20820,7 +20750,7 @@ msgstr "Plus" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Plus d'actions" @@ -20993,10 +20923,6 @@ msgstr "Authentification à plusieurs facteurs" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Contenu multilingue" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Les nouveaux utilisateurs ne peuvent pas s'inscrire pour le moment. Vous pouvez toujours créer un compte ou vous connecter, puis réessayer ce lien plus tard." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Nouvelle version" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Aucun emoji ne correspond à votre recherche." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Aucun emoji ne correspond à cette recherche" @@ -22363,11 +22289,6 @@ msgstr "Aucune" msgid "None (normal behavior)" msgstr "Aucun (comportement normal)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normal" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Seul vous pouvez voir ce message. <0>Ignorer" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Opacité" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Ouvrir le sélecteur de date" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Ouvrir les téléchargements pour ordinateur" @@ -23165,6 +23086,11 @@ msgstr "Ouvrir le sélecteur rapide" msgid "Open settings" msgstr "Ouvrir les réglages" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Ouvrir le centre logiciel" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Système d'exploitation" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Activez les paramètres expérimentaux de contrôle des badges d’éléments non lus par communauté et par canal" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimisé pour les passages de lecture plus longs" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Optimisation de la caméra..." @@ -23483,7 +23404,7 @@ msgstr "Hors de la période de remboursement" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Groupes d'avatars superposés affichant plusieurs utilisateurs avec un nombre de dépassement automatique." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Superpositions et menus" @@ -23886,11 +23807,6 @@ msgstr "Volume par son" msgid "Per-window audio isn't available on this build of macOS." msgstr "L'audio par fenêtre n'est pas disponible sur cette version de macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Parfait pour le contenu quotidien" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Position" msgid "Power saving" msgstr "Économie d'énergie" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Puissant et accrocheur" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Principal (désactivé)" msgid "Primary accent color" msgstr "Couleur d'accentuation principale" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Action principale" @@ -25724,11 +25635,6 @@ msgstr "Inscription" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Les inscriptions sont actuellement fermées. Utilisez un lien d’inscription fourni par un admin pour créer un compte." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Normal" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Bouton normal" @@ -26198,7 +26104,7 @@ msgstr "A supprimé la limite d'utilisateurs." msgid "Removed timeout from {0}" msgstr "Temps mort supprimé pour {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Supprime toutes les surcharges par variable, mais conserve votre bibliothèque et vos ressources intactes." @@ -26703,7 +26609,7 @@ msgstr "Réinitialiser les données de l'app" msgid "Reset app data and restart" msgstr "Réinitialiser les données de l'app et redémarrer" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Réinitialiser les données du thème personnalisé" @@ -26714,7 +26620,7 @@ msgstr "Réinitialiser les données du thème personnalisé ?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Réinitialiser les données" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Redémarrer {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Redémarrer {productName}" @@ -28030,7 +27936,7 @@ msgstr "Recherche en cours" msgid "Searching people..." msgstr "Recherche de personnes..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Deuxième option" @@ -28047,7 +27953,7 @@ msgstr "Secondaire (désactivé)" msgid "Secondary accent color" msgstr "Couleur d'accentuation secondaire" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Action secondaire" @@ -28339,7 +28245,7 @@ msgstr "Sélection : {0}" msgid "Selection: {0} (max {1})" msgstr "Sélection : {0} (max {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Sélections" @@ -28369,16 +28275,6 @@ msgstr "Forcer le mode auto-hébergé" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Remboursements en libre-service disponibles dans les 3 jours suivant le paiement, une fois tous les 30 jours. Le remboursement d'un abonnement l'annule. Les acheteurs de l'UE/EEE renoncent à leur droit de rétractation de 14 jours lors du paiement pour accéder immédiatement au contenu. Utilisez le bouton de remboursement intégré à l'application au lieu d'une rétrofacturation. Les rétrofacturations peuvent restreindre définitivement votre compte. Stripe gère les paiements en toute sécurité. Nous ne voyons jamais votre numéro de carte complet." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Semi-gras" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Semi-gras grand" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Définit le volume de tous les effets sonores. Les réglages individuels #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Réglages" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Plusieurs personnes sont en train d'écrire..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Partager" @@ -29002,7 +28898,7 @@ msgstr "Partager" msgid "Share action." msgstr "Partager l'action." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Partager le thème personnalisé actif" @@ -29035,7 +28931,7 @@ msgstr "Partager la source" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Offrez l'expérience {premiumProductName} à vos amis en leur achetant un abonnement cadeau." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Partager le thème" @@ -29963,11 +29859,6 @@ msgstr "Curseur avec valeurs de pas" msgid "Sliders" msgstr "Curseurs" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Mise en évidence légèrement plus grasse" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Insultes, langage déshumanisant ou attaques envers des groupes protégés." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Petit" @@ -30161,11 +30050,6 @@ msgstr "S'aligne sur des incréments de 5." msgid "Social" msgstr "Social" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Une lecture douce et agréable" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Indicateurs de statut" msgid "Status page" msgstr "Page d'état" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Ardoise de statut" @@ -31291,15 +31175,6 @@ msgstr "Stripe a signalé une carte émise en {countryName}. Pour payer dans cet msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Bonne qualité avec un coût CPU modéré. Bonne solution de secours Chromium pour le partage d'écran." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Hiérarchie visuelle forte" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Variantes de style" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Scénarios d'abonnement" msgid "Subtext" msgstr "Sous-texte" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Sous-titre" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Tester les aperçus d’URL et les intégrations rendues" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Texte" @@ -31973,6 +31841,10 @@ msgstr "Salons textuels" msgid "Text formatting" msgstr "Mise en forme du texte" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Le texte est rendu avec un antialiasing en niveaux de gris au lieu de ClearType lorsque la transparence est activée, il apparaîtra donc plus doux." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "La communauté que vous recherchez a peut-être été supprimée ou vous n'y avez peut-être pas accès." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "La mise à jour de bureau n’a pas pu être téléchargée. Réessayez à partir du bouton de mise à jour lorsque votre connexion est stable." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "La mise à jour de la version pour ordinateur a été téléchargée. Redémarrez {productName} pour terminer l’installation." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Le fichier téléchargé est enregistré sur votre ordinateur. Installez-le avec votre gestionnaire de paquets habituel." @@ -32442,12 +32314,7 @@ msgstr "Cette personne n’accepte peut-être pas vos messages, ou vous ne faite msgid "They're not accepting friend requests right now." msgstr "Cette personne n'accepte pas les demandes d'amis pour le moment." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Fine" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Troisième option" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Ce message est très populaire. Vous devez supprimer certaines réactions avant d'en ajouter de nouvelles." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Ceci est un exemple de texte dans la zone de texte." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Ceci est la description de la première option" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Ceci est la description de la deuxième option" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Ceci est la description de la troisième option" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Cela supprime tous les raccourcis personnalisés et réactive tous les raccourcis intégrés. Cette action est irréversible." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Ce lien de réinitialisation a expiré. Les liens de réinitialisation sont valides 24 heures. Demandez-en un nouveau." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Ce lien de réinitialisation a expiré. Les liens de réinitialisation sont valides pendant 1 heure. Veuillez en demander un nouveau." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Ce bouton est désactivé et ne peut pas être modifié" msgid "This switch is disabled in the checked state" msgstr "Ce bouton est désactivé lorsqu'il est coché" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Ce texte illustre le style de titre en gras" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Ce texte est un exemple de titre en gras" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Ce texte est un exemple de style italique" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Ce texte illustre le style semi-gras grand format" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Ce texte est un exemple de style normal" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Ce texte est un exemple de style semi-gras" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Cette zone de texte s'agrandit automatiquement de 4 à 12 lignes au fur et à mesure que vous tapez." @@ -33417,11 +33254,6 @@ msgstr "Fuseau horaire" msgid "Tip" msgstr "Astuce" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Titre" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Saisissez une couleur (hex, rgb(), hsl ou nom) ou utilisez le sélecteur msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Saisissez une couleur (hex, rgb(), hsl() ou nom) ou utilisez le sélecteur." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Taille du texte" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Seulement l'indicateur de saisie" msgid "Typing state" msgstr "État de saisie" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Typographie" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Démonstration de l'échelle typographique" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Solution de secours universelle. Qualité la plus basse, mais fonctionne #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Inconnu" @@ -34649,8 +34469,8 @@ msgstr "Emojis illimités" msgid "Unlimited stickers" msgstr "Autocollants illimités" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Débloquez {lockedEmojiCount, plural, one {# emoji personnalisé} other {# emojis personnalisés}} de {communityCount, plural, one {# communauté} other {# communautés}} avec {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Salon sans nom" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Groupe sans nom" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Nous avons mis à jour nos politiques. Veuillez les consulter et les accepter pour continuer." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Vous modifiez votre profil spécifique à cette communauté. Ce profil ne sera visible que dans cette communauté et remplacera votre profil global." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Vous êtes maintenant développeur !" diff --git a/fluxer_app/src/features/i18n/locales/he/messages.po b/fluxer_app/src/features/i18n/locales/he/messages.po index d9c343939..bb15a44bd 100644 --- a/fluxer_app/src/features/i18n/locales/he/messages.po +++ b/fluxer_app/src/features/i18n/locales/he/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} למחשב {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "צוות קהילת {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "לא ניתן ליצור קשר עם שירות העדכונים של {productName}. בדוק את החיבור שלך ונסה שוב." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "לא ניתן להפעיל מחדש את {productName} עם העדכון שהורדת. נסה שוב באמצעות כפתור העדכון." @@ -1210,8 +1210,8 @@ msgstr "סמל המילה של {productName}" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} מחוברים" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "הקבוצה של {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "שם מארח, לדוגמה {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "זמין עדכון עבור לינוקס במחשב השולחני. בחרו את פורמט החבילה עבור מערכת זו, ו-{productName} ישמור אותו באופן מקומי." @@ -1990,7 +1990,7 @@ msgstr "סקר" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "נדרש redirect_uri כאשר היקף הבוט אינו ההיקף היחיד." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "רכיב רב-פעמי למצבים ריקים, שגיאות והודעות סטטוס." @@ -3891,7 +3891,7 @@ msgstr "אפליקציות" msgid "Arabic" msgstr "ערבית" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "ארכיון" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "גלילה אוטומטית" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "זמינה" @@ -5243,26 +5243,6 @@ msgstr "טשטוש" msgid "Blur strength" msgstr "עוצמת טשטוש" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "גוף" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "מודגש" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "כותרת מודגשת" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "כותרת מודגשת" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "וריאציות של כפתורים" msgid "Button with context menu" msgstr "כפתור עם תפריט הקשר" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "לחצנים" @@ -5989,11 +5969,6 @@ msgstr "לא ניתן להתקין חבילת מדבקות" msgid "Captcha verification failed. Try again." msgstr "אימות הקאפצ'ה נכשל. יש לנסות שוב." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "כיתוב" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "נקה את כל עקיפות ברירת המחדל הפעילות" msgid "Clear all attachment mocks" msgstr "נקה את כל הדמויות המצורפות" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "נקה את כל עקיפות האסימונים" @@ -7215,7 +7190,7 @@ msgstr "נקה מוק עבור קובץ מצורף זה" msgid "Clear nickname" msgstr "נקה כינוי" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "איפוס התאמות אישיות" @@ -7299,7 +7274,7 @@ msgstr "הנושא נוקה." msgid "Clearing trusted domains..." msgstr "מנקה דומיינים מהימנים..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "מנקה CSS מהיר, ערכות נושא מיובאות, נכסים שהועלו והפניות לקבצים מקומיים במכשיר זה." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "יש ללחוץ כדי לממש את המתנה!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "יש ללחוץ כדי להעתיק" @@ -8825,7 +8800,7 @@ msgstr "העתקת קישור הזמנה" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "העתקת קישור" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "לא ניתן היה לשנות את מחזור החיוב שלך" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "לא ניתן היה לבדוק עדכונים" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "לא ניתן היה למחוק את ההודעות שלך" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "לא ניתן היה להוריד את עדכון שולחן העבודה" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "לא ניתן היה להתחיל את החיבור" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "לא ניתן היה להתחיל את עדכון שולחן העבודה" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "לחצן סכנה נלחץ." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "ברירת המחדל היא כבוי בנייד כדי לשמור על #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "ההודעות שלך נמחקו." msgid "Deleted." msgstr "נמחק." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "טיפוגרפיה עדינה וקלילה" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "עדכון זמין לשולחן העבודה. בחר חבילת לינוקס." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "עדכון תוכנת המחשב מוכן" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "גרסת שולחן העבודה {version} הורדה. הפעל מחדש את {productName} כדי לסיים את ההתקנה." @@ -11753,11 +11723,9 @@ msgstr "התעלם מהאזכור" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "עקב חוקי תוכן למבוגרים ב{regionName}, מדיה זו אינה זמינה באזורך הנוכחי." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "שכפול" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "עריכת הביוגרפיה בפרופיל" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "טקסט שניתן לערוך" @@ -13001,7 +12969,7 @@ msgstr "אפשר תפוגת קבצים מצורפים" msgid "Enable audio" msgstr "הפעלת שמע" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "הפעלת תכונת בטא" @@ -13038,7 +13006,7 @@ msgstr "הפעל מצב מפתחים" msgid "Enable email delivery" msgstr "אפשר משלוח דוא\"ל" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "הפעלת אפשרות נוספת" @@ -13660,7 +13628,7 @@ msgstr "שגיאה" msgid "error code {code}" msgstr "קוד שגיאה {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "שגיאה בעיבוד התוכן" @@ -14095,11 +14063,6 @@ msgstr "קישורים חיצוניים עלולים להיות מסוכנים. msgid "Extra large" msgstr "גדול במיוחד" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "דק במיוחד" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "לחיצה ראשונה" msgid "First click pass-through when unfocused" msgstr "לחיצה ראשונה עוברת כשלא בפוקוס" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "אפשרות ראשונה" @@ -14917,10 +14880,6 @@ msgstr "בהתאם להגדרות הראשיות • {effectiveValue}%" msgid "Font" msgstr "גופן" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "משקלי גופנים" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "מ־{start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "מאת <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "כללי" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "יצירת קישור שניתן לשיתוף או העתקת קוד ה-CSS המותאם אישית המשולב שלך." @@ -15481,11 +15440,6 @@ msgstr "יצירת קוד חדש" msgid "Generating code…" msgstr "מפיק קוד…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "תצוגת טקסט עדינה ואוורירית" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "הוא" msgid "Header" msgstr "כותרת" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "כותרת" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "הערוץ עובר אינדוקס" msgid "Indicator" msgstr "מחוון" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "חיווי וסטטוס" @@ -17557,7 +17506,7 @@ msgstr "מצבי קלט" msgid "Input volume" msgstr "עוצמת קלט" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "קלט וטקסט" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "התקנת חבילת מדבקות" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "מותקן" @@ -18094,15 +18043,6 @@ msgstr "שקט עכשיו..." msgid "Italian" msgstr "איטלקית" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "נטוי" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "הדגמה של סגנון נטוי" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "שפה" msgid "Language settings" msgstr "הגדרות שפה" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "תמיכה בשפות" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "שפות" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "גדול" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "{premiumProductName} לכל החיים" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "בהיר" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "ברירת מחדל של לינוקס" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "חבילת לינוקס" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "סימון הערוץ העליון בתיבת הדואר הנכנס כנקרא" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "עיצוב טקסט (Markdown)" @@ -19945,10 +19877,8 @@ msgstr "גודל מדיה" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "בינוני" @@ -20820,7 +20750,7 @@ msgstr "עוד" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "פעולות נוספות" @@ -20993,10 +20923,6 @@ msgstr "אימות דו-שלבי" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "תוכן רב-לשוני" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "משתמשים חדשים לא יכולים להצטרף כרגע. עדיין באפשרותך ליצור חשבון או להיכנס, ואז לנסות את הקישור הזה שוב מאוחר יותר." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "גרסה חדשה" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "לא נמצאו אימוג'ים התואמים לחיפוש שלך." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "לא נמצאו אימוג'יז תואמים לחיפוש" @@ -22363,11 +22289,6 @@ msgstr "ללא" msgid "None (normal behavior)" msgstr "ללא (התנהגות רגילה)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "רגיל" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "הודעה זו גלויה לך בלבד. <0>התעלם" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "אטימות" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "פתח בורר תאריכים" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "פתח הורדות למחשב" @@ -23165,6 +23086,11 @@ msgstr "פתח מחליף מהיר" msgid "Open settings" msgstr "פתח הגדרות" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "פתח את מרכז התוכנה" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "מערכת הפעלה" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "הצטרף לאפשרות הניסיונית לשליטה על סמני הודעות שלא נקראו ברמת קהילה וברמת ערוץ" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "מותאם לקטעי קריאה ארוכים" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "מבצע אופטימיזציה למצלמה..." @@ -23483,7 +23404,7 @@ msgstr "מחוץ לחלון ההחזר הכספי" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "קבוצות אווטאר חופפות המציגות מספר משתמשים עם ספירת גלישה אוטומטית." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "שכבות-על ותפריטים" @@ -23886,11 +23807,6 @@ msgstr "עוצמת שמע לכל צליל" msgid "Per-window audio isn't available on this build of macOS." msgstr "שמע לכל חלון אינו זמין בגרסת macOS זו." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "מושלם לתוכן יומיומי" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "מיקום" msgid "Power saving" msgstr "חיסכון בחשמל" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "עוצמתי ומושך תשומת לב" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "ראשי (מושבת)" msgid "Primary accent color" msgstr "צבע הדגשה ראשי" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "פעולה ראשית" @@ -25724,11 +25635,6 @@ msgstr "רישום" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "ההרשמה סגורה כרגע. יש להשתמש בקישור הרשמה ממנהל כדי ליצור חשבון." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "רגיל" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "כפתור רגיל" @@ -26198,7 +26104,7 @@ msgstr "הוסרה הגבלת המשתמשים." msgid "Removed timeout from {0}" msgstr "הוסרה השהיה מ- {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "מסיר כל עקיפה לכל משתנה אך משאיר את הספרייה והנכסים שלך ללא פגע." @@ -26703,7 +26609,7 @@ msgstr "איפוס נתוני האפליקציה" msgid "Reset app data and restart" msgstr "איפוס נתוני האפליקציה והפעלה מחדש" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "איפוס נתוני ערכת נושא מותאמת אישית" @@ -26714,7 +26620,7 @@ msgstr "לאפס את נתוני העיצוב המותאם אישית?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "איפוס נתונים" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "הפעל מחדש את {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "הפעל מחדש את {productName}" @@ -28030,7 +27936,7 @@ msgstr "מחפש" msgid "Searching people..." msgstr "מחפש אנשים..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "אפשרות שנייה" @@ -28047,7 +27953,7 @@ msgstr "משני (מנוטרל)" msgid "Secondary accent color" msgstr "צבע הדגשה משני" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "פעולה משנית" @@ -28339,7 +28245,7 @@ msgstr "בחירה: {0}" msgid "Selection: {0} (max {1})" msgstr "בחירה: {0} (מקסימום {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "בחירות" @@ -28369,16 +28275,6 @@ msgstr "עקיפת מצב אירוח עצמי" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "החזרים בשירות עצמי זמינים תוך 3 ימים מהתשלום, פעם ב-30 יום. החזר כספי על מנוי מבטל אותו. רוכשים באיחוד האירופי/אזור הכלכלי האירופי מוותרים על זכות הביטול תוך 14 יום בקופה כדי לגשת לתוכן באופן מיידי. השתמשו בלחצן ההחזר הכספי בתוך האפליקציה במקום בביטול עסקה. ביטולי עסקה עלולים להגביל לצמיתות את חשבונכם. Stripe מטפלת בתשלום באופן מאובטח. אנחנו לעולם לא רואים את מספר הכרטיס המלא שלכם." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "מודגש למחצה" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "מודגש למחצה גדול" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "קובע את העוצמה לכל אפקט קולי. הגדרות ספצ #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "הגדרות" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "כמה אנשים מקלידים..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "שיתוף" @@ -29002,7 +28898,7 @@ msgstr "שיתוף" msgid "Share action." msgstr "פעולת שיתוף." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "שיתוף ערכת נושא מותאמת אישית פעילה" @@ -29035,7 +28931,7 @@ msgstr "שיתוף מקור" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "שתף את חוויית {premiumProductName} עם חבריך על ידי רכישת מנוי מתנה." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "שיתוף ערכת נושא" @@ -29963,11 +29859,6 @@ msgstr "מחוון עם ערכי מרווח" msgid "Sliders" msgstr "מחוונים" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "הדגשה מודגשת קלות" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "השמצות, שפה מבזה או תקיפות נגד קבוצות מוגנות." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "קטן" @@ -30161,11 +30050,6 @@ msgstr "נצמד בקפיצות של 5." msgid "Social" msgstr "חברתי" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "חוויית קריאה רכה וקלה" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "מחווני סטטוס" msgid "Status page" msgstr "דף סטטוס" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "סטטוס" @@ -31291,15 +31175,6 @@ msgstr "Stripe דיווח שכרטיס האשראי הונפק ב-{countryName}. msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "איכות חזקה בעלות מעבד בינונית. חלופה טובה של Chromium לשיתוף מסך." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "היררכיה ויזואלית חזקה" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "וריאציות סגנון" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "תרחישי מנוי" msgid "Subtext" msgstr "כותרת משנה" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "כותרת משנה" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "בדיקת פתיחת כתובות אתרים והטמעות מעובד #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "טקסט" @@ -31973,6 +31841,10 @@ msgstr "ערוצי טקסט" msgid "Text formatting" msgstr "עיצוב טקסט" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "הטקסט מוצג עם החלקה בגווני אפור במקום ClearType כאשר שקיפות מופעלת, ולכן הוא ייראה רך יותר." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "ייתכן שהקהילה שאתם מחפשים נמחקה, או שאין לכם גישה אליה." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "לא ניתן היה להוריד את עדכון שולחן העבודה. נסה שוב באמצעות כפתור העדכון כשהחיבור שלך יציב." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "העדכון לשולחן העבודה הוריד. הפעל מחדש את {productName} כדי לסיים את ההתקנה." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "הקובץ שהורד נשמר במחשב שלך. התקן אותו באמצעות מנהל החבילות הרגיל שלך." @@ -32442,12 +32314,7 @@ msgstr "ייתכן שהם אינם מקבלים ממך הודעות, או שאת msgid "They're not accepting friend requests right now." msgstr "הם לא מקבלים בקשות חברות כרגע." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "דק" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "אפשרות שלישית" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "זו הודעה עמוסה במיוחד. יש להסיר חלק מהריאקציות לפני שתוכל/י להוסיף נוספות." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "זהו טקסט לדוגמה בתיבת הטקסט." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "זהו התיאור של האפשרות הראשונה" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "זהו התיאור של האפשרות השנייה" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "זוהו תיאור האפשרות השלישית" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "פעולה זו תסיר את כל קיצורי הדרך המותאמים אישית ותפעיל מחדש את כל קיצורי הדרך המובנים. לא ניתן לבטל פעולה זו." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "קישור האיפוס הזה פג תוקף. קישורי איפוס תקפים למשך 24 שעות. בקש קישור חדש." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "קישור זה לאיפוס סיסמה פג תוקף. קישורי איפוס תקפים למשך שעה אחת. אנא בקש קישור חדש." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "המתג מושבת ולא ניתן להפעיל אותו" msgid "This switch is disabled in the checked state" msgstr "מתג זה מושבת במצב מסומן" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "טקסט זה מדגים עיצוב כותרת מודגשת" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "טקסט זה מדגים עיצוב כותרת מודגשת" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "טקסט זה מדגים עיצוב נטוי" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "טקסט זה מדגים עיצוב גדול וחצי מודגש" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "טקסט זה מדגים עיצוב רגיל" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "טקסט זה מדגים עיצוב חצי-מודגש" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "תיבת טקסט זו מתרחבת אוטומטית בין 4 ל-12 שורות תוך כדי הקלדה." @@ -33417,11 +33254,6 @@ msgstr "אזור זמן" msgid "Tip" msgstr "טיפ" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "כותרת" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "הקלד צבע (hex, rgb(), hsl, או שם), או השתמש בבורר msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "הקלד צבע (hex, rgb(), hsl(), או שם) או השתמש בבורר." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "גודל גופן" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "רק חיווי הקלדה" msgid "Typing state" msgstr "סטטוס הקלדה" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "טיפוגרפיה" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "הדגמת סולם גופנים" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "גיבוי אוניברסלי. האיכות הנמוכה ביותר, א #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "לא ידוע" @@ -34649,8 +34469,8 @@ msgstr "אימוג'י ללא הגבלה" msgid "Unlimited stickers" msgstr "סטיקרים ללא הגבלה" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "פתח {lockedEmojiCount, plural, one {# אימוג'י מותאם אישית} other {# אימוג'ים מותאמים אישית}} מתוך {communityCount, plural, one {# קהילה} other {# קהילות}} עם {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "ערוץ ללא שם" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "קבוצה ללא שם" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "עדכנו את המדיניות שלנו. יש לעיין ולקבל אותה כדי להמשיך." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "אתה עורך את הפרופיל שלך עבור הקהילה הזו. פרופיל זה יהיה גלוי רק בקהילה זו וידרוס את הפרופיל הגלובלי שלך." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "כעת אתה מפתח!" diff --git a/fluxer_app/src/features/i18n/locales/hi/messages.po b/fluxer_app/src/features/i18n/locales/hi/messages.po index 0be22d313..bddbdff88 100644 --- a/fluxer_app/src/features/i18n/locales/hi/messages.po +++ b/fluxer_app/src/features/i18n/locales/hi/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} डेस्कटॉप {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName} कम्युनिटी टीम" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} अपडेट सेवा तक नहीं पहुंच सका। कृपया अपना कनेक्शन जांचें और फिर से प्रयास करें।" #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} डाउनलोड किए गए अपडेट में पुनः आरंभ नहीं हो सका। अपडेट बटन से फिर से प्रयास करें।" @@ -1210,8 +1210,8 @@ msgstr "{productName} वर्डमार्क" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} वेब {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} ऑनलाइन" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "{resolvedName} का ग्रुप" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "एक होस्टनेम, जैसे {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "लिनक्स डेस्कटॉप के लिए एक अपडेट उपलब्ध है। इस सिस्टम के लिए पैकेज प्रारूप चुनें और {productName} इसे स्थानीय रूप से सहेज लेगा।" @@ -1990,7 +1990,7 @@ msgstr "एक पोल" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "जब बॉट स्कोप ही एकमात्र स्कोप न हो, तो redirect_uri ज़रूरी है।" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "खाली स्टेटस, गड़बड़ियों और स्थिति संदेशों के लिए एक दोबारा इस्तेमाल किया जा सकने वाला कॉम्पोनेंट।" @@ -3891,7 +3891,7 @@ msgstr "ऐप्स" msgid "Arabic" msgstr "अरबी" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "आर्काइव करें" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "ऑटोस्क्रॉलिंग" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "उपलब्ध है" @@ -5243,26 +5243,6 @@ msgstr "धुंधला करें" msgid "Blur strength" msgstr "धुंधलापन" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "मुख्य टेक्स्ट" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "बोल्ड" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "बोल्ड हेडिंग" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "बोल्ड शीर्षक" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "बटन के प्रकार" msgid "Button with context menu" msgstr "संदर्भ मेनू वाला बटन" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "बटन" @@ -5989,11 +5969,6 @@ msgstr "स्टिकर पैक इंस्टॉल नहीं कि msgid "Captcha verification failed. Try again." msgstr "कैप्चा सत्यापन विफल रहा। फिर से कोशिश करें।" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "कैप्शन" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "सभी सक्रिय ओवरराइड साफ़ कर msgid "Clear all attachment mocks" msgstr "सभी अटैचमेंट मॉक साफ़ करें" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "सभी टोकन ओवरराइड साफ़ करें" @@ -7215,7 +7190,7 @@ msgstr "इस अटैचमेंट के लिए मॉक साफ़ msgid "Clear nickname" msgstr "उपनाम हटाएँ" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "ओवरराइड साफ़ करें" @@ -7299,7 +7274,7 @@ msgstr "विषय साफ़ किया गया।" msgid "Clearing trusted domains..." msgstr "भरोसेमंद डोमेन हटाए जा रहे हैं..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "इस डिवाइस पर त्वरित CSS, इंपोर्ट की गई थीम, अपलोड की गई एसेट और स्थानीय फ़ाइल के रेफ़रेंस हटाता है." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "अपना उपहार पाने के लिए क्लिक करें!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "कॉपी करने के लिए क्लिक करें" @@ -8825,7 +8800,7 @@ msgstr "आमंत्रण यूआरएल कॉपी करें" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "लिंक कॉपी करें" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "आपकी बिलिंग साइकल नहीं बदली जा सकी" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "अपडेट की जाँच नहीं की जा सकी" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "आपके मैसेज मिटाए नहीं जा सके" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "डेस्कटॉप अपडेट डाउनलोड नहीं किया जा सका" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "कनेक्शन शुरू नहीं हो पाया" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "डेस्कटॉप अपडेट शुरू नहीं हो सका" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "खतरनाक बटन पर क्लिक किया गया।" #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "बैटरी लाइफ़ और डेटा बचाने क #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "आपके मैसेज हटा दिए गए हैं।" msgid "Deleted." msgstr "हटा दिया गया।" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "हल्की और नाज़ुक टाइपोग्राफ़ी" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "डेस्कटॉप अपडेट उपलब्ध है. एक लिनक्स पैकेज चुनें." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "डेस्कटॉप अपडेट तैयार है" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "डेस्कटॉप संस्करण {version} डाउनलोड हो गया है। इंस्टॉलेशन पूरा करने के लिए {productName} को पुनरारंभ करें।" @@ -11753,11 +11723,9 @@ msgstr "मेंशन खारिज करें" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "{regionName} में परिपक्व सामग्री कानूनों के कारण, यह मीडिया आपके वर्तमान क्षेत्र से उपलब्ध नहीं है।" #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "डुप्लिकेट करें" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "अपनी प्रोफ़ाइल बायो एडिट करें" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "बदला जा सकने वाला टेक्स्ट" @@ -13001,7 +12969,7 @@ msgstr "अटैचमेंट की समाप्ति सक्षम msgid "Enable audio" msgstr "ऑडियो चालू करें" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "बीटा सुविधा चालू करें" @@ -13038,7 +13006,7 @@ msgstr "डेवलपर मोड चालू करें" msgid "Enable email delivery" msgstr "ईमेल डिलीवरी सक्षम करें" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "अतिरिक्त विकल्प चालू करें" @@ -13660,7 +13628,7 @@ msgstr "गड़बड़ हो गई" msgid "error code {code}" msgstr "त्रुटि कोड {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "कंटेंट रेंडर करने में गड़बड़ी हुई" @@ -14095,11 +14063,6 @@ msgstr "बाहरी लिंक खतरनाक हो सकते ह msgid "Extra large" msgstr "बहुत बड़ा" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "अतिरिक्त हल्का" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "पहला क्लिक" msgid "First click pass-through when unfocused" msgstr "अनफ़ोकस होने पर पहला क्लिक पास-थ्रू" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "पहला विकल्प" @@ -14917,10 +14880,6 @@ msgstr "मास्टर का अनुसरण कर रहा है • msgid "Font" msgstr "फ़ॉन्ट" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "फ़ॉन्ट का वज़न" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "{start} से" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "<0>{0} से" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "सामान्य" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "शेयर करने लायक लिंक जनरेट करें या अपनी कंबाइंड कस्टम CSS कॉपी करें।" @@ -15481,11 +15440,6 @@ msgstr "नया कोड जनरेट करें" msgid "Generating code…" msgstr "कोड जनरेट हो रहा है…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "हल्का और हवादार टेक्स्ट डिस्प्ले" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "वह" msgid "Header" msgstr "हेडर" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "शीर्षक" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "चैनल इंडेक्स किया जा रहा है" msgid "Indicator" msgstr "इंडिकेटर" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "इंडिकेटर और स्टेटस" @@ -17557,7 +17506,7 @@ msgstr "इनपुट स्थितियां" msgid "Input volume" msgstr "इनपुट वॉल्यूम" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "इनपुट और टेक्स्ट" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "स्टिकर पैक इंस्टॉल करें" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "इंस्टॉल किया गया" @@ -18094,15 +18043,6 @@ msgstr "अभी सन्नाटा है..." msgid "Italian" msgstr "इतालवी" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "इटैलिक" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "इटैलिक स्टाइल का डेमो" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "भाषा" msgid "Language settings" msgstr "भाषा सेटिंग्ज़" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "भाषा सहायता" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "भाषाएँ" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "बड़ा" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "लाइफ़टाइम {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "हल्का" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "लिनक्स डिफ़ॉल्ट" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux पैकेज" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "शीर्ष इनबॉक्स चैनल को पढ़ा गया के रूप में मार्क करें" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "मार्कडाउन" @@ -19945,10 +19877,8 @@ msgstr "मीडिया का आकार" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "मध्यम" @@ -20820,7 +20750,7 @@ msgstr "ज़्यादा" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "और विकल्प" @@ -20993,10 +20923,6 @@ msgstr "मल्टी-फ़ैक्टर" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "बहुभाषी सामग्री" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "नए यूज़र अभी शामिल नहीं हो सकते हैं. आप अभी भी एक अकाउंट बना सकते हैं या साइन इन कर सकते हैं, फिर बाद में इस लिंक को दोबारा आज़माएँ." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "नया वर्ज़न" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "आपकी खोज से मेल खाने वाले कोई इमोजी नहीं मिले।" #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "इस खोज से कोई इमोजी मेल नहीं खाते" @@ -22363,11 +22289,6 @@ msgstr "कोई नहीं" msgid "None (normal behavior)" msgstr "कोई नहीं (सामान्य व्यवहार)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "सामान्य" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "यह मैसेज सिर्फ़ आप देख सकते हैं। <0>खारिज करें" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "अपारदर्शिता" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "तारीख चुनने वाला खोलें" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "डेस्कटॉप डाउनलोड खोलें" @@ -23165,6 +23086,11 @@ msgstr "क्विक स्विचर खोलें" msgid "Open settings" msgstr "सेटिंग खोलें" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "सॉफ़्टवेयर सेंटर खोलें" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "ऑपरेटिंग सिस्टम" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "समुदाय और चैनल के अनुसार प्रायोगिक अनरीड बैज नियंत्रणों का उपयोग करें" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "लंबे टेक्स्ट पढ़ने के लिए ऑप्टिमाइज़ किया गया" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "कैमरा ऑप्टिमाइज़ किया जा रहा है..." @@ -23483,7 +23404,7 @@ msgstr "रिफ़ंड विंडो के बाहर" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "ओवरलैप होते अवतार ग्रुप, जो ऑटोमैटिक ओवरफ़्लो काउंट के साथ कई यूज़र दिखाते हैं." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "ओवरले और मेन्यू" @@ -23886,11 +23807,6 @@ msgstr "हर ध्वनि के लिए वॉल्यूम" msgid "Per-window audio isn't available on this build of macOS." msgstr "macOS के इस बिल्ड पर प्रति-विंडो ऑडियो उपलब्ध नहीं है।" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "रोज़मर्रा के कॉन्टेंट के लिए परफ़ेक्ट" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "पद" msgid "Power saving" msgstr "बैटरी सेवर" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "दमदार और ध्यान खींचने वाला" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "प्राथमिक (अक्षम)" msgid "Primary accent color" msgstr "प्राथमिक एक्सेंट रंग" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "मुख्य कार्रवाई" @@ -25724,11 +25635,6 @@ msgstr "रजिस्ट्रेशन" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "फ़िलहाल पंजीकरण बंद है। खाता बनाने के लिए किसी एडमिन से मिला पंजीकरण लिंक इस्तेमाल करें." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "सामान्य" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "सामान्य बटन" @@ -26198,7 +26104,7 @@ msgstr "उपयोगकर्ता सीमा हटा दी गई।" msgid "Removed timeout from {0}" msgstr "{0} से टाइमआउट हटा दिया गया" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "हर वैरिएबल ओवरराइड को हटाता है, लेकिन आपकी लाइब्रेरी और एसेट को बरकरार रखता है।" @@ -26703,7 +26609,7 @@ msgstr "ऐप डेटा रीसेट करें" msgid "Reset app data and restart" msgstr "ऐप डेटा रीसेट करें और रीस्टार्ट करें" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "कस्टम थीम डेटा रीसेट करें" @@ -26714,7 +26620,7 @@ msgstr "कस्टम थीम डेटा रीसेट करें?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "डेटा रीसेट करें" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "{appName} को रीस्टार्ट करें" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "{productName} को पुनरारंभ करें" @@ -28030,7 +27936,7 @@ msgstr "खोज रहा है" msgid "Searching people..." msgstr "लोगों को खोजा जा रहा है..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "दूसरा विकल्प" @@ -28047,7 +27953,7 @@ msgstr "सेकंडरी (बंद)" msgid "Secondary accent color" msgstr "दूसरा एक्सेंट रंग" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "अन्य कार्रवाई" @@ -28339,7 +28245,7 @@ msgstr "चुना गया: {0}" msgid "Selection: {0} (max {1})" msgstr "चुना गया: {0} (अधिकतम {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "चुनी गई चीज़ें" @@ -28369,16 +28275,6 @@ msgstr "सेल्फ़-होस्टेड मोड ओवरराइड msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "भुगतान के 3 दिनों के भीतर, हर 30 दिनों में एक बार, सेल्फ़-सर्व रिफंड उपलब्ध है। सदस्यता वापस करने से वह रद्द हो जाती है। EU/EEA खरीदार तुरंत सामग्री एक्सेस करने के लिए चेकआउट पर 14-दिन के निकासी के अधिकार को छोड़ देते हैं। चार्जबैक के बजाय इन-ऐप रिफंड बटन का उपयोग करें। चार्जबैक आपके खाते को स्थायी रूप से प्रतिबंधित कर सकते हैं। Stripe भुगतान को सुरक्षित रूप से संभालता है। हम आपका पूरा कार्ड नंबर कभी नहीं देखते हैं।" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "सेमी बोल्ड" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "सेमी-बोल्ड बड़ा" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "हर साउंड इफ़ेक्ट के लिए लेव #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "सेटिंग्स" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "कई लोग लिख रहे हैं..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "शेयर करें" @@ -29002,7 +28898,7 @@ msgstr "शेयर करें" msgid "Share action." msgstr "शेयर करें." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "सक्रिय कस्टम थीम शेयर करें" @@ -29035,7 +28931,7 @@ msgstr "स्रोत शेयर करें" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "अपने दोस्तों के साथ {premiumProductName} अनुभव शेयर करने के लिए गिफ़्ट सब्सक्रिप्शन खरीदें।" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "थीम शेयर करें" @@ -29963,11 +29859,6 @@ msgstr "स्टेप वैल्यू के साथ स्लाइड msgid "Sliders" msgstr "स्लाइडर" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "थोड़ा गहरा जोर" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "अपमानजनक शब्द, अमानवीय भाषा या संरक्षित समूहों पर हमले।" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "छोटा" @@ -30161,11 +30050,6 @@ msgstr "5 के इंक्रीमेंट में स्नैप हो msgid "Social" msgstr "सोशल" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "आरामदायक और आसान पढ़ने का अनुभव" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "स्टेटस इंडिकेटर" msgid "Status page" msgstr "स्टेटस पेज" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "स्टेटस स्लेट" @@ -31291,15 +31175,6 @@ msgstr "Stripe ने बताया कि कार्ड {countryName} म msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "मध्यम CPU लागत पर अच्छी क्वालिटी. स्क्रीन शेयरिंग के लिए अच्छा क्रोमियम फ़ॉलबैक." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "मज़बूत विज़ुअल पदानुक्रम" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "स्टाइल के प्रकार" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "सदस्यता के परिदृश्य" msgid "Subtext" msgstr "उपशीर्षक" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "उपशीर्षक" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "यूआरएल अनफ़र्ल और रेंडर कि #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "टेक्स्ट" @@ -31973,6 +31841,10 @@ msgstr "टेक्स्ट चैनल" msgid "Text formatting" msgstr "टेक्स्ट फ़ॉर्मैटिंग" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "पारदर्शिता सक्षम होने पर ClearType के बजाय ग्रेस्केल एंटी-अलियासिंग के साथ टेक्स्ट रेंडर किया जाएगा, इसलिए यह नरम दिखेगा।" + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "आप जिस कम्युनिटी को ढूंढ रहे हैं, हो सकता है उसे डिलीट कर दिया गया हो या आपके पास उस तक ऐक्सेस न हो." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "डेस्कटॉप अपडेट डाउनलोड नहीं किया जा सका। जब आपका कनेक्शन स्थिर हो, तो अपडेट बटन से फिर से कोशिश करें।" #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "डेस्कटॉप अपडेट डाउनलोड हो गया है। इंस्टॉलेशन पूरा करने के लिए {productName} को पुनरारंभ करें।" #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "डाउनलोड की गई फ़ाइल आपके कंप्यूटर पर सेव हो गई है। इसे अपने सामान्य पैकेज मैनेजर से इंस्टॉल करें।" @@ -32442,12 +32314,7 @@ msgstr "हो सकता है कि वे आपसे मैसेज msgid "They're not accepting friend requests right now." msgstr "वे अभी मित्र अनुरोध स्वीकार नहीं कर रहे हैं।" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "पतला" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "तीसरा विकल्प" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "यह एक भारी मैसेज है. और रिएक्शन जोड़ने से पहले आपको कुछ रिएक्शन हटाने होंगे." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "यह टेक्स्ट एरिया में एक उदाहरण टेक्स्ट है।" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "यह पहला विकल्प विवरण है" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "यह दूसरा विकल्प विवरण है" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "यह तीसरा विकल्प विवरण है" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "इससे सभी कस्टम शॉर्टकट हट जाएंगे और सभी बिल्ट-इन शॉर्टकट फिर से चालू हो जाएंगे। इसे पहले जैसा नहीं किया जा सकता।" #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "यह रीसेट लिंक समाप्त हो गया है। रीसेट लिंक 24 घंटे तक मान्य रहते हैं। एक नया लिंक अनुरोध करें।" +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "यह रीसेट लिंक समाप्त हो गया है। रीसेट लिंक 1 घंटे तक चलते हैं। कृपया एक नया अनुरोध करें।" #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "यह स्विच अक्षम है और इसे चाल msgid "This switch is disabled in the checked state" msgstr "यह स्विच चुने हुए स्थिति में अक्षम है" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "यह टेक्स्ट बोल्ड हेडिंग स्टाइल दिखाता है" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "यह टेक्स्ट बोल्ड शीर्षक स्टाइल दिखाता है" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "यह टेक्स्ट इटैलिक स्टाइल दिखाता है" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "यह टेक्स्ट बड़े सेमी-बोल्ड स्टाइल को दर्शाता है" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "यह टेक्स्ट सामान्य स्टाइल दिखाता है" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "यह टेक्स्ट सेमी-बोल्ड स्टाइलिंग दिखाता है" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "यह टेक्स्ट एरिया टाइप करते समय 4 से 12 पंक्तियों के बीच अपने आप बड़ा हो जाता है।" @@ -33417,11 +33254,6 @@ msgstr "समय क्षेत्र" msgid "Tip" msgstr "टिप" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "शीर्षक" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "कोई रंग टाइप करें (हेक्स, आर msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "कोई रंग टाइप करें (हेक्स, आरजीबी(), एचएसएल(), या नाम) या पिकर का उपयोग करें।" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "टेक्स्ट का आकार" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "सिर्फ़ टाइपिंग इंडिकेटर" msgid "Typing state" msgstr "टाइपिंग स्थिति" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "टाइपोग्राफ़ी" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "टाइपोग्राफ़ी स्केल का प्रदर्शन" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "यूनिवर्सल फ़ॉलबैक. सबसे कम #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "अज्ञात" @@ -34649,8 +34469,8 @@ msgstr "असीमित इमोजी" msgid "Unlimited stickers" msgstr "असीमित स्टिकर" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "{lockedEmojiCount, plural, one {# कस्टम इमोजी} other {# कस्टम इमोजी}} को {communityCount, plural, one {# कम्युनिटी} other {# कम्युनिटीज़}} से {PREMIUM_PRODUCT_NAME} के साथ अनलॉक करें।" @@ -34796,7 +34616,7 @@ msgstr "बिना नाम वाला चैनल" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "बिना नाम का ग्रुप" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "हमने अपनी नीतियां अपडेट कर दी हैं। जारी रखने के लिए उनकी समीक्षा करें और उन्हें स्वीकार करें।" #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "वेब {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "आप अपनी कम्युनिटी-विशिष्ट प्रोफ़ाइल एडिट कर रहे हैं. यह प्रोफ़ाइल सिर्फ़ इसी कम्युनिटी में दिखेगी और आपकी ग्लोबल प्रोफ़ाइल को ओवरराइड कर देगी." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "अब आप एक डेवलपर हैं!" diff --git a/fluxer_app/src/features/i18n/locales/hr/messages.po b/fluxer_app/src/features/i18n/locales/hr/messages.po index c60783938..6b32c8995 100644 --- a/fluxer_app/src/features/i18n/locales/hr/messages.po +++ b/fluxer_app/src/features/i18n/locales/hr/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} stolni klijent {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Tim zajednice {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} nije uspio doći do servisa za ažuriranja. Provjerite svoju vezu i pokušajte ponovno." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} nije uspio ponovno pokrenuti aplikaciju u ažuriranu verziju. Pokušajte ponovno pomoću gumba za ažuriranje." @@ -1210,8 +1210,8 @@ msgstr "{productName} oznaka" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} na mreži" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Grupa {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "naziv hosta, npr. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Dostupna je ažuriranje za Linux na računalu. Odaberite format paketa za ovaj sustav i {productName} će ga spremiti lokalno." @@ -1990,7 +1990,7 @@ msgstr "anketa" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "redirect_uri je obavezan kada bot nije jedini opseg." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Komponenta za višekratnu upotrebu za prazna stanja, pogreške i statusne poruke." @@ -3891,7 +3891,7 @@ msgstr "Aplikacije" msgid "Arabic" msgstr "arapski" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Arhiviraj" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Automatsko pomicanje" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Dostupno" @@ -5243,26 +5243,6 @@ msgstr "Zamućenje" msgid "Blur strength" msgstr "Snaga zamućenja" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Tijelo" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Podebljano" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Podebljani naslov" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Podebljani naslov" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Varijante gumba" msgid "Button with context menu" msgstr "Gumb s kontekstnim izbornikom" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Gumbi" @@ -5989,11 +5969,6 @@ msgstr "Nije moguće instalirati paket naljepnica" msgid "Captcha verification failed. Try again." msgstr "Provjera Captche nije uspjela. Pokušajte ponovno." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Opis" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Očisti sva aktivna premošćenja" msgid "Clear all attachment mocks" msgstr "Izbriši sve lažne privitke" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Poništi sva premošćivanja tokena" @@ -7215,7 +7190,7 @@ msgstr "Očisti maketu za ovaj privitak" msgid "Clear nickname" msgstr "Očisti nadimak" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Poništi prilagodbe" @@ -7299,7 +7274,7 @@ msgstr "Očišćena tema." msgid "Clearing trusted domains..." msgstr "Brisanje pouzdanih domena..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Briše brzi CSS, uvezene teme, prenesene resurse i reference lokalnih datoteka na ovom uređaju." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Dodirnite za preuzimanje poklona!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Dodirnite za kopiranje" @@ -8825,7 +8800,7 @@ msgstr "Kopiraj URL pozivnice" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Kopiraj poveznicu" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Nije bilo moguće promijeniti vaš ciklus naplate" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Nije moguće provjeriti ažuriranja" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Nije moguće izbrisati vaše poruke" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Nije moguće preuzeti ažuriranje za stolno računalo" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Nije moguće uspostaviti vezu" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Nije moguće pokrenuti ažuriranje za stolno računalo" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Kliknuto opasno gumb." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Na mobilnim uređajima je zadano isključeno radi očuvanja baterije i u #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Poruke su izbrisane." msgid "Deleted." msgstr "Izbrisano." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Nježna i lagana tipografija" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Dostupno je ažuriranje za stolno računalo. Odaberite Linux paket." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Ažuriranje za stolno računalo spremno" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Stolna verzija {version} je preuzeta. Ponovo pokrenite {productName} da biste dovršili instalaciju." @@ -11753,11 +11723,9 @@ msgstr "Odbaci spominjanje" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Zbog zakona o sadržaju za odrasle u regiji {regionName}, ovaj medij nije dostupan u vašoj trenutačnoj regiji." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Dupliciraj" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Uredite opis profila" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Tekst za uređivanje" @@ -13001,7 +12969,7 @@ msgstr "Omogući istek privitaka" msgid "Enable audio" msgstr "Omogući zvuk" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Omogući beta značajku" @@ -13038,7 +13006,7 @@ msgstr "Omogući način rada za razvojne programere" msgid "Enable email delivery" msgstr "Omogući isporuku e-pošte" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Omogući dodatnu opciju" @@ -13660,7 +13628,7 @@ msgstr "Pogreška" msgid "error code {code}" msgstr "kôd greške {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Pogreška prikaza sadržaja" @@ -14095,11 +14063,6 @@ msgstr "Vanjske poveznice mogu biti opasne. Budite oprezni." msgid "Extra large" msgstr "Ekstra veliko" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Ekstra svijetlo" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Prvi klik" msgid "First click pass-through when unfocused" msgstr "Prvi klik prolazi kad prozor nije u fokusu" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Prva opcija" @@ -14917,10 +14880,6 @@ msgstr "Slijedi glavno • {effectiveValue}%" msgid "Font" msgstr "Font" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Debljine fonta" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "Od {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "iz <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Općenito" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Generirajte poveznicu za dijeljenje ili kopirajte svoj kombinirani prilagođeni CSS." @@ -15481,11 +15440,6 @@ msgstr "Generiraj novi kôd" msgid "Generating code…" msgstr "Generiranje koda…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Nježan i prozračan prikaz teksta" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "On" msgid "Header" msgstr "Zaglavlje" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Naslov" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Indeksiranje kanala" msgid "Indicator" msgstr "Indikator" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Pokazatelji i status" @@ -17557,7 +17506,7 @@ msgstr "Stanja unosa" msgid "Input volume" msgstr "Glasnoća ulaza" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Unos i tekst" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Instaliraj paket naljepnica" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Instalirano" @@ -18094,15 +18043,6 @@ msgstr "Zasad je mirno..." msgid "Italian" msgstr "Talijanski" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Kurziv" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Demonstracija kurzivnog stila" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Jezik" msgid "Language settings" msgstr "Jezične postavke" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Jezična podrška" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Jezici" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Veliko" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Doživotni {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Svijetlo" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux – zadani uređaj" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux paket" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Označi gornji kanal pristigle pošte kao pročitan" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Veličina medija" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Srednje" @@ -20820,7 +20750,7 @@ msgstr "Više" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Više radnji" @@ -20993,10 +20923,6 @@ msgstr "Višestruka provjera autentičnosti" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Višejezični sadržaj" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Novi se korisnici trenutačno ne mogu pridružiti. I dalje možete stvoriti račun ili se prijaviti, a zatim ponovno pokušati s ovom vezom." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Nova verzija" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Nema emojija koji odgovaraju vašoj pretrazi." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Nema emojija koji odgovaraju pretrazi" @@ -22363,11 +22289,6 @@ msgstr "Ništa" msgid "None (normal behavior)" msgstr "Ništa (normalno ponašanje)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normalno" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Samo vi možete vidjeti ovu poruku. <0>Odbaci" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Neprozirnost" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Otvori birač datuma" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Otvori preuzimanja za stolna računala" @@ -23165,6 +23086,11 @@ msgstr "Otvori brzi preklopnik" msgid "Open settings" msgstr "Otvori postavke" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Otvori centar za softver" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Operativni sustav" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Omogućite eksperimentalne kontrole za oznake nepročitanih poruka po zajednici i kanalu" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimizirano za dulje odlomke teksta" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Optimiziranje kamere..." @@ -23483,7 +23404,7 @@ msgstr "Izvan roka za povrat novca" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Preklapajuće grupe avatara koje prikazuju više korisnika s automatskim brojem preostalih." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Prekrivanja i izbornici" @@ -23886,11 +23807,6 @@ msgstr "Glasnoća pojedinog zvuka" msgid "Per-window audio isn't available on this build of macOS." msgstr "Zvuk po prozoru nije dostupan u ovoj verziji sustava macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Savršeno za svakodnevni sadržaj" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Položaj" msgid "Power saving" msgstr "Štednja baterije" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Moćno i privlačno" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Primarno (onemogućeno)" msgid "Primary accent color" msgstr "Primarna boja naglaska" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Primarna radnja" @@ -25724,11 +25635,6 @@ msgstr "Registracija" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Registracija je trenutačno zatvorena. Za izradu računa upotrijebi registracijsku poveznicu od administratora." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Obično" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Običan gumb" @@ -26198,7 +26104,7 @@ msgstr "Uklonjeno ograničenje broja korisnika." msgid "Removed timeout from {0}" msgstr "Uklonjeno privremeno isključenje za {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Uklanja svako pojedinačno nadjačavanje varijable, ali zadržava vašu biblioteku i imovinu netaknutima." @@ -26703,7 +26609,7 @@ msgstr "Poništi podatke aplikacije" msgid "Reset app data and restart" msgstr "Poništi podatke aplikacije i ponovno pokreni" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Poništi podatke prilagođene teme" @@ -26714,7 +26620,7 @@ msgstr "Poništiti podatke prilagođene teme?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Poništi podatke" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Ponovo pokreni {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Ponovno pokreni {productName}" @@ -28030,7 +27936,7 @@ msgstr "Pretraživanje" msgid "Searching people..." msgstr "Traženje osoba..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Druga opcija" @@ -28047,7 +27953,7 @@ msgstr "Sekundarno (onemogućeno)" msgid "Secondary accent color" msgstr "Boja sekundarnog naglaska" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Sekundarna radnja" @@ -28339,7 +28245,7 @@ msgstr "Odabir: {0}" msgid "Selection: {0} (max {1})" msgstr "Odabir: {0} (maks. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Odabiri" @@ -28369,16 +28275,6 @@ msgstr "Nadjačavanje načina samostalnog hostinga" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Samoposlužni povrat novca dostupan je unutar 3 dana od plaćanja, jednom svakih 30 dana. Povratom novca za pretplatu, pretplata se otkazuje. Kupci iz EU/EGP-a odriču se prava na odustajanje od kupnje u roku od 14 dana prilikom naplate kako bi odmah pristupili sadržaju. Koristite gumb za povrat novca u aplikaciji umjesto povrata putem banke. Povrati putem banke mogu trajno ograničiti vaš račun. Stripe sigurno obrađuje plaćanje. Nikada ne vidimo cijeli broj vaše kartice." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Polupodebljano" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Polupodebljano veliko" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Postavlja razinu za svaki zvučni efekt. Pojedinačne postavke zvuka zan #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Postavke" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Nekoliko ljudi piše..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Podijeli" @@ -29002,7 +28898,7 @@ msgstr "Podijeli" msgid "Share action." msgstr "Dijeli radnju." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Podijeli aktivnu prilagođenu temu" @@ -29035,7 +28931,7 @@ msgstr "Dijeli izvor" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Podijelite iskustvo {premiumProductName} sa svojim prijateljima kupnjom pretplate na poklon." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Podijeli temu" @@ -29963,11 +29859,6 @@ msgstr "Klizač s koracima" msgid "Sliders" msgstr "Klizači" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Malo podebljaniji naglasak" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Uvrede, dehumanizirajući jezik ili napadi na zaštićene skupine." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Malo" @@ -30161,11 +30050,6 @@ msgstr "Prilagođava se koracima od 5." msgid "Social" msgstr "Društveno" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Ugodno i lako čitljivo iskustvo" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Pokazatelji statusa" msgid "Status page" msgstr "Stranica statusa" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Statusna ploča" @@ -31291,15 +31175,6 @@ msgstr "Stripe je prijavio karticu izdanu u državi {countryName}. Za plaćanje msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Snažna kvaliteta uz umjerenu potrošnju procesora. Dobra zamjena za dijeljenje zaslona u Chromiumu." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Jaka vizualna hijerarhija" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Varijacije stila" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Scenariji pretplate" msgid "Subtext" msgstr "Podtekst" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Podnaslov" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Testirajte URL-ove i prikazane ugrađene sadržaje" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Tekst" @@ -31973,6 +31841,10 @@ msgstr "Tekstualni kanali" msgid "Text formatting" msgstr "Oblikovanje teksta" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Tekst se renderira pomoću antialiasiranja u sivim tonovima umjesto ClearTypea dok je prozirnost omogućena, tako da će izgledati mekše." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Zajednica koju tražite možda je izbrisana ili joj možda nemate pristup." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Ažuriranje za stolno računalo nije preuzeto. Pokušajte ponovno pomoću gumba za ažuriranje kada vaša veza bude stabilna." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Desktop ažuriranje je preuzeto. Ponovno pokrenite {productName} da biste dovršili instalaciju." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Preuzeta datoteka sprema se na vaše računalo. Instalirajte je pomoću uobičajenog upravitelja paketa." @@ -32442,12 +32314,7 @@ msgstr "Možda ne prihvaćaju poruke od vas ili više ne dijelite zajednicu." msgid "They're not accepting friend requests right now." msgstr "Trenutno ne prihvaćaju zahtjeve za prijateljstvo." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Tanko" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Treća opcija" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Ovo je jedna teška poruka. Neke reakcije treba ukloniti prije nego što možete dodati više." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Ovo je primjer teksta u tekstualnom polju." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Ovo je opis prve opcije" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Ovo je drugi opis opcije" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Ovo je opis treće opcije" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Ovo uklanja sve prilagođene prečace i ponovno omogućuje sve ugrađene prečace. Ovo se ne može poništiti." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Ova poveznica za ponovno postavljanje je istekla. Poveznice za ponovno postavljanje traju 24 sata. Zatražite novu." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Ova poveznica za poništavanje lozinke istekla je. Poveznice za poništavanje vrijede 1 sat. Zatražite novu." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Ova je sklopka onemogućena i ne može se uključiti/isključiti" msgid "This switch is disabled in the checked state" msgstr "Ova je sklopka onemogućena u označenom stanju" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Ovaj tekst prikazuje stil podebljanog naslova" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Ovaj tekst prikazuje stil podebljanog naslova" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Ovaj tekst prikazuje kurzivni stil" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Ovaj tekst prikazuje veliko polupodebljano oblikovanje" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Ovaj tekst prikazuje normalan stil" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Ovaj tekst prikazuje polupodebljani stil" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Ovo se tekstualno polje automatski proširuje na 4 do 12 redaka dok pišete." @@ -33417,11 +33254,6 @@ msgstr "Vremenska zona" msgid "Tip" msgstr "Savjet" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Naslov" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Upišite boju (heksadecimalno, rgb(), hsl ili naziv) ili upotrijebite bi msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Upišite boju (hex, rgb(), hsl() ili naziv) ili upotrijebite birač." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Veličina teksta" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Samo indikator tipkanja" msgid "Typing state" msgstr "Status tipkanja" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Tipografija" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Demonstracija tipografske skale" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Univerzalna zamjena. Najniža kvaliteta, ali radi svugdje." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Nepoznato" @@ -34649,8 +34469,8 @@ msgstr "Neograničen broj emojija" msgid "Unlimited stickers" msgstr "Neograničene naljepnice" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Otključajte {lockedEmojiCount, plural, one {# prilagođeni emoji} other {# prilagođenih emojija}} iz {communityCount, plural, one {# zajednice} other {# zajednica}} uz {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Neimenovani kanal" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Neimenovana grupa" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Ažurirali smo naša pravila. Pregledajte ih i prihvatite za nastavak." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Uređujete svoj profil za ovu zajednicu. Ovaj će profil biti vidljiv samo u ovoj zajednici i nadjačat će vaš globalni profil." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Sada ste programer!" diff --git a/fluxer_app/src/features/i18n/locales/hu/messages.po b/fluxer_app/src/features/i18n/locales/hu/messages.po index 641bf2a17..f073b008c 100644 --- a/fluxer_app/src/features/i18n/locales/hu/messages.po +++ b/fluxer_app/src/features/i18n/locales/hu/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} asztali {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName} közösségi csapat" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "A {productName} nem tudta elérni a frissítésszolgáltatást. Ellenőrizze az internetkapcsolatot, és próbálja újra." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "A {productName} nem tudta újraindítani magát a letöltött frissítéshez. Próbálja meg újra az „Frissítés” gombbal." @@ -1210,8 +1210,8 @@ msgstr "{productName} logó" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} online" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "{resolvedName} csoportja" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "állomásnév, pl. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Linux asztali verzió frissítése elérhető. Válassza ki a rendszerhez megfelelő csomagformátumot, és a {productName} helyileg menti azt." @@ -1990,7 +1990,7 @@ msgstr "szavazás" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "A redirect_uri megadása kötelező, ha a bot hatóköre nem az egyetlen hatókör." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Újrahasználható komponens üres állapotokhoz, hibákhoz és állapotüzenetekhez." @@ -3891,7 +3891,7 @@ msgstr "Alkalmazások" msgid "Arabic" msgstr "arab" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Archiválás" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Automatikus görgetés" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Elérhető" @@ -5243,26 +5243,6 @@ msgstr "Elmosás" msgid "Blur strength" msgstr "Elmosás mértéke" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Törzs" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Félkövér" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Félkövér címsor" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Félkövér cím" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Gombváltozatok" msgid "Button with context menu" msgstr "Gomb helyi menüvel" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Gombok" @@ -5989,11 +5969,6 @@ msgstr "A matricacsomag nem telepíthető" msgid "Captcha verification failed. Try again." msgstr "A CAPTCHA ellenőrzés sikertelen. Próbálja újra." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Felirat" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Összes aktív felülbírálás törlése" msgid "Clear all attachment mocks" msgstr "Összes csatolmány-makett törlése" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Összes tokenfelülbírálás törlése" @@ -7215,7 +7190,7 @@ msgstr "Minta törlése ehhez a melléklethez" msgid "Clear nickname" msgstr "Becenév törlése" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Felülbírálások törlése" @@ -7299,7 +7274,7 @@ msgstr "Törölte a témát." msgid "Clearing trusted domains..." msgstr "Megbízható domainek törlése..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Törli a gyors CSS-t, az importált témákat, a feltöltött elemeket és a helyi fájlhivatkozásokat ezen az eszközön." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Kattints az ajándékod igényléséhez!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Kattintson a másoláshoz" @@ -8825,7 +8800,7 @@ msgstr "Meghívó URL-jének másolása" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Link másolása" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Nem sikerült módosítani a számlázási ciklust" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Nem sikerült frissítéseket keresni" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Nem sikerült törölni az üzeneteket" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Nem sikerült letölteni az asztali frissítést" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Nem sikerült elindítani a kapcsolatot" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Nem sikerült elindítani az asztali frissítést" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "A „Veszély” gomb megnyomva." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Mobilon alapértelmezetten ki van kapcsolva az akkumulátor-üzemidő é #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Üzeneteid törölve." msgid "Deleted." msgstr "Törölve." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Finom és könnyed tipográfia" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Asztali frissítés érhető el. Válasszon Linux-csomagot." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Asztali alkalmazás frissítése kész" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "A(z) {version} asztali verzió letöltődött. Indítsa újra a(z) {productName}-et a telepítés befejezéséhez." @@ -11753,11 +11723,9 @@ msgstr "Említés elvetése" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "A(z) {regionName} régióban érvényes felnőtt tartalomra vonatkozó törvények miatt ez a média nem érhető el az Ön jelenlegi régiójából." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Másolás" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Profilod bemutatkozásának szerkesztése" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Szerkeszthető szöveg" @@ -13001,7 +12969,7 @@ msgstr "Melléklet-lejárati idő engedélyezése" msgid "Enable audio" msgstr "Hang engedélyezése" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Béta funkció engedélyezése" @@ -13038,7 +13006,7 @@ msgstr "Fejlesztői mód engedélyezése" msgid "Enable email delivery" msgstr "E-mail kézbesítés engedélyezése" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Extra opció engedélyezése" @@ -13660,7 +13628,7 @@ msgstr "Hiba" msgid "error code {code}" msgstr "hiba kód: {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Hiba a tartalom megjelenítésekor" @@ -14095,11 +14063,6 @@ msgstr "A külső hivatkozások veszélyesek lehetnek. Légy óvatos." msgid "Extra large" msgstr "Extra nagy" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Extra vékony" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Első kattintás" msgid "First click pass-through when unfocused" msgstr "Első kattintás átengedése, ha nincs fókuszban" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Első opció" @@ -14917,10 +14880,6 @@ msgstr "Fő beállítás követése • {effectiveValue}%" msgid "Font" msgstr "Betűtípus" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Betűtípus vastagsága" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "Ettől: {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "<0>{0} innen" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Általános" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Megosztható hivatkozás generálása vagy az egyesített egyéni CSS másolása." @@ -15481,11 +15440,6 @@ msgstr "Új kód generálása" msgid "Generating code…" msgstr "Kód generálása…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Könnyed és légies szövegmegjelenítés" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Ő" msgid "Header" msgstr "Fejléc" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Címsor" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Csatorna indexelése" msgid "Indicator" msgstr "Jelző" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Jelzések és állapot" @@ -17557,7 +17506,7 @@ msgstr "Bemeneti állapotok" msgid "Input volume" msgstr "Bemeneti hangerő" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Bevitel és szöveg" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Matricacsomag telepítése" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Telepítve" @@ -18094,15 +18043,6 @@ msgstr "Most csend van..." msgid "Italian" msgstr "olasz" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Dőlt" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Dőlt betűs stílus bemutatója" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Nyelv" msgid "Language settings" msgstr "Nyelvi beállítások" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Nyelvi támogatás" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Nyelvek" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Nagy" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Élethosszig tartó {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Világos" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux alapértelmezett" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux csomag" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "A legfelső beérkező csatorna megjelölése olvasottként" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Média mérete" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Közepes" @@ -20820,7 +20750,7 @@ msgstr "Továbbiak" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "További műveletek" @@ -20993,10 +20923,6 @@ msgstr "Többfaktoros" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Többnyelvű tartalom" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Az új felhasználók jelenleg nem tudnak csatlakozni. Továbbra is létrehozhat fiókot, vagy bejelentkezhet, majd később újra megpróbálhatja ezt a linket." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Új verzió" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Nincs a keresésnek megfelelő hangulatjel." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Nincs a keresésnek megfelelő hangulatjel" @@ -22363,11 +22289,6 @@ msgstr "Nincs" msgid "None (normal behavior)" msgstr "Nincs (normál viselkedés)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normál" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Ezt az üzenetet csak te látod. <0>Elvetés" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Átlátszóság" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Dátumválasztó megnyitása" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Asztali letöltések megnyitása" @@ -23165,6 +23086,11 @@ msgstr "Gyorsváltó megnyitása" msgid "Open settings" msgstr "Beállítások megnyitása" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Szoftverközpont megnyitása" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Operációs rendszer" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Válassza ki a közösség és csatorna szintű, kísérleti jellegű olvasatlan jelzések beállítását" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Hosszabb szövegek olvasásához optimalizálva" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Kamera optimalizálása..." @@ -23483,7 +23404,7 @@ msgstr "Visszatérítési időszakon kívül" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Egyszerre több felhasználót mutató, egymást átfedő avatárcsoportok, automatikus túlcsordulási számlálóval." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Átfedések és menük" @@ -23886,11 +23807,6 @@ msgstr "Hangonkénti hangerő" msgid "Per-window audio isn't available on this build of macOS." msgstr "Ablakonkénti hang nem érhető el a macOS ezen verzióján." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Tökéletes mindennapi tartalomhoz" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Beosztás" msgid "Power saving" msgstr "Energiatakarékos üzemmód" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Hatásos és figyelemfelkeltő" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Elsődleges (letiltva)" msgid "Primary accent color" msgstr "Elsődleges kiemelő szín" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Elsődleges művelet" @@ -25724,11 +25635,6 @@ msgstr "Regisztráció" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "A regisztráció jelenleg zárva van. Fiók létrehozásához használj egy admintól kapott regisztrációs hivatkozást." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Normál" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Normál gomb" @@ -26198,7 +26104,7 @@ msgstr "Eltávolította a felhasználói korlátot." msgid "Removed timeout from {0}" msgstr "Eltávolított időtúllépés innen: {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Eltávolít minden változónkénti felülírást, de a könyvtárad és az eszközeid érintetlenek maradnak." @@ -26703,7 +26609,7 @@ msgstr "Alkalmazásadatok visszaállítása" msgid "Reset app data and restart" msgstr "Alkalmazásadatok visszaállítása és újraindítás" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Egyéni témaadatok visszaállítása" @@ -26714,7 +26620,7 @@ msgstr "Egyéni témaadatok visszaállítása?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Adatok visszaállítása" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "{appName} újraindítása" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Újraindítom a(z) {productName}-et" @@ -28030,7 +27936,7 @@ msgstr "Keresés" msgid "Searching people..." msgstr "Személyek keresése..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Második lehetőség" @@ -28047,7 +27953,7 @@ msgstr "Másodlagos (letiltva)" msgid "Secondary accent color" msgstr "Másodlagos kiemelő szín" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Másodlagos művelet" @@ -28339,7 +28245,7 @@ msgstr "Kijelölés: {0}" msgid "Selection: {0} (max {1})" msgstr "Kiválasztás: {0} (max. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Kiválasztottak" @@ -28369,16 +28275,6 @@ msgstr "Saját üzemeltetésű mód felülbírálása" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Önkiszolgáló visszatérítés a fizetéstől számított 3 napon belül, 30 naponta egyszer. Az előfizetés visszatérítése annak lemondását vonja maga után. Az EU/EGT vásárlók lemondanak a 14 napos elállási jogról a fizetéskor, hogy azonnal hozzáférjenek a tartalomhoz. Használja az alkalmazáson belüli visszatérítési gombot a visszaterhelés helyett. A visszaterhelések véglegesen korlátozhatják fiókját. A Stripe biztonságosan kezeli a fizetést. Soha nem látjuk a teljes kártyaszámát." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Félkövér" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Félkövér nagy" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Beállítja az összes hangeffektus hangerejét. Az egyedi hangeffektuso #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Beállítások" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Többen is épp írnak..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Megosztás" @@ -29002,7 +28898,7 @@ msgstr "Megosztás" msgid "Share action." msgstr "Művelet megosztása." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Aktív egyéni téma megosztása" @@ -29035,7 +28931,7 @@ msgstr "Megosztás forrása" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Ajándék-előfizetés vásárlásával megoszthatod a {premiumProductName} élményt a barátaiddal." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Téma megosztása" @@ -29963,11 +29859,6 @@ msgstr "Csúszka lépésértékekkel" msgid "Sliders" msgstr "Csúszkák" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Enyhén vastagabb kiemelés" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Gyalázkodás, dehumanizáló nyelvezet vagy védett csoportok elleni támadások." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Kicsi" @@ -30161,11 +30050,6 @@ msgstr "5-ösével ugrik." msgid "Social" msgstr "Közösségi" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Kellemes és könnyed olvasási élmény" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Állapotjelzők" msgid "Status page" msgstr "Állapotoldal" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Állapot" @@ -31291,15 +31175,6 @@ msgstr "A Stripe szerint a kártyát a következő országban bocsátották ki: msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Erős minőség mérsékelt CPU-használat mellett. Jó Chromium tartalék képernyőmegosztáshoz." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Erős vizuális hierarchia" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Stílusvariációk" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Előfizetési forgatókönyvek" msgid "Subtext" msgstr "Alcím" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Alcím" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "URL-ek és beágyazott tartalmak tesztelése" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Szöveg" @@ -31973,6 +31841,10 @@ msgstr "Szöveges csatornák" msgid "Text formatting" msgstr "Szövegformázás" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "A szöveg szürkeárnyalatos élsimítással jelenik meg a ClearType helyett, amikor az átlátszóság engedélyezve van, így lágyabb lesz a megjelenése." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Lehet, hogy a keresett közösséget törölték, vagy nincs hozzáférésed." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Nem sikerült letölteni az asztali frissítést. Próbáld újra a frissítés gombbal, ha stabil a kapcsolatod." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "A asztali verzió frissítése letöltődött. Indítsa újra a {productName}-t a telepítés befejezéséhez." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "A letöltött fájl a számítógépedre mentve. Telepítsd a szokásos csomagkezelőddel." @@ -32442,12 +32314,7 @@ msgstr "Lehet, hogy nem fogadnak üzeneteket Öntől, vagy már nem tagjai ugyan msgid "They're not accepting friend requests right now." msgstr "Most nem fogadnak barátkérelmeket." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Vékony" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Harmadik opció" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Ez egy elég \"nehéz\" üzenet. Előbb el kell távolítanod néhány reakciót, mielőtt újakat adhatnál hozzá." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Ez egy példaszöveg a szövegmezőben." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Ez az első opció leírása" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Ez a második opció leírása" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Ez a harmadik opció leírása" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Ezzel minden egyéni billentyűparancsot eltávolít, és újra engedélyezi az összes beépített billentyűparancsot. Ez a művelet nem vonható vissza." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Ez a jelszó-visszaállító hivatkozás lejárt. A hivatkozások 24 óráig érvényesek. Kérjen újat." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Ez a visszaállítási link lejárt. A visszaállítási linkek 1 órán át érvényesek. Kérj egy újat." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Ez a kapcsoló le van tiltva, és nem kapcsolható be/ki" msgid "This switch is disabled in the checked state" msgstr "Ez a kapcsoló letiltott állapotban van bejelölve" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Ez a szöveg a félkövér címsor stílusát mutatja be" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Ez a szöveg félkövér címsorstílust mutat be" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Ez a szöveg dőlt betűs stílust mutat be" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Ez a szöveg a nagy, félkövér stílust mutatja be" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Ez a szöveg normál stílusú megjelenítést mutat be" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Ez a szöveg félkövér stílust mutat be" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Ez a szövegmező gépelés közben 4 és 12 sor között automatikusan kibővül." @@ -33417,11 +33254,6 @@ msgstr "Időzóna" msgid "Tip" msgstr "Tipp" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Cím" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Írj be egy színt (hex, rgb(), hsl vagy név), vagy használd a színv msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Írj be egy színt (hex, rgb(), hsl() vagy név) vagy használd a színválasztót." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Betűtípus mérete" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Csak gépelésjelző" msgid "Typing state" msgstr "Gépelés állapota" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Tipográfia" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Tipográfiai skála bemutató" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Univerzális tartalék. Legalacsonyabb minőség, de mindenhol működik #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Ismeretlen" @@ -34649,8 +34469,8 @@ msgstr "Korlátlan hangulatjel" msgid "Unlimited stickers" msgstr "Korlátlan matricák" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Oldj fel {lockedEmojiCount, plural, one {# egyéni hangulatjelet} other {# egyéni hangulatjelet}} {communityCount, plural, one {# közösségből} other {# közösségből}} a {PREMIUM_PRODUCT_NAME} segítségével." @@ -34796,7 +34616,7 @@ msgstr "Névtelen csatorna" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Névtelen csoport" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Frissítettük a szabályzatainkat. Tekintsd át és fogadd el őket a folytatáshoz." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "A közösségi profilodat szerkeszted. Ez a profil csak ebben a közösségben lesz látható, és felülírja a globális profilodat." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Mostantól fejlesztő vagy!" diff --git a/fluxer_app/src/features/i18n/locales/id/messages.po b/fluxer_app/src/features/i18n/locales/id/messages.po index d336bfc25..b04e6b72e 100644 --- a/fluxer_app/src/features/i18n/locales/id/messages.po +++ b/fluxer_app/src/features/i18n/locales/id/messages.po @@ -10,8 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "PO-Revision-Date: 2026-07-07 23:18+0000\n" "Last-Translator: Hampus \n" -"Language-Team: Indonesian \n" +"Language-Team: Indonesian \n" "Plural-Forms: nplurals=1; plural=0;\n" #. Description text in the messages tab. @@ -68,8 +67,7 @@ msgstr "{a}, {b}, dan {c} sedang mengetik..." #: src/features/guild/components/modals/guild_tabs/GuildAuditLogTabUtils.tsx:571 msgid "{actor} added channel permissions for {targetEntity} in {channelNode}." -msgstr "" -"{actor} menambahkan perizinan saluran untuk {targetEntity} di {channelNode}." +msgstr "{actor} menambahkan perizinan saluran untuk {targetEntity} di {channelNode}." #: src/features/guild/components/modals/guild_tabs/GuildAuditLogTabUtils.tsx:576 msgid "{actor} added channel permissions for {targetEntity}." @@ -180,9 +178,7 @@ msgstr "{actor} membersihkan anggota tidak aktif." #: src/features/guild/components/modals/guild_tabs/GuildAuditLogTabUtils.tsx:637 msgid "{actor} pruned members inactive for {pruneDays, plural, one {# day} other {# days}}." -msgstr "" -"{actor} membersihkan anggota yang tidak aktif selama {pruneDays, plural, one " -"{# hari} other {# hari}}." +msgstr "{actor} membersihkan anggota yang tidak aktif selama {pruneDays, plural, one {# hari} other {# hari}}." #: src/features/guild/components/modals/guild_tabs/GuildAuditLogTabUtils.tsx:595 msgid "{actor} removed channel permissions for {targetEntity} in {channelNode}." @@ -207,8 +203,7 @@ msgstr "{actor} {targetMember} diperbarui." #: src/features/guild/components/modals/guild_tabs/GuildAuditLogTabUtils.tsx:583 msgid "{actor} updated channel permissions for {targetEntity} in {channelNode}." -msgstr "" -"{actor} izin saluran untuk {targetEntity} sudah diperbarui di {channelNode}." +msgstr "{actor} izin saluran untuk {targetEntity} sudah diperbarui di {channelNode}." #: src/features/guild/components/modals/guild_tabs/GuildAuditLogTabUtils.tsx:588 msgid "{actor} updated channel permissions for {targetEntity}." @@ -623,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} {desktopVersion}" @@ -1094,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Tim Komunitas {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} tidak dapat terhubung ke layanan pembaruan. Periksa koneksi Anda dan coba lagi." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} tidak dapat memulai ulang ke pembaruan yang telah diunduh. Coba lagi dari tombol pembaruan." @@ -1215,8 +1210,8 @@ msgstr "Logo {productName}" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} {buildVersion}" @@ -1247,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} online" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Grup {resolvedName}" @@ -1966,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "nama host, cth. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Pembaruan untuk Linux telah tersedia. Pilih format paket untuk sistem ini dan {productName} akan menyimpannya secara lokal." @@ -1995,7 +1990,7 @@ msgstr "polling" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "redirect_uri diperlukan jika cakupan bot bukan satu-satunya cakupan." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Komponen yang dapat digunakan kembali untuk status kosong, error, dan pesan status." @@ -2836,9 +2831,7 @@ msgstr "Sesuaikan tingkat zoom keseluruhan aplikasi. Firefox tetap menggunakan p #. Description for the app zoom setting. The placeholders are keyboard shortcuts. #: src/features/user/components/modals/tabs/appearance_tab/ScalingTab.tsx:46 msgid "Adjust the overall zoom level of the app. Use {zoomIn} / {zoomOut} to adjust quickly." -msgstr "" -"Sesuaikan tingkat level zoom aplikasi secara keseluruhan. Gunakan {zoomIn} / " -"{zoomOut} untuk menyesuaikan dengan cepat." +msgstr "Sesuaikan tingkat level zoom aplikasi secara keseluruhan. Gunakan {zoomIn} / {zoomOut} untuk menyesuaikan dengan cepat." #. Inline adaptive-quality status in the stream settings menu. Shows the current automatically lowered resolution and frame rate. #: src/features/voice/components/StreamSettingsMenuContent.tsx:146 @@ -3898,7 +3891,7 @@ msgstr "Aplikasi" msgid "Arabic" msgstr "Arab" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Arsip" @@ -4674,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Gulir otomatis" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Tersedia" @@ -5250,26 +5243,6 @@ msgstr "Buramkan" msgid "Blur strength" msgstr "Kekuatan buram" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Isi" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Tebal" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Judul tebal" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Judul tebal" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5597,7 +5570,7 @@ msgstr "Varian tombol" msgid "Button with context menu" msgstr "Tombol dengan menu konteks" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Tombol" @@ -5996,11 +5969,6 @@ msgstr "Tidak bisa menginstal paket stiker" msgid "Captcha verification failed. Try again." msgstr "Verifikasi Captcha gagal. Coba lagi." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Keterangan" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -6756,9 +6724,7 @@ msgstr "Pilih" #. Settings section description. One-line summary of what the settings section controls. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:34 msgid "Choose a base appearance, manage quick CSS, organize saved theme files, and tune theme tokens." -msgstr "" -"Pilih tampilan dasar, kelola CSS cepat, kelola file tema tersimpan, dan " -"sesuaikan tune token tema." +msgstr "Pilih tampilan dasar, kelola CSS cepat, kelola file tema tersimpan, dan sesuaikan tune token tema." #. Form field label or placeholder for choosing a community. #: src/features/expressions/components/modals/AddFavoriteChannelModal.tsx:40 @@ -7188,7 +7154,7 @@ msgstr "Hapus semua penggantian aktif" msgid "Clear all attachment mocks" msgstr "Hapus semua lampiran tiruan" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Hapus semua penggantian token" @@ -7224,7 +7190,7 @@ msgstr "Hapus tiruan untuk lampiran ini" msgid "Clear nickname" msgstr "Hapus nama panggilan" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Hapus penimpaan" @@ -7308,7 +7274,7 @@ msgstr "Menghapus topik." msgid "Clearing trusted domains..." msgstr "Menghapus domain tepercaya..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Menghapus CSS cepat, tema yang diimpor, aset yang diunggah, dan referensi file lokal di perangkat ini." @@ -7350,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Klik untuk klaim hadiahmu!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Ketuk untuk menyalin" @@ -8205,8 +8171,7 @@ msgstr "Konfigurasikan penyedia terjemahan yang digunakan dari teks yang dipilih #. Settings section description. One-line summary of what the settings section controls. #: src/features/user/components/settings_utils/section_registry/VoiceVideoSections.ts:153 msgid "Configure your camera, screen sharing quality, previews, and frame rate." -msgstr "" -"Konfigurasi kameramu, kualitas berbagi layar, pratinjau, dan frame rate." +msgstr "Konfigurasi kameramu, kualitas berbagi layar, pratinjau, dan frame rate." #. Settings section description. One-line summary of what the settings section controls. #: src/features/user/components/settings_utils/section_registry/VoiceVideoSections.ts:17 @@ -8835,7 +8800,7 @@ msgstr "Salin URL undangan" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Salin tautan" @@ -9075,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Tidak dapat mengubah siklus penagihan Anda" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Tidak dapat memeriksa pembaruan" @@ -9182,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Tidak dapat menghapus pesan Anda" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Tidak dapat mengunduh pembaruan desktop" @@ -9436,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Tidak dapat memulai koneksi" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Tidak dapat memulai pembaruan desktop" @@ -10312,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Tombol bahaya diklik." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10679,7 +10644,7 @@ msgstr "Nonaktif secara default di perangkat seluler untuk menghemat baterai dan #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10974,11 +10939,6 @@ msgstr "Pesan Anda telah dihapus." msgid "Deleted." msgstr "Dihapus." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Tipografi yang halus dan ringan" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11132,10 +11092,7 @@ msgstr "Bilah notifikasi desktop" #: src/features/ui/commands/NotificationCommands.tsx:31 msgid "Desktop notifications have been blocked. You can enable them later in your browser settings or in user settings, or in {notificationSettingsPath}." -msgstr "" -"Notifikasi desktop telah diblokir. Kamu dapat mengaktifkannya nanti di " -"pengaturan browser atau di pengaturan pengguna, atau di " -"{notificationSettingsPath}." +msgstr "Notifikasi desktop telah diblokir. Kamu dapat mengaktifkannya nanti di pengaturan browser atau di pengaturan pengguna, atau di {notificationSettingsPath}." #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:110 @@ -11158,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Pembaruan desktop tersedia. Pilih paket Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Pembaruan desktop siap" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Versi desktop {version} telah diunduh. Mulai ulang {productName} untuk menyelesaikan penginstalan." @@ -11766,11 +11723,9 @@ msgstr "Tutup sebutan" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12318,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Karena undang-undang konten dewasa di {regionName}, media ini tidak tersedia di wilayah Anda saat ini." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Duplikat" @@ -12603,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Edit bio profil Anda" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Teks yang bisa diedit" @@ -13014,7 +12969,7 @@ msgstr "Aktifkan kedaluwarsa lampiran" msgid "Enable audio" msgstr "Aktifkan audio" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Aktifkan fitur beta" @@ -13051,7 +13006,7 @@ msgstr "Aktifkan mode pengembang" msgid "Enable email delivery" msgstr "Aktifkan pengiriman email" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Aktifkan opsi tambahan" @@ -13673,7 +13628,7 @@ msgstr "Terjadi kesalahan" msgid "error code {code}" msgstr "kode kesalahan {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Error saat merender konten" @@ -14108,11 +14063,6 @@ msgstr "Tautan eksternal bisa berbahaya. Berhati-hatilah." msgid "Extra large" msgstr "Ekstra besar" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Ekstra tipis" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14804,7 +14754,7 @@ msgstr "Klik pertama" msgid "First click pass-through when unfocused" msgstr "Klik pertama tembus saat tidak fokus" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Opsi pertama" @@ -14930,10 +14880,6 @@ msgstr "Mengikuti master • {effectiveValue}%" msgid "Font" msgstr "Fluxer" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Ketebalan font" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15377,7 +15323,7 @@ msgid "From {start}" msgstr "Mulai {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "dari <0>{0}" @@ -15473,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Umum" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Buat tautan yang dapat dibagikan atau salin CSS kustom gabungan Anda." @@ -15494,11 +15440,6 @@ msgstr "Buat kode baru" msgid "Generating code…" msgstr "Membuat kode…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Tampilan teks yang lembut dan ringan" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16280,11 +16221,6 @@ msgstr "Dia" msgid "Header" msgstr "Judul" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Judul" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -16907,9 +16843,7 @@ msgstr "Jika Anda tidak dapat menggunakan metode verifikasi apa pun, hubungi duk #. Confirmation modal body shown before dismissing the desktop-notification nagbar. {notificationSettingsPath} is the localized settings path. #: src/features/app/components/layout/app_layout/nagbars/DesktopNotificationNagbar.tsx:38 msgid "If you dismiss this, you can always enable desktop notifications later under {notificationSettingsPath}." -msgstr "" -"Jika Anda menutup ini, Kamu selalu dapat mengaktifkan notifikasi desktop " -"nanti di {notificationSettingsPath}." +msgstr "Jika Anda menutup ini, Kamu selalu dapat mengaktifkan notifikasi desktop nanti di {notificationSettingsPath}." #: src/features/voice/components/dialogs/DisablePiPConfirmModal.tsx:56 msgid "If you don't remember this preference, we'll only hide the popout for this session. You can change this any time in {audioVideoSettingsPath}." @@ -17444,7 +17378,7 @@ msgstr "Mengindeks saluran" msgid "Indicator" msgstr "Indikator" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indikator & status" @@ -17572,7 +17506,7 @@ msgstr "Status input" msgid "Input volume" msgstr "Volume input" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Input & teks" @@ -17605,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Instal paket stiker" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Terinstal" @@ -18109,15 +18043,6 @@ msgstr "Lagi sepi nih..." msgid "Italian" msgstr "Italia" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Miring" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Demonstrasi gaya miring" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18547,10 +18472,6 @@ msgstr "Bahasa" msgid "Language settings" msgstr "Setelan bahasa" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Dukungan bahasa" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18559,9 +18480,7 @@ msgid "Languages" msgstr "Bahasa" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Besar" @@ -18837,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Seumur hidup {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Terang" @@ -19027,7 +18944,7 @@ msgid "Linux default" msgstr "Default Linux" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Paket Linux" @@ -19628,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Tandai saluran teratas kotak masuk sebagai sudah dibaca" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19960,10 +19877,8 @@ msgstr "Ukuran media" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Sedang" @@ -20835,7 +20750,7 @@ msgstr "Lainnya" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Tindakan lainnya" @@ -21008,10 +20923,6 @@ msgstr "Autentikasi multi-faktor" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Konten multibahasa" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21668,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Pengguna baru tidak dapat bergabung sekarang. Anda masih dapat membuat akun atau masuk, lalu coba tautan ini lagi nanti." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Versi baru" @@ -21936,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Tidak ada emoji yang cocok dengan pencarian Anda." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Tidak ada emoji yang cocok dengan pencarian itu" @@ -22378,11 +22289,6 @@ msgstr "Tidak ada" msgid "None (normal behavior)" msgstr "Tidak ada (perilaku normal)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normal" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22807,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Hanya Anda yang bisa melihat pesan ini. <0>Tutup" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Opasitas" @@ -22985,7 +22891,7 @@ msgid "Open date picker" msgstr "Buka pemilih tanggal" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Buka unduhan desktop" @@ -23180,6 +23086,11 @@ msgstr "Buka pengalih cepat" msgid "Open settings" msgstr "Buka pengaturan" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Buka pusat perangkat lunak" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23326,11 +23237,6 @@ msgstr "Sistem operasi" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Aktifkan kontrol lencana pesan yang belum dibaca untuk setiap komunitas dan saluran secara terpisah (fitur eksperimental)" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Dioptimalkan untuk bacaan panjang" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Mengoptimalkan kamera..." @@ -23498,7 +23404,7 @@ msgstr "Di luar jangka waktu pengembalian dana" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Grup avatar yang tumpang tindih menampilkan beberapa pengguna dengan jumlah luapan otomatis." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Overlay & menu" @@ -23901,11 +23807,6 @@ msgstr "Volume per suara" msgid "Per-window audio isn't available on this build of macOS." msgstr "Audio per jendela tidak tersedia di macOS versi ini." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Sempurna untuk konten sehari-hari" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24432,11 +24333,6 @@ msgstr "Posisi" msgid "Power saving" msgstr "Hemat daya" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Kuat dan menarik perhatian" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24706,7 +24602,7 @@ msgstr "Primer (dinonaktifkan)" msgid "Primary accent color" msgstr "Warna aksen utama" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Tindakan utama" @@ -25739,11 +25635,6 @@ msgstr "Registrasi" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Pendaftaran saat ini ditutup. Gunakan tautan pendaftaran dari admin untuk membuat akun." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Reguler" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Tombol biasa" @@ -26213,7 +26104,7 @@ msgstr "Menghapus batas pengguna." msgid "Removed timeout from {0}" msgstr "Batas waktu dihapus dari {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Menghapus setiap penggantian per variabel, tetapi tetap mempertahankan pustaka dan aset Anda." @@ -26718,7 +26609,7 @@ msgstr "Setel ulang data aplikasi" msgid "Reset app data and restart" msgstr "Setel ulang data aplikasi dan mulai ulang" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Setel ulang data tema kustom" @@ -26729,7 +26620,7 @@ msgstr "Setel ulang data tema kustom?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Setel ulang data" @@ -26869,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Mulai ulang {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Mulai ulang {productName}" @@ -28045,7 +27936,7 @@ msgstr "Mencari" msgid "Searching people..." msgstr "Mencari orang..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Pilihan kedua" @@ -28062,7 +27953,7 @@ msgstr "Sekunder (dinonaktifkan)" msgid "Secondary accent color" msgstr "Warna aksen sekunder" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Tindakan sekunder" @@ -28354,7 +28245,7 @@ msgstr "Pilihan: {0}" msgid "Selection: {0} (max {1})" msgstr "Pilihan: {0} (maks. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Pilihan" @@ -28384,16 +28275,6 @@ msgstr "Timpa mode di-hosting sendiri" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Pengembalian dana mandiri tersedia dalam 3 hari setelah pembayaran, sekali setiap 30 hari. Mengembalikan dana langganan akan membatalkannya. Pembeli di UE/EEA melepaskan hak penarikan 14 hari saat checkout untuk mengakses konten segera. Gunakan tombol pengembalian dana dalam aplikasi, bukan tolak bayar. Tolak bayar dapat membatasi akun Anda secara permanen. Stripe menangani pembayaran dengan aman. Kami tidak pernah melihat nomor kartu lengkap Anda." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Semi tebal" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Tebal sedang besar" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28966,7 +28847,7 @@ msgstr "Mengatur level untuk setiap efek suara. Pengaturan per suara akan mengab #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Setelan" @@ -29006,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Beberapa orang sedang mengetik..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Bagikan" @@ -29017,7 +28898,7 @@ msgstr "Bagikan" msgid "Share action." msgstr "Bagikan tindakan." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Bagikan tema kustom aktif" @@ -29050,7 +28931,7 @@ msgstr "Bagikan sumber" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Bagikan pengalaman {premiumProductName} dengan teman-teman Anda dengan membeli langganan hadiah." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Bagikan tema" @@ -29978,11 +29859,6 @@ msgstr "Penggeser dengan nilai langkah" msgid "Sliders" msgstr "Penggeser" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Penekanan sedikit lebih tebal" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30091,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Ujaran kebencian, bahasa yang merendahkan martabat, atau serangan terhadap kelompok yang dilindungi." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Kecil" @@ -30176,11 +30050,6 @@ msgstr "Jepretan dalam kelipatan 5." msgid "Social" msgstr "Sosial" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Pengalaman membaca yang nyaman dan mudah" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30892,7 +30761,7 @@ msgstr "Indikator status" msgid "Status page" msgstr "Halaman status" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Status" @@ -31306,15 +31175,6 @@ msgstr "Stripe melaporkan kartu yang diterbitkan di {countryName}. Untuk membaya msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Kualitas kuat dengan biaya CPU sedang. Cadangan Chromium yang bagus untuk berbagi layar." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Hierarki visual yang kuat" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Variasi gaya" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31361,11 +31221,6 @@ msgstr "Skenario langganan" msgid "Subtext" msgstr "Subteks" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Subjudul" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31950,10 +31805,8 @@ msgstr "Uji unfurl URL dan sematan yang dirender" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Teks" @@ -31988,6 +31841,10 @@ msgstr "Saluran teks" msgid "Text formatting" msgstr "Format teks" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Teks dirender dengan antialiasing grayscale alih-alih ClearType saat transparansi diaktifkan, sehingga akan terlihat lebih lembut." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32176,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Komunitas yang Anda cari mungkin sudah dihapus atau Anda tidak punya akses ke sana." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Pembaruan desktop tidak dapat diunduh. Coba lagi dari tombol pembaruan saat koneksi Anda stabil." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Pembaruan untuk desktop telah diunduh. Mulai ulang {productName} untuk menyelesaikan penginstalan." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Berkas yang diunduh disimpan ke komputer Anda. Instal dengan manajer paket normal Anda." @@ -32457,12 +32314,7 @@ msgstr "Mereka mungkin tidak menerima pesan dari Anda, atau Anda tidak lagi berb msgid "They're not accepting friend requests right now." msgstr "Mereka tidak menerima permintaan pertemanan saat ini." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Tipis" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Opsi ketiga" @@ -32885,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Pesan ini berat sekali. Beberapa reaksi perlu dihapus sebelum Anda dapat menambahkan lebih banyak." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Ini adalah contoh teks di area teks." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Ini adalah deskripsi opsi pertama" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Ini adalah deskripsi opsi kedua" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Ini adalah deskripsi opsi ketiga" @@ -33050,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Ini akan menghapus semua pintasan khusus dan mengaktifkan kembali semua pintasan bawaan. Tindakan ini tidak dapat dibatalkan." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Tautan reset ini sudah kedaluwarsa. Tautan reset berlaku selama 24 jam. Minta tautan baru." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Tautan setel ulang ini telah kedaluwarsa. Tautan setel ulang berlaku selama 1 jam. Silakan minta yang baru." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33078,36 +32930,6 @@ msgstr "Tombol ini dinonaktifkan dan tidak bisa diubah" msgid "This switch is disabled in the checked state" msgstr "Tombol ini dinonaktifkan saat dicentang" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Teks ini menunjukkan gaya judul tebal" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Teks ini menunjukkan gaya judul tebal" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Teks ini menunjukkan gaya miring" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Teks ini menunjukkan gaya tebal sedang berukuran besar" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Teks ini menunjukkan gaya normal" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Teks ini menunjukkan gaya semi-bold" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Kotak teks ini akan otomatis meluas antara 4 hingga 12 baris saat Anda mengetik." @@ -33432,11 +33254,6 @@ msgstr "Zona waktu" msgid "Tip" msgstr "Tips" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Judul" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34131,10 +33948,6 @@ msgstr "Ketik warna (hex, rgb(), hsl, atau nama), atau gunakan pemilih warna." msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Ketik warna (hex, rgb(), hsl(), atau nama) atau gunakan pemilih." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Skala jenis" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34183,14 +33996,6 @@ msgstr "Hanya indikator mengetik" msgid "Typing state" msgstr "Status mengetik" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Tipografi" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Demonstrasi skala tipografi" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34509,7 +34314,7 @@ msgstr "Cadangan universal. Kualitas terendah, tapi berfungsi di mana saja." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Tidak diketahui" @@ -34664,8 +34469,8 @@ msgstr "Emoji tak terbatas" msgid "Unlimited stickers" msgstr "Stiker tanpa batas" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Buka {lockedEmojiCount, plural, one {# emoji kustom} other {# emoji kustom}} dari {communityCount, plural, one {# komunitas} other {# komunitas}} dengan {PREMIUM_PRODUCT_NAME}." @@ -34811,7 +34616,7 @@ msgstr "Channel tanpa nama" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Grup tanpa nama" @@ -37348,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Kami telah memperbarui kebijakan kami. Tinjau dan setujui untuk melanjutkan." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37932,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Anda sedang mengedit profil per-komunitas Anda. Profil ini hanya akan terlihat di komunitas ini dan akan menimpa profil global Anda." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Anda sekarang adalah seorang developer!" diff --git a/fluxer_app/src/features/i18n/locales/it/messages.po b/fluxer_app/src/features/i18n/locales/it/messages.po index 84a5a81d6..720bc5c2a 100644 --- a/fluxer_app/src/features/i18n/locales/it/messages.po +++ b/fluxer_app/src/features/i18n/locales/it/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} Desktop {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Team della community di {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} non è riuscito a connettersi al servizio di aggiornamento. Verifica la tua connessione e riprova." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} non è riuscito a riavviarsi per installare l'aggiornamento scaricato. Riprova dal pulsante di aggiornamento." @@ -1210,8 +1210,8 @@ msgstr "Logo di {productName}" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "online {renderedPresenceCount}" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Gruppo di {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "un nome host, ad es. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "È disponibile un aggiornamento per la versione desktop di Linux. Scegli il formato del pacchetto per questo sistema e {productName} lo salverà localmente." @@ -1990,7 +1990,7 @@ msgstr "un sondaggio" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "È richiesto un redirect_uri quando lo scope del bot non è l'unico scope." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Un componente riutilizzabile per stati vuoti, errori e messaggi di stato." @@ -3891,7 +3891,7 @@ msgstr "App" msgid "Arabic" msgstr "Arabo" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Archivia" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Scorrimento automatico" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Disponibile" @@ -5243,26 +5243,6 @@ msgstr "Sfoca" msgid "Blur strength" msgstr "Intensità della sfocatura" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Corpo" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Grassetto" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Intestazione in grassetto" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Titolo in grassetto" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Varianti pulsante" msgid "Button with context menu" msgstr "Pulsante con menu contestuale" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Pulsanti" @@ -5989,11 +5969,6 @@ msgstr "Impossibile installare il pacchetto di sticker" msgid "Captcha verification failed. Try again." msgstr "Verifica Captcha non riuscita. Riprova." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Didascalia" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Cancella tutte le modifiche attive" msgid "Clear all attachment mocks" msgstr "Cancella tutti i mock degli allegati" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Cancella tutte le sostituzioni dei token" @@ -7215,7 +7190,7 @@ msgstr "Rimuovi simulazione per questo allegato" msgid "Clear nickname" msgstr "Cancella nickname" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Cancella personalizzazioni" @@ -7299,7 +7274,7 @@ msgstr "Ha cancellato l'argomento." msgid "Clearing trusted domains..." msgstr "Cancellazione domini attendibili..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Cancella CSS rapido, temi importati, risorse caricate e riferimenti a file locali su questo dispositivo." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Tocca per riscattare il tuo regalo!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Tocca per copiare" @@ -8825,7 +8800,7 @@ msgstr "Copia link d'invito" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Copia link" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Impossibile modificare il ciclo di fatturazione" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Impossibile verificare la disponibilità di aggiornamenti" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Impossibile eliminare i tuoi messaggi" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Impossibile scaricare l'aggiornamento desktop" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Impossibile avviare la connessione" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Impossibile avviare l'aggiornamento desktop" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Pulsante pericolo cliccato." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Disattivato di default su mobile per preservare la durata della batteria #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Messaggi eliminati." msgid "Deleted." msgstr "Eliminato." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Tipografia delicata e leggera" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Aggiornamento desktop disponibile. Scegli un pacchetto Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Aggiornamento desktop pronto" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "È stata scaricata la versione desktop {version}. Riavvia {productName} per completare l'installazione." @@ -11753,11 +11723,9 @@ msgstr "Ignora menzione" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "A causa delle leggi sui contenuti per adulti in {regionName}, questo contenuto multimediale non è disponibile nella tua regione attuale." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Duplica" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Modifica la tua biografia del profilo" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Testo modificabile" @@ -13001,7 +12969,7 @@ msgstr "Abilita scadenza allegati" msgid "Enable audio" msgstr "Abilita audio" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Abilita funzione beta" @@ -13038,7 +13006,7 @@ msgstr "Abilita la modalità sviluppatore" msgid "Enable email delivery" msgstr "Abilita consegna email" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Abilita opzione extra" @@ -13660,7 +13628,7 @@ msgstr "Errore" msgid "error code {code}" msgstr "codice di errore {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Errore durante il rendering dei contenuti" @@ -14095,11 +14063,6 @@ msgstr "I link esterni possono essere pericolosi. Fai attenzione." msgid "Extra large" msgstr "Molto grande" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Chiaro" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Primo clic" msgid "First click pass-through when unfocused" msgstr "Primo clic pass-through quando non in primo piano" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Prima opzione" @@ -14917,10 +14880,6 @@ msgstr "Segui master • {effectiveValue}%" msgid "Font" msgstr "Carattere" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Pesi dei font" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "Dal {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "da <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Generale" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Genera un link condivisibile o copia il tuo CSS personalizzato combinato." @@ -15481,11 +15440,6 @@ msgstr "Genera nuovo codice" msgid "Generating code…" msgstr "Generazione codice…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Testo leggero e arioso" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Lui" msgid "Header" msgstr "Intestazione" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Intestazione" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Indicizzazione canale" msgid "Indicator" msgstr "Indicatore" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indicatori e stato" @@ -17557,7 +17506,7 @@ msgstr "Stati input" msgid "Input volume" msgstr "Volume ingresso" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Input e testo" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Installa pacchetto di adesivi" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Installata" @@ -18094,15 +18043,6 @@ msgstr "Tutto tranquillo per ora..." msgid "Italian" msgstr "Italiano" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Corsivo" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Esempio di stile corsivo" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Lingua" msgid "Language settings" msgstr "Impostazioni lingua" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Supporto lingue" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Lingue" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Grande" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "A vita {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Chiaro" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux (predefinito)" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Pacchetto Linux" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Segna come letto il canale principale della posta in arrivo" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Fluxer" @@ -19945,10 +19877,8 @@ msgstr "Dimensione media" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Media" @@ -20820,7 +20750,7 @@ msgstr "Altro" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Altre azioni" @@ -20993,10 +20923,6 @@ msgstr "Autenticazione a due fattori" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Contenuti multilingue" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "I nuovi utenti non possono iscriversi in questo momento. Puoi comunque creare un account o accedere, quindi riprovare questo link più tardi." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Nuova versione" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Nessuna emoji trovata per la tua ricerca." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Nessuna emoji corrisponde alla ricerca" @@ -22363,11 +22289,6 @@ msgstr "Nessuno" msgid "None (normal behavior)" msgstr "Nessuno (comportamento normale)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normale" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Solo tu puoi vedere questo messaggio. <0>Ignora" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Opacità" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Apri selettore data" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Apri download desktop" @@ -23165,6 +23086,11 @@ msgstr "Apri selezione rapida" msgid "Open settings" msgstr "Apri impostazioni" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Apri il centro software" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Sistema operativo" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Attiva i controlli sperimentali dei badge di messaggi non letti a livello di community e canale" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Ottimizzato per testi lunghi" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Ottimizzazione fotocamera..." @@ -23483,7 +23404,7 @@ msgstr "Fuori dalla finestra di rimborso" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Gruppi di avatar sovrapposti che mostrano più utenti con conteggi automatici di overflow." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Overlay e menu" @@ -23886,11 +23807,6 @@ msgstr "Volume per suono" msgid "Per-window audio isn't available on this build of macOS." msgstr "L'audio per finestra non è disponibile su questa versione di macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Perfetto per i contenuti di tutti i giorni" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Posizione" msgid "Power saving" msgstr "Risparmio energetico" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Potente e accattivante" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Principale (disabilitato)" msgid "Primary accent color" msgstr "Colore principale" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Azione principale" @@ -25724,11 +25635,6 @@ msgstr "Registrazione" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "La registrazione è attualmente chiusa. Usa un link di registrazione fornito da un amministratore per creare un account." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Normale" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Pulsante normale" @@ -26198,7 +26104,7 @@ msgstr "Rimosso il limite utenti." msgid "Removed timeout from {0}" msgstr "Timeout rimosso da {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Rimuove ogni override per variabile, ma mantiene intatti la libreria e gli asset." @@ -26703,7 +26609,7 @@ msgstr "Reimposta dati app" msgid "Reset app data and restart" msgstr "Reimposta i dati dell'app e riavvia" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Reimposta tema personalizzato" @@ -26714,7 +26620,7 @@ msgstr "Reimpostare i dati del tema personalizzato?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Reimposta dati" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Riavvia {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Riavvia {productName}" @@ -28030,7 +27936,7 @@ msgstr "Ricerca in corso" msgid "Searching people..." msgstr "Ricerca persone..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Seconda opzione" @@ -28047,7 +27953,7 @@ msgstr "Secondario (disabilitato)" msgid "Secondary accent color" msgstr "Colore accento secondario" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Azione secondaria" @@ -28339,7 +28245,7 @@ msgstr "Selezione: {0}" msgid "Selection: {0} (max {1})" msgstr "Selezione: {0} (max {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Selezioni" @@ -28369,16 +28275,6 @@ msgstr "Forza modalità self-hosted" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Rimborsi self-service disponibili entro 3 giorni dal pagamento, una volta ogni 30 giorni. Il rimborso di un abbonamento ne comporta l'annullamento. Gli acquirenti UE/SEE rinunciano al diritto di recesso di 14 giorni al momento del checkout per accedere immediatamente ai contenuti. Utilizza il pulsante di rimborso in-app anziché un chargeback. I chargeback possono limitare permanentemente il tuo account. Stripe gestisce il pagamento in modo sicuro. Non vediamo mai il numero completo della tua carta." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Semibold" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Grande semigrassetto" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Imposta il livello per ogni effetto sonoro. Le impostazioni personalizza #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Impostazioni" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Diversi utenti stanno scrivendo..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Condividi" @@ -29002,7 +28898,7 @@ msgstr "Condividi" msgid "Share action." msgstr "Condividi azione." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Condividi tema personalizzato attivo" @@ -29035,7 +28931,7 @@ msgstr "Condividi sorgente" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Condividi l'esperienza {premiumProductName} con i tuoi amici acquistando un abbonamento regalo." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Condividi tema" @@ -29963,11 +29859,6 @@ msgstr "Slider con valori a passi" msgid "Sliders" msgstr "Cursori" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Enfasi leggermente più marcata" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Insulti, linguaggio disumanizzante o attacchi a gruppi protetti." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Piccole" @@ -30161,11 +30050,6 @@ msgstr "Si allinea a incrementi di 5." msgid "Social" msgstr "Sociale" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Un'esperienza di lettura piacevole e scorrevole" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Indicatori di stato" msgid "Status page" msgstr "Pagina di stato" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Stato" @@ -31291,15 +31175,6 @@ msgstr "Stripe ha segnalato una carta emessa in {countryName}. Per pagare in que msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Qualità elevata con un consumo moderato di CPU. Ottima opzione di riserva per la condivisione dello schermo su Chromium." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Gerarchia visiva forte" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Variazioni di stile" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Scenari di abbonamento" msgid "Subtext" msgstr "Sottotesto" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Sottotitolo" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Testa l'espansione degli URL e gli embed renderizzati" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Testo" @@ -31973,6 +31841,10 @@ msgstr "Canali testuali" msgid "Text formatting" msgstr "Formattazione testo" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Il testo viene renderizzato con antialiasing in scala di grigi anziché ClearType quando la trasparenza è abilitata, quindi apparirà più morbido." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "La community che cerchi potrebbe essere stata eliminata o potresti non avere accesso." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Non è stato possibile scaricare l'aggiornamento desktop. Riprova dal pulsante di aggiornamento quando la tua connessione sarà stabile." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "L'aggiornamento per il desktop è stato scaricato. Riavvia {productName} per completare l'installazione." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Il file scaricato viene salvato sul tuo computer. Installalo con il tuo normale gestore di pacchetti." @@ -32442,12 +32314,7 @@ msgstr "Potrebbero non accettare messaggi da te, oppure non fate più parte dell msgid "They're not accepting friend requests right now." msgstr "Al momento non accettano richieste di amicizia." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Sottile" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Terza opzione" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Questo messaggio è molto popolare. Devi rimuovere alcune reazioni prima di poterne aggiungere altre." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Questo è un testo di esempio nell'area di testo." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Questa è la descrizione della prima opzione" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Questa è la descrizione della seconda opzione" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Questa è la descrizione della terza opzione" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Verranno rimosse tutte le scorciatoie personalizzate e riattivate quelle predefinite. Questa azione non può essere annullata." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Questo link di reimpostazione è scaduto. I link di reimpostazione durano 24 ore. Richiedine uno nuovo." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Questo link di reimpostazione è scaduto. I link di reimpostazione durano 1 ora. Richiedine uno nuovo." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Questo interruttore è disabilitato e non può essere attivato" msgid "This switch is disabled in the checked state" msgstr "Questo interruttore è disabilitato quando è selezionato" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Questo testo mostra lo stile del titolo in grassetto" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Questo testo mostra lo stile del titolo in grassetto" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Questo testo mostra lo stile corsivo" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Questo testo mostra uno stile grande e semigrassetto" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Questo testo mostra la formattazione normale" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Questo testo mostra lo stile semigrassetto" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Questa casella di testo si espande automaticamente da 4 a 12 righe mentre digiti." @@ -33417,11 +33254,6 @@ msgstr "Fuso orario" msgid "Tip" msgstr "Suggerimento" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Titolo" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Digita un colore (hex, rgb(), hsl o nome) o usa il selettore." msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Digita un colore (hex, rgb(), hsl() o nome) o usa il selettore." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Dimensione testo" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Solo indicatore di scrittura" msgid "Typing state" msgstr "Stato digitazione" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Caratteri" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Dimostrazione della scala tipografica" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Fallback universale. Qualità più bassa, ma funziona ovunque." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Sconosciuto" @@ -34649,8 +34469,8 @@ msgstr "Emoji illimitate" msgid "Unlimited stickers" msgstr "Sticker illimitati" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Sblocca {lockedEmojiCount, plural, one {# emoji personalizzata} other {# emoji personalizzate}} da {communityCount, plural, one {# community} other {# community}} con {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Canale senza nome" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Gruppo senza nome" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Abbiamo aggiornato le nostre informative. Rivedile e accettale per continuare." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Stai modificando il tuo profilo per questa community. Sarà visibile solo qui e sostituirà il tuo profilo globale." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Ora sei uno sviluppatore!" diff --git a/fluxer_app/src/features/i18n/locales/ja/messages.po b/fluxer_app/src/features/i18n/locales/ja/messages.po index 66ae7da36..97125e93b 100644 --- a/fluxer_app/src/features/i18n/locales/ja/messages.po +++ b/fluxer_app/src/features/i18n/locales/ja/messages.po @@ -10,8 +10,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "PO-Revision-Date: 2026-07-07 23:18+0000\n" "Last-Translator: Hampus \n" -"Language-Team: Japanese \n" +"Language-Team: Japanese \n" "Plural-Forms: nplurals=1; plural=0;\n" #. Description text in the messages tab. @@ -619,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} デスクトップ {desktopVersion}" @@ -1090,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName}コミュニティチーム" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName}はアップデートサービスに接続できませんでした。接続を確認して、もう一度お試しください。" #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} のダウンロードしたアップデートへの再起動に失敗しました。更新ボタンからもう一度お試しください。" @@ -1211,8 +1210,8 @@ msgstr "{productName} のロゴ" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1243,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount}人がオンライン" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "{resolvedName}のグループ" @@ -1962,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "ホスト名(例: {exampleDomain})" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Linux デスクトップのアップデートが利用可能です。このシステムで使用するパッケージ形式を選択すると、{productName} がローカルに保存されます。" @@ -1991,7 +1990,7 @@ msgstr "投票" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "ボットスコープが唯一のスコープではない場合、redirect_uriが必要です。" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "空の状態、エラー、ステータスメッセージに再利用できるコンポーネントです。" @@ -3892,7 +3891,7 @@ msgstr "アプリ" msgid "Arabic" msgstr "アラビア語" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "アーカイブ" @@ -4668,7 +4667,7 @@ msgid "Autoscrolling" msgstr "自動スクロール" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "利用可能" @@ -5244,26 +5243,6 @@ msgstr "ぼかし" msgid "Blur strength" msgstr "ぼかしの強さ" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "本文" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "太字" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "太字の見出し" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "太字のタイトル" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5591,7 +5570,7 @@ msgstr "ボタンの種類" msgid "Button with context menu" msgstr "コンテキストメニュー付きボタン" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "ボタン" @@ -5990,11 +5969,6 @@ msgstr "スタンプパックをインストールできません" msgid "Captcha verification failed. Try again." msgstr "画像認証に失敗しました。もう一度お試しください。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "キャプション" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7180,7 +7154,7 @@ msgstr "すべての有効なオーバーライドをクリア" msgid "Clear all attachment mocks" msgstr "添付ファイルをすべてクリア" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "すべてのトークンオーバーライドをクリア" @@ -7216,7 +7190,7 @@ msgstr "この添付ファイルのモックをクリア" msgid "Clear nickname" msgstr "ニックネームを削除" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "上書きをクリア" @@ -7300,7 +7274,7 @@ msgstr "トピックをクリアしました." msgid "Clearing trusted domains..." msgstr "信頼済みドメインをクリアしています…" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "クイックCSS、インポートされたテーマ、アップロードされたアセット、このデバイス上のローカルファイル参照をクリアします。" @@ -7342,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "ギフトを受け取る!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "クリックしてコピー" @@ -8826,7 +8800,7 @@ msgstr "招待URLをコピー" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "リンクをコピー" @@ -9066,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "請求サイクルを変更できませんでした" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "アップデートを確認できませんでした" @@ -9173,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "メッセージを削除できませんでした" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "デスクトップ版のアップデートをダウンロードできませんでした" @@ -9427,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "接続を開始できませんでした" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "デスクトップのアップデートを開始できませんでした" @@ -10303,7 +10277,7 @@ msgid "Danger button clicked." msgstr "危険ボタンがクリックされました。" #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10670,7 +10644,7 @@ msgstr "バッテリーとデータ使用量を節約するため、モバイル #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10965,11 +10939,6 @@ msgstr "メッセージを削除しました。" msgid "Deleted." msgstr "削除しました。" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "繊細で軽やかなタイポグラフィ" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11146,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "デスクトップ版のアップデートがあります。Linuxパッケージを選択してください。" #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "デスクトップアプリのアップデート準備ができました" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "デスクトップ版 {version} がダウンロードされました。{productName} を再起動してインストールを完了してください。" @@ -11754,11 +11723,9 @@ msgstr "メンションを非表示" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12306,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "{regionName}の成人向けコンテンツ規制法により、このメディアはお住まいの地域ではご利用いただけません。" #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "複製" @@ -12591,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "プロフィールを編集" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "編集可能なテキスト" @@ -13002,7 +12969,7 @@ msgstr "添付ファイルの有効期限を有効にする" msgid "Enable audio" msgstr "音声の再生を許可" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "ベータ機能を有効にする" @@ -13039,7 +13006,7 @@ msgstr "開発者モードを有効にする" msgid "Enable email delivery" msgstr "メール配信を有効にする" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "追加オプションを有効にする" @@ -13661,7 +13628,7 @@ msgstr "エラー" msgid "error code {code}" msgstr "エラーコード {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "コンテンツの表示中にエラーが発生しました" @@ -14096,11 +14063,6 @@ msgstr "外部リンクには危険が伴う場合があります。ご注意く msgid "Extra large" msgstr "特大" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "極細" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14792,7 +14754,7 @@ msgstr "初回クリック" msgid "First click pass-through when unfocused" msgstr "非アクティブ時にクリックを透過" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "最初のオプション" @@ -14918,10 +14880,6 @@ msgstr "マスターに従う • {effectiveValue}%" msgid "Font" msgstr "フォント" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "フォントの太さ" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15365,7 +15323,7 @@ msgid "From {start}" msgstr "{start}から" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "<0>{0}から" @@ -15461,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "一般" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "共有可能なリンクを生成するか、結合されたカスタムCSSをコピーします。" @@ -15482,11 +15440,6 @@ msgstr "新しいコードを生成" msgid "Generating code…" msgstr "コードを生成中…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "やわらかく軽やかなテキスト表示" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16268,11 +16221,6 @@ msgstr "ヘ" msgid "Header" msgstr "ヘッダー" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "見出し" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17430,7 +17378,7 @@ msgstr "チャンネルをインデックス中" msgid "Indicator" msgstr "インジケーター" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "インジケーターとステータス" @@ -17558,7 +17506,7 @@ msgstr "入力状態" msgid "Input volume" msgstr "入力音量" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "入力と文字" @@ -17591,7 +17539,7 @@ msgid "Install sticker pack" msgstr "スタンプパックをインストール" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "インストール済み" @@ -18095,15 +18043,6 @@ msgstr "今は静かです…" msgid "Italian" msgstr "イタリア語" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "斜体" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "斜体スタイルのデモンストレーション" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18533,10 +18472,6 @@ msgstr "言語" msgid "Language settings" msgstr "言語設定" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "対応言語" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18545,9 +18480,7 @@ msgid "Languages" msgstr "言語" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "大" @@ -18823,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "永久 {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "明るい" @@ -19013,7 +18944,7 @@ msgid "Linux default" msgstr "Linux デフォルト" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linuxパッケージ" @@ -19614,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "受信トレイの一番上のチャンネルを既読にする" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "マークダウン" @@ -19946,10 +19877,8 @@ msgstr "メディアサイズ" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "中" @@ -20821,7 +20750,7 @@ msgstr "その他" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "その他" @@ -20994,10 +20923,6 @@ msgstr "多要素認証" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "多言語コンテンツ" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21654,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "現在、新しいユーザーは参加できません。アカウントを作成するかサインインしてから、後でもう一度このリンクをお試しください。" #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "新しいバージョン" @@ -21922,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "検索条件に一致する絵文字は見つかりませんでした。" #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "検索条件に一致する絵文字はありません" @@ -22364,11 +22289,6 @@ msgstr "なし" msgid "None (normal behavior)" msgstr "なし (通常動作)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "標準" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22793,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "このメッセージはあなたにのみ表示されています。<0>閉じる" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "不透明度" @@ -22971,7 +22891,7 @@ msgid "Open date picker" msgstr "日付ピッカーを開く" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "デスクトップ版をダウンロード" @@ -23166,6 +23086,11 @@ msgstr "クイックスイッチャーを開く" msgid "Open settings" msgstr "設定を開く" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "ソフトウェアセンターを開く" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23312,11 +23237,6 @@ msgstr "OS" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "コミュニティごと、チャンネルごとの未読バッジ表示設定を有効にする" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "長文の読書に最適化" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "カメラを最適化中…" @@ -23484,7 +23404,7 @@ msgstr "返金期間外です" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "アバターが重なって表示され、複数のユーザーと自動オーバーフローカウントを示します。" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "オーバーレイとメニュー" @@ -23887,11 +23807,6 @@ msgstr "サウンドごとの音量" msgid "Per-window audio isn't available on this build of macOS." msgstr "このmacOSビルドでは、ウィンドウごとのオーディオは利用できません。" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "普段使いのコンテンツにぴったり" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24418,11 +24333,6 @@ msgstr "役職" msgid "Power saving" msgstr "省電力" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "パワフルで目を引く" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24692,7 +24602,7 @@ msgstr "プライマリ(無効)" msgid "Primary accent color" msgstr "メインのアクセントカラー" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "メインアクション" @@ -25725,11 +25635,6 @@ msgstr "登録" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "現在、登録は停止されています。アカウントを作成するには、管理者から受け取った登録リンクを使用してください。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "標準" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "通常ボタン" @@ -26199,7 +26104,7 @@ msgstr "ユーザー数の上限を削除しました。" msgid "Removed timeout from {0}" msgstr "{0}さんのタイムアウトを解除しました" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "変数ごとのオーバーライドをすべて削除しますが、ライブラリとアセットはそのまま保持されます。" @@ -26704,7 +26609,7 @@ msgstr "アプリデータをリセット" msgid "Reset app data and restart" msgstr "アプリデータをリセットして再起動" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "カスタムテーマデータをリセット" @@ -26715,7 +26620,7 @@ msgstr "カスタムテーマデータをリセットしますか?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "データをリセット" @@ -26855,7 +26760,7 @@ msgid "Restart {appName}" msgstr "{appName}を再起動" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "{productName}を再起動します" @@ -28031,7 +27936,7 @@ msgstr "検索中" msgid "Searching people..." msgstr "メンバーを検索中…" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "2番目のオプション" @@ -28048,7 +27953,7 @@ msgstr "サブ (無効)" msgid "Secondary accent color" msgstr "サブのアクセントカラー" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "サブアクション" @@ -28340,7 +28245,7 @@ msgstr "選択範囲: {0}" msgid "Selection: {0} (max {1})" msgstr "選択範囲: {0} (最大 {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "選択" @@ -28370,16 +28275,6 @@ msgstr "セルフホストモードを強制" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "お支払いから3日以内、かつ30日に1回まで、ご自身で返金手続きが可能です。サブスクリプションを返金すると、サブスクリプションはキャンセルされます。EU/EEA圏の購入者は、コンテンツにすぐにアクセスするため、チェックアウト時に14日間の撤回権を放棄します。チャージバックではなく、アプリ内の返金ボタンをご利用ください。チャージバックはアカウントの永久的な制限につながる可能性があります。Stripeが支払いを安全に処理します。お客様のカード番号全体が当社に表示されることはありません。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "セミボールド" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "太字(大)" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28952,7 +28847,7 @@ msgstr "すべての効果音の音量を設定します。個別の音量設定 #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "設定" @@ -28992,9 +28887,9 @@ msgid "Several people are typing..." msgstr "複数人が入力中…" #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "シェア" @@ -29003,7 +28898,7 @@ msgstr "シェア" msgid "Share action." msgstr "シェアアクション." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "カスタムテーマを共有" @@ -29036,7 +28931,7 @@ msgstr "共有元" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "ギフトサブスクリプションを購入して、友達と{premiumProductName}を体験しましょう。" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "テーマを共有" @@ -29964,11 +29859,6 @@ msgstr "ステップ値付きスライダー" msgid "Sliders" msgstr "スライダー" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "やや太めの強調" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30077,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "中傷、非人間的な言葉、または保護されたグループへの攻撃。" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "小" @@ -30162,11 +30050,6 @@ msgstr "5刻みでスナップ." msgid "Social" msgstr "ソーシャル" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "やわらかく読みやすい表示" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30878,7 +30761,7 @@ msgstr "ステータスインジケーター" msgid "Status page" msgstr "ステータスページ" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "ステータス" @@ -31292,15 +31175,6 @@ msgstr "Stripeによると、カードは{countryName}で発行されていま msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "CPU負荷を抑えつつ高品質を維持。画面共有時のChromiumの代替として有効です。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "視覚的な階層を強調" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "スタイルのバリエーション" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31347,11 +31221,6 @@ msgstr "購読シナリオ" msgid "Subtext" msgstr "サブテキスト" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "サブタイトル" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31936,10 +31805,8 @@ msgstr "URLのアンファールと埋め込みのレンダリングをテスト #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "テキスト" @@ -31974,6 +31841,10 @@ msgstr "テキストチャンネル" msgid "Text formatting" msgstr "テキストの書式設定" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "透明化が有効な場合、ClearTypeではなくグレースケールアンチエイリアスでテキストがレンダリングされるため、よりソフトな見た目になります。" + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32162,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "お探しのコミュニティは削除されたか、アクセス権がない可能性があります。" #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "デスクトップのアップデートをダウンロードできませんでした。インターネット接続が安定していることを確認し、アップデートボタンからもう一度お試しください。" #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "デスクトップアップデートがダウンロードされました。{productName}を再起動してインストールを完了してください。" #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "ダウンロードされたファイルはコンピューターに保存されます。通常のパッケージマネージャーでインストールしてください。" @@ -32443,12 +32314,7 @@ msgstr "相手があなたからのメッセージを受け付けていないか msgid "They're not accepting friend requests right now." msgstr "現在、相手は友達リクエストを受け付けていません。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "細い" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "3番目の選択肢" @@ -32871,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "リアクションが多すぎます。これ以上追加するには、いくつかのリアクションを削除してください。" #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "これはテキストエリアの例文です。" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "これは最初のオプションの説明です" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "これは2番目のオプションの説明です" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "これは3番目のオプションの説明です" @@ -33036,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "すべてのカスタムショートカットを削除し、組み込みのショートカットをすべて有効にします。この操作は元に戻せません。" #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "このリセットリンクは有効期限が切れています。リセットリンクの有効期間は24時間です。新しいリンクをリクエストしてください。" +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "このリセットリンクは期限切れです。リセットリンクは1時間有効です。新しいものをリクエストしてください。" #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33064,36 +32930,6 @@ msgstr "このスイッチは無効になっており、切り替えることは msgid "This switch is disabled in the checked state" msgstr "このスイッチはオンの状態では無効です" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "これは太字の見出しスタイルを示すテキストです" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "これは太字のタイトルスタイルを示すテキストです" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "このテキストは斜体スタイルを示しています" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "これは、セミボールドの大きな文字のスタイルを示しています" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "これは通常のスタイルを示すテキストです" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "これはセミボールドのスタイルを示すテキストです" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "入力に合わせてテキストエリアが4行から12行に自動で広がります。" @@ -33418,11 +33254,6 @@ msgstr "タイムゾーン" msgid "Tip" msgstr "ヒント" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "タイトル" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34117,10 +33948,6 @@ msgstr "色を入力(16進数、rgb()、hsl、または名前)するか、 msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "色(16進数、rgb()、hsl()、または名前)を入力するか、ピッカーを使用してください。" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "文字サイズ" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34169,14 +33996,6 @@ msgstr "入力中のみ" msgid "Typing state" msgstr "入力中" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "フォント" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "タイポグラフィのスケールデモンストレーション" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34495,7 +34314,7 @@ msgstr "汎用フォールバック。音質は最低ですが、どこでも動 #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "不明" @@ -34650,8 +34469,8 @@ msgstr "絵文字無制限" msgid "Unlimited stickers" msgstr "スタンプ無制限" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "{PREMIUM_PRODUCT_NAME}で、{communityCount, plural, one {#コミュニティ} other {#コミュニティ}}から{lockedEmojiCount, plural, one {#個のカスタム絵文字} other {#個のカスタム絵文字}}をアンロックしよう。" @@ -34797,7 +34616,7 @@ msgstr "名前のないチャンネル" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "名前のないグループ" @@ -37334,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "規約を更新しました。引き続きご利用いただくには、内容をご確認のうえ同意してください。" #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37918,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "コミュニティごとのプロフィールを編集中です。このプロフィールはこのコミュニティ内でのみ表示され、グローバルプロフィールよりも優先されます。" #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "あなたは開発者になりました!" diff --git a/fluxer_app/src/features/i18n/locales/ko/messages.po b/fluxer_app/src/features/i18n/locales/ko/messages.po index 14e734ff5..c78af26d0 100644 --- a/fluxer_app/src/features/i18n/locales/ko/messages.po +++ b/fluxer_app/src/features/i18n/locales/ko/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} 데스크톱 {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName} 커뮤니티 팀" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName}이 업데이트 서버에 연결할 수 없습니다. 연결 상태를 확인하고 다시 시도해 보세요." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName}을(를) 다운로드한 업데이트로 다시 시작할 수 없습니다. 업데이트 버튼에서 다시 시도해 보세요." @@ -1210,8 +1210,8 @@ msgstr "{productName} 워드마크" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} 웹 {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount}명 온라인" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "{resolvedName} 그룹" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "호스트 이름(예: {exampleDomain})" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Linux 데스크톱 업데이트가 있습니다. 이 시스템에 대한 패키지 형식을 선택하면 {productName}이 로컬에 저장됩니다." @@ -1990,7 +1990,7 @@ msgstr "투표" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "봇 스코프가 유일한 스코프가 아닌 경우 redirect_uri가 필요합니다." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "비어 있는 상태, 오류, 상태 메시지를 위한 재사용 가능한 구성 요소입니다." @@ -3891,7 +3891,7 @@ msgstr "앱" msgid "Arabic" msgstr "아랍어" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "보관" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "자동 스크롤" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "사용 가능" @@ -5243,26 +5243,6 @@ msgstr "흐리게" msgid "Blur strength" msgstr "흐림 강도" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "본문" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "굵게" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "굵은 제목" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "굵은 제목" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "버튼 종류" msgid "Button with context menu" msgstr "상황별 메뉴 버튼" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "버튼" @@ -5989,11 +5969,6 @@ msgstr "스티커 팩을 설치할 수 없습니다" msgid "Captcha verification failed. Try again." msgstr "캡차 인증에 실패했습니다. 다시 시도해 주세요." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "캡션" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "모든 활성 재정의 지우기" msgid "Clear all attachment mocks" msgstr "첨부파일 미리보기 모두 지우기" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "모든 토큰 재정의 지우기" @@ -7215,7 +7190,7 @@ msgstr "이 첨부파일의 모의 데이터 지우기" msgid "Clear nickname" msgstr "닉네임 지우기" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "재정의 지우기" @@ -7299,7 +7274,7 @@ msgstr "주제를 지웠습니다." msgid "Clearing trusted domains..." msgstr "신뢰하는 도메인 지우는 중..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "이 기기에서 빠른 CSS, 가져온 테마, 업로드된 에셋, 로컬 파일 참조를 지웁니다." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "선물 받으려면 클릭하세요!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "클릭하여 복사" @@ -8825,7 +8800,7 @@ msgstr "초대 링크 복사" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "링크 복사" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "결제 주기를 변경할 수 없습니다" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "업데이트를 확인할 수 없습니다" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "메시지를 삭제할 수 없습니다" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "데스크톱 업데이트를 다운로드할 수 없습니다" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "연결을 시작할 수 없습니다" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "데스크톱 업데이트를 시작할 수 없습니다" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "위험 버튼 클릭됨." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "배터리 수명 및 데이터 사용량 보존을 위해 모바일에 #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "메시지를 삭제했습니다." msgid "Deleted." msgstr "삭제되었습니다." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "섬세하고 가벼운 서체" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "데스크톱 업데이트를 사용할 수 있습니다. Linux 패키지를 선택하세요." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "데스크톱 업데이트 준비 완료" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "데스크톱 버전 {version}이 다운로드되었습니다. {productName}을 다시 시작하여 설치를 완료하세요." @@ -11753,11 +11723,9 @@ msgstr "멘션 해제" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "{regionName}의 성인 콘텐츠 관련 법규에 따라 현재 지역에서는 이 미디어를 이용할 수 없습니다." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "복제" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "프로필 자기소개 수정" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "수정 가능한 텍스트" @@ -13001,7 +12969,7 @@ msgstr "첨부 파일 만료 사용 설정" msgid "Enable audio" msgstr "오디오 활성화" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "베타 기능 활성화" @@ -13038,7 +13006,7 @@ msgstr "개발자 모드 활성화" msgid "Enable email delivery" msgstr "이메일 전송 사용 설정" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "추가 옵션 활성화" @@ -13660,7 +13628,7 @@ msgstr "오류" msgid "error code {code}" msgstr "오류 코드 {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "콘텐츠 렌더링 오류" @@ -14095,11 +14063,6 @@ msgstr "외부 링크는 위험할 수 있습니다. 주의하세요." msgid "Extra large" msgstr "아주 크게" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "아주 얇게" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "첫 번째 클릭" msgid "First click pass-through when unfocused" msgstr "포커스 해제 시 첫 클릭 통과" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "첫 번째 옵션" @@ -14917,10 +14880,6 @@ msgstr "마스터 설정 따름 • {effectiveValue}%" msgid "Font" msgstr "글자 크기/글꼴" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "글꼴 두께" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "{start}부터" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "<0>{0}에서" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "일반" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "공유 가능한 링크를 생성하거나 조합된 맞춤 CSS를 복사하세요." @@ -15481,11 +15440,6 @@ msgstr "새 코드 생성" msgid "Generating code…" msgstr "코드 생성 중…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "부드럽고 가벼운 텍스트 표시" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "그" msgid "Header" msgstr "헤더" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "제목" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "채널 색인 중" msgid "Indicator" msgstr "표시기" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "표시 및 상태" @@ -17557,7 +17506,7 @@ msgstr "입력 상태" msgid "Input volume" msgstr "입력 볼륨" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "입력 및 텍스트" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "스티커 팩 설치" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "설치됨" @@ -18094,15 +18043,6 @@ msgstr "지금은 조용하네요..." msgid "Italian" msgstr "이탈리아어" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "이탤릭체" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "이탤릭체 스타일 데모" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "언어" msgid "Language settings" msgstr "언어 설정" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "언어 지원" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "언어" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "크게" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "평생 {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "밝게" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux 기본" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux 패키지" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "받은 메시지함의 최상단 채널을 읽음으로 표시" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "마크다운" @@ -19945,10 +19877,8 @@ msgstr "미디어 크기" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "보통" @@ -20820,7 +20750,7 @@ msgstr "더 보기" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "더 보기" @@ -20993,10 +20923,6 @@ msgstr "다단계 인증" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "다국어 콘텐츠" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "지금은 새 사용자가 참여할 수 없습니다. 계정을 만들거나 로그인한 다음 나중에 이 링크를 다시 시도할 수 있습니다." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "새 버전" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "검색 결과와 일치하는 이모티콘이 없습니다." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "검색 결과와 일치하는 이모티콘이 없습니다" @@ -22363,11 +22289,6 @@ msgstr "사용 안 함" msgid "None (normal behavior)" msgstr "없음 (기본 동작)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "보통" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "회원님에게만 보이는 메시지입니다. <0>닫기" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "불투명도" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "날짜 선택기 열기" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "데스크톱 다운로드 열기" @@ -23165,6 +23086,11 @@ msgstr "빠른 전환 열기" msgid "Open settings" msgstr "설정 열기" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "소프트웨어 센터 열기" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "운영체제" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "커뮤니티 및 채널별 미확인 배지 제어 기능을 사용하도록 설정합니다" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "긴 글 읽기에 최적화" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "카메라 최적화 중..." @@ -23483,7 +23404,7 @@ msgstr "환불 기간이 지났습니다" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "여러 명의 사용자가 포함된 아바타 그룹이 겹쳐져 표시되며, 자동으로 오버플로 수가 계산됩니다." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "오버레이 및 메뉴" @@ -23886,11 +23807,6 @@ msgstr "사운드별 볼륨" msgid "Per-window audio isn't available on this build of macOS." msgstr "현재 macOS 버전에서는 창별 오디오를 사용할 수 없습니다." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "일상 콘텐츠에 딱 맞아요" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "직책" msgid "Power saving" msgstr "절전" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "강력하고 시선을 사로잡는" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "기본 (비활성화됨)" msgid "Primary accent color" msgstr "기본 강조 색상" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "기본 작업" @@ -25724,11 +25635,6 @@ msgstr "등록" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "현재 가입이 닫혀 있습니다. 계정을 만들려면 관리자가 제공한 가입 링크를 사용하세요." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "보통" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "일반 버튼" @@ -26198,7 +26104,7 @@ msgstr "사용자 제한을 해제했습니다." msgid "Removed timeout from {0}" msgstr "{0}님의 타임아웃을 해제했습니다" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "변수별 재정의를 모두 제거하지만 라이브러리 및 에셋은 그대로 유지합니다." @@ -26703,7 +26609,7 @@ msgstr "앱 데이터 초기화" msgid "Reset app data and restart" msgstr "앱 데이터 초기화 및 재시작" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "맞춤 테마 데이터 초기화" @@ -26714,7 +26620,7 @@ msgstr "맞춤 테마 데이터를 초기화할까요?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "데이터 초기화" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "{appName} 재시작" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "{productName}을 다시 시작합니다" @@ -28030,7 +27936,7 @@ msgstr "검색 중" msgid "Searching people..." msgstr "사람 검색 중..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "두 번째 옵션" @@ -28047,7 +27953,7 @@ msgstr "보조 (비활성화됨)" msgid "Secondary accent color" msgstr "보조 강조 색상" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "보조 작업" @@ -28339,7 +28245,7 @@ msgstr "선택: {0}" msgid "Selection: {0} (max {1})" msgstr "선택: {0} (최대 {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "선택 항목" @@ -28369,16 +28275,6 @@ msgstr "자체 호스팅 모드 재정의" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "결제 후 3일 이내, 30일마다 한 번씩 직접 환불할 수 있습니다. 구독을 환불하면 구독이 취소됩니다. EU/EEA 구매자는 콘텐츠에 즉시 액세스하기 위해 결제 시 14일 철회 권리를 포기합니다. 차지백 대신 앱 내 환불 버튼을 사용하세요. 차지백은 계정을 영구적으로 제한할 수 있습니다. Stripe가 결제를 안전하게 처리하며, Fluxer는 고객님의 전체 카드 번호를 볼 수 없습니다." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "세미 볼드" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "세미볼드 크게" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "모든 효과음의 볼륨을 설정합니다. 개별 효과음 설정 #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "설정" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "여러 명이 입력 중..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "공유" @@ -29002,7 +28898,7 @@ msgstr "공유" msgid "Share action." msgstr "공유하기." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "현재 테마 공유" @@ -29035,7 +28931,7 @@ msgstr "화면 공유" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "친구에게 {premiumProductName} 선물 구독권을 구매하여 경험을 공유하세요." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "테마 공유" @@ -29963,11 +29859,6 @@ msgstr "단계 값 슬라이더" msgid "Sliders" msgstr "슬라이더" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "약간 더 굵게 강조" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "욕설, 비인간적인 언어, 보호 대상 집단에 대한 공격." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "작게" @@ -30161,11 +30050,6 @@ msgstr "5단위로 스냅." msgid "Social" msgstr "소셜" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "부드럽고 편안한 읽기 경험" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "상태 표시" msgid "Status page" msgstr "상태 페이지" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "상태 메시지" @@ -31291,15 +31175,6 @@ msgstr "Stripe에서 {countryName}에서 발급된 카드를 보고했습니다. msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "적절한 CPU 사용량으로 고품질 화면 공유. Chromium 화면 공유 시 유용합니다." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "강력한 시각적 계층 구조" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "스타일 변형" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "구독 시나리오" msgid "Subtext" msgstr "보조 텍스트" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "부제목" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "URL 미리 보기 및 렌더링된 임베드 테스트" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "텍스트" @@ -31973,6 +31841,10 @@ msgstr "텍스트 채널" msgid "Text formatting" msgstr "텍스트 서식" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "투명도가 활성화되면 ClearType 대신 회색조 안티앨리어싱을 사용하여 텍스트가 더 부드럽게 보입니다." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "찾으시는 커뮤니티가 삭제되었거나 접근 권한이 없을 수 있습니다." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "데스크톱 업데이트를 다운로드할 수 없습니다. 연결이 안정적일 때 업데이트 버튼을 눌러 다시 시도해 주세요." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "데스크톱 업데이트가 완료되었습니다. {productName}을 다시 시작하여 설치를 완료하세요." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "다운로드한 파일이 컴퓨터에 저장됩니다. 일반 패키지 관리자로 설치하세요." @@ -32442,12 +32314,7 @@ msgstr "메시지 수신을 거부했거나 더 이상 같은 커뮤니티에 msgid "They're not accepting friend requests right now." msgstr "지금은 친구 요청을 받을 수 없습니다." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "얇게" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "세 번째 옵션" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "메시지에 반응이 너무 많아요. 더 추가하려면 일부 반응을 삭제해야 합니다." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "여기는 텍스트 영역의 예시 텍스트입니다." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "첫 번째 옵션에 대한 설명입니다" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "두 번째 옵션에 대한 설명입니다" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "세 번째 옵션 설명입니다" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "모든 사용자 지정 단축키를 제거하고 내장 단축키를 다시 활성화합니다. 이 작업은 되돌릴 수 없습니다." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "이 재설정 링크가 만료되었습니다. 재설정 링크는 24시간 동안 유효합니다. 새 링크를 요청하세요." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "이 비밀번호 재설정 링크는 만료되었습니다. 링크는 1시간 동안 유효합니다. 새 링크를 요청해 주세요." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "이 스위치는 비활성화되어 토글할 수 없습니다" msgid "This switch is disabled in the checked state" msgstr "선택된 상태에서는 이 스위치를 비활성화할 수 없습니다" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "이 텍스트는 굵은 제목 스타일을 보여줍니다" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "이 텍스트는 굵은 제목 스타일을 보여줍니다" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "이 텍스트는 기울임꼴 스타일을 보여줍니다" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "이 텍스트는 크고 세미볼드 스타일을 보여줍니다" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "이 텍스트는 일반 스타일을 보여줍니다" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "이 텍스트는 세미볼드 스타일을 보여줍니다" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "입력하는 내용에 따라 4행에서 12행까지 자동으로 확장됩니다." @@ -33417,11 +33254,6 @@ msgstr "시간대" msgid "Tip" msgstr "팁" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "제목" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "색상(Hex, RGB, HSL, 이름)을 입력하거나 피커를 사용하세 msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "색상(Hex, RGB, HSL, 이름)을 입력하거나 선택 도구를 사용하세요." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "글자 크기" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "입력 중 표시만" msgid "Typing state" msgstr "입력 상태" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "글자 크기 및 서체" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "글꼴 크기 미리보기" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "범용 대체 코덱. 화질은 가장 낮지만, 모든 환경에서 #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "알 수 없음" @@ -34649,8 +34469,8 @@ msgstr "이모티콘 무제한" msgid "Unlimited stickers" msgstr "스티커 무제한" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "{PREMIUM_PRODUCT_NAME}으로 {communityCount, plural, one {#개 커뮤니티} other {#개 커뮤니티}}에서 {lockedEmojiCount, plural, one {#개 맞춤 이모티콘} other {#개 맞춤 이모티콘}}을 잠금 해제하세요." @@ -34796,7 +34616,7 @@ msgstr "이름 없는 채널" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "이름 없는 그룹" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "정책이 업데이트되었습니다. 계속하려면 검토하고 동의하세요." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "웹 {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "커뮤니티별 프로필을 수정하고 있습니다. 이 프로필은 현재 커뮤니티에서만 표시되며, 전역 프로필을 덮어씁니다." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "이제 개발자입니다!" diff --git a/fluxer_app/src/features/i18n/locales/lt/messages.po b/fluxer_app/src/features/i18n/locales/lt/messages.po index f2f0ef694..e494f0af0 100644 --- a/fluxer_app/src/features/i18n/locales/lt/messages.po +++ b/fluxer_app/src/features/i18n/locales/lt/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} darbalaukio versija {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName} bendruomenės komanda" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "„{productName}“ negali susisiekti su atnaujinimų serveriu. Patikrinkite savo interneto ryšį ir bandykite dar kartą." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "„{productName}“ negalėjo perjungti į atsisiųstą atnaujinimą. Pabandykite dar kartą naudodami atnaujinimo mygtuką." @@ -1210,8 +1210,8 @@ msgstr "{productName} ženklas" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} žiniatinklis {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} prisijungę" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "{resolvedName} grupė" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "pagrindinio kompiuterio pavadinimas, pvz., {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Prieinamas „Linux“ darbalauko atnaujinimas. Pasirinkite šios sistemos paketų formatą, o programa „{productName}“ išsaugos jį vietiniame įrenginyje." @@ -1990,7 +1990,7 @@ msgstr "apklausa" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "\"redirect_uri\" reikalingas, kai roboto aprėptis nėra vienintelė aprėptis." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Daugkartinio naudojimo komponentas tuščioms būsenoms, klaidoms ir būsenos pranešimams." @@ -3891,7 +3891,7 @@ msgstr "Programos" msgid "Arabic" msgstr "arabų" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Archyvuoti" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Automatinis slinkimas" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Yra" @@ -5243,26 +5243,6 @@ msgstr "Sulieti" msgid "Blur strength" msgstr "Fono suliejimo stiprumas" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Pagrindinis tekstas" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Paryškintasis" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Paryškinta antraštė" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Paryškintas pavadinimas" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Mygtukų variantai" msgid "Button with context menu" msgstr "Mygtukas su kontekstiniu meniu" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Mygtukai" @@ -5989,11 +5969,6 @@ msgstr "Nepavyko įdiegti lipdukų paketo" msgid "Captcha verification failed. Try again." msgstr "Nepavyko patvirtinti \"Captcha\". Bandykite dar kartą." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Antraštė" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Išvalyti visus aktyvius pakeitimus" msgid "Clear all attachment mocks" msgstr "Išvalyti visus priedų maketus" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Išvalyti visus prieigos rakto perrašymus" @@ -7215,7 +7190,7 @@ msgstr "Išvalyti šio priedo maketą" msgid "Clear nickname" msgstr "Išvalyti slapyvardį" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Išvalyti pakeitimus" @@ -7299,7 +7274,7 @@ msgstr "Išvalė temą." msgid "Clearing trusted domains..." msgstr "Valomi patikimi domenai..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Išvalo greitąjį CSS, importuotas temas, įkeltus išteklius ir vietines failų nuorodas šiame įrenginyje." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Spustelėkite, kad atsiimtumėte dovaną!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Spustelėkite, kad nukopijuotumėte" @@ -8825,7 +8800,7 @@ msgstr "Kopijuoti kvietimo nuorodą" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Kopijuoti nuorodą" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Nepavyko pakeisti atsiskaitymo ciklo" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Nepavyko patikrinti naujinių" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Nepavyko ištrinti jūsų žinučių" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Nepavyko atsisiųsti darbalaukio naujinimo" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Nepavyko pradėti ryšio" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Nepavyko paleisti darbalaukio naujinimo" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Pavojaus mygtukas paspaustas." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Numatytoji reikšmė mobiliajame įrenginyje yra išjungta, siekiant tau #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Jūsų žinutės ištrintos." msgid "Deleted." msgstr "Ištrinta." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Subtilus ir lengvas šriftas" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Galimas darbalaukio naujinimas. Pasirinkite „Linux“ paketą." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Darbalaukio naujinimas paruoštas" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Darbalaukio versija {version} buvo atsisiųsta. Norėdami užbaigti diegimą, paleiskite iš naujo {productName}." @@ -11753,11 +11723,9 @@ msgstr "Atmesti paminėjimą" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Dėl suaugusiesiems skirto turinio įstatymų, galiojančių regione „{regionName}\", ši medija nepasiekiama jūsų dabartiniame regione." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Dublikuoti" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Redaguoti profilio aprašą" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Redaguojamas tekstas" @@ -13001,7 +12969,7 @@ msgstr "Įgalinti priedų galiojimo laiko nustatymą" msgid "Enable audio" msgstr "Įjungti garsą" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Įjungti beta funkciją" @@ -13038,7 +13006,7 @@ msgstr "Įjungti kūrėjo režimą" msgid "Enable email delivery" msgstr "Įgalinti el. pašto pristatymą" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Įjungti papildomą parinktį" @@ -13660,7 +13628,7 @@ msgstr "Klaida" msgid "error code {code}" msgstr "klaidos kodas {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Klaida atvaizduojant turinį" @@ -14095,11 +14063,6 @@ msgstr "Išorinės nuorodos gali būti pavojingos. Būkite atsargūs." msgid "Extra large" msgstr "Itin didelis" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Ypač šviesus" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Pirmas paspaudimas" msgid "First click pass-through when unfocused" msgstr "Pirmas paspaudimas pereina, kai neaktyvus" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Pirmas pasirinkimas" @@ -14917,10 +14880,6 @@ msgstr "Pagal pagrindinį • {effectiveValue}%" msgid "Font" msgstr "Šriftas" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Šrifto svoriai" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "Nuo {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "iš <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Pagrindiniai" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Sugeneruokite bendrinamą nuorodą arba nukopijuokite sujungtą tinkintą CSS." @@ -15481,11 +15440,6 @@ msgstr "Generuoti naują kodą" msgid "Generating code…" msgstr "Generuojamas kodas…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Švelnus ir erdvus teksto rodymas" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Jis" msgid "Header" msgstr "Antraštė" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Antraštė" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Indeksuojamas kanalas" msgid "Indicator" msgstr "Indikatorius" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indikatoriai ir būsena" @@ -17557,7 +17506,7 @@ msgstr "Įvesties būsenos" msgid "Input volume" msgstr "Įvesties garsumas" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Įvestys ir tekstas" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Įdiegti lipdukų paketą" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Įdiegta" @@ -18094,15 +18043,6 @@ msgstr "Kol kas ramu..." msgid "Italian" msgstr "italų" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Kursyvas" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Pasvirasis šriftas (demonstracija)" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Kalba" msgid "Language settings" msgstr "Kalbos nustatymai" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Kalbos palaikymas" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Kalbos" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Didelis" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Visam laikui {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Šviesi" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "„Linux“ numatytasis" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux paketas" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Pažymėti viršutinį gautųjų kanalą kaip perskaitytą" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "\"Markdown\" formatavimas" @@ -19945,10 +19877,8 @@ msgstr "Medijos dydis" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Vidutinis" @@ -20820,7 +20750,7 @@ msgstr "Daugiau" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Daugiau veiksmų" @@ -20993,10 +20923,6 @@ msgstr "Dviejų veiksnių" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Daugiakalbis turinys" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Nauji naudotojai šiuo metu negali prisijungti. Vis tiek galite susikurti paskyrą arba prisijungti, o tada bandyti dar kartą naudodami šią nuorodą." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Nauja versija" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Nerasta jaustukų, atitinkančių jūsų paiešką." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Nėra jaustukų, atitinkančių paiešką" @@ -22363,11 +22289,6 @@ msgstr "Nėra" msgid "None (normal behavior)" msgstr "Nėra (įprastas elgesys)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Įprastas" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Šį pranešimą matote tik jūs. <0>Atmesti" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Neskaidrumas" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Atidaryti datos parinkiklį" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Atidaryti darbalaukio atsisiuntimus" @@ -23165,6 +23086,11 @@ msgstr "Atidaryti greitąjį perjungiklį" msgid "Open settings" msgstr "Atidaryti nustatymus" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Atidaryti programų centrą" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Operacinė sistema" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Įjunkite eksperimentines bendrų ir kanalų nenumatytų pranešimų atvaizdavimo valdymo funkcijas" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimizuota ilgiems skaitymo fragmentams" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Optimizuojama kamera..." @@ -23483,7 +23404,7 @@ msgstr "Grąžinimo laikotarpis pasibaigęs" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Persidengiančios avatarų grupės, rodančios kelis naudotojus su automatiniu perpildymo skaičiumi." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Uždėjimai ir meniu" @@ -23886,11 +23807,6 @@ msgstr "Garsumo lygis" msgid "Per-window audio isn't available on this build of macOS." msgstr "Garso bendrinimas atskiruose languose negalimas šioje \"macOS\" versijoje." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Puikiai tinka kasdieniam turiniui" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Padėtis" msgid "Power saving" msgstr "Energijos taupymas" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Galingas ir patrauklus dėmesiui" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Pirminis (išjungtas)" msgid "Primary accent color" msgstr "Pagrindinė akcento spalva" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Pagrindinis veiksmas" @@ -25724,11 +25635,6 @@ msgstr "Registracija" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Registracija šiuo metu uždaryta. Norėdami sukurti paskyrą, naudokite administratoriaus suteiktą registracijos nuorodą." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Įprastas" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Įprastas mygtukas" @@ -26198,7 +26104,7 @@ msgstr "Pašalintas naudotojų limitas." msgid "Removed timeout from {0}" msgstr "Pašalinta laiko apribojimas iš {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Pašalina visus kintamųjų perrašymus, bet palieka jūsų biblioteką ir išteklius nepaliestus." @@ -26703,7 +26609,7 @@ msgstr "Iš naujo nustatyti programos duomenis" msgid "Reset app data and restart" msgstr "Iš naujo nustatyti programos duomenis ir paleisti iš naujo" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Iš naujo nustatyti pasirinktinės temos duomenis" @@ -26714,7 +26620,7 @@ msgstr "Atkurti pasirinktinės temos duomenis?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Iš naujo nustatyti duomenis" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Iš naujo paleisti \"{appName}\"" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Paleisti iš naujo {productName}" @@ -28030,7 +27936,7 @@ msgstr "Ieškoma" msgid "Searching people..." msgstr "Ieškoma žmonių..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Antras pasirinkimas" @@ -28047,7 +27953,7 @@ msgstr "Antrinis (išjungtas)" msgid "Secondary accent color" msgstr "Antrinė akcento spalva" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Antrinis veiksmas" @@ -28339,7 +28245,7 @@ msgstr "Pasirinkta: {0}" msgid "Selection: {0} (max {1})" msgstr "Pasirinkta: {0} (daugiausia {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Pasirinkimai" @@ -28369,16 +28275,6 @@ msgstr "Savęs talpinimo režimo nepaisymas" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Pinigų grąžinimas savitarnos būdu galimas per 3 dienas nuo apmokėjimo, kartą per 30 dienų. Grąžinus pinigus už prenumeratą, ji atšaukiama. Pirkėjai iš ES / EEE atsisako 14 dienų atsisakymo teisės atsiskaitydami, kad galėtų nedelsiant pasiekti turinį. Naudokite pinigų grąžinimo mygtuką programėlėje, o ne atšaukimą. Atšaukimai gali visam laikui apriboti jūsų paskyrą. \"Stripe\" saugiai tvarko mokėjimus. Mes niekada nematome viso jūsų kortelės numerio." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Pusiau paryškintas" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Pusiau paryškintas didelis" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Nustato kiekvieno garso efekto lygį. Atskiri garso nustatymai nepaiso #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Nustatymai" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Keli žmonės rašo..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Bendrinti" @@ -29002,7 +28898,7 @@ msgstr "Bendrinti" msgid "Share action." msgstr "Bendrinti veiksmą." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Bendrinti aktyvią pasirinktinę temą" @@ -29035,7 +28931,7 @@ msgstr "Bendrinti šaltinį" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Dovanodami prenumeratą, pasidalykite „{premiumProductName}\" patirtimi su draugais." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Bendrinti temą" @@ -29963,11 +29859,6 @@ msgstr "Slankiklis su žingsnio reikšmėmis" msgid "Sliders" msgstr "Slankikliai" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Šiek tiek paryškintas" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Šmeižtas, nužmoginantis žodynas ar išpuoliai prieš saugomas grupes." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Mažas" @@ -30161,11 +30050,6 @@ msgstr "Fiksuojama kas 5." msgid "Social" msgstr "Socialiniai tinklai" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Švelnus ir lengvas skaitymas" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Būsenos indikatoriai" msgid "Status page" msgstr "Būsenos puslapis" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Būsenos parinktys" @@ -31291,15 +31175,6 @@ msgstr "„Stripe\" pranešė apie kortelę, išduotą šalyje „{countryName}\ msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Gera kokybė, vidutinės procesoriaus sąnaudos. Geras \"Chromium\" atsarginis variantas ekrano bendrinimui." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Stipri vizualinė hierarchija" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Stiliaus variantai" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Prenumeratos scenarijai" msgid "Subtext" msgstr "Papildomas tekstas" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Paantraštė" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Išbandykite URL išskleidimą ir atvaizduotus įterpimus" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Tekstas" @@ -31973,6 +31841,10 @@ msgstr "Tekstiniai kanalai" msgid "Text formatting" msgstr "Teksto formatavimas" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Tekstas bus rodomas su pilkos spalvos antialiasingu vietoj ClearType, kai įjungtas skaidrumas, todėl atrodys švelnesnis." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Ieškoma bendruomenė galėjo būti ištrinta arba neturite prieigos prie jos." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Nepavyko atsisiųsti darbalaukio naujinimo. Bandykite dar kartą paspaudę naujinimo mygtuką, kai ryšys bus stabilus." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Darbalaukio atnaujinimas buvo atsisiųstas. Norėdami užbaigti diegimą, paleiskite iš naujo {productName}." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Atsisiųstas failas išsaugotas jūsų kompiuteryje. Įdiekite jį naudodami įprastą paketų tvarkyklę." @@ -32442,12 +32314,7 @@ msgstr "Jie gali nepriimti iš jūsų žinučių arba jūs nebesate bendroje ben msgid "They're not accepting friend requests right now." msgstr "Šiuo metu jie nepriima draugystės užklausų." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Plonas" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Trečias pasirinkimas" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Ši žinutė sulaukė daug reakcijų. Kad galėtumėte pridėti daugiau, kai kurias reakcijas reikia pašalinti." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Tai yra pavyzdinis tekstas teksto laukelyje." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Tai yra pirmojo pasirinkimo aprašymas" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Tai antrasis pasirinkimo aprašymas" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Tai trečiojo pasirinkimo aprašymas" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Tai pašalina visus pasirinktinius sparčiuosius klavišus ir iš naujo įgalina visus integruotus sparčiuosius klavišus. Šio veiksmo anuliuoti negalima." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Ši nuoroda nebegalioja. Nuorodos galioja 24 valandas. Prašykite naujos." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Ši naujo slaptažodžio nuoroda nebegalioja. Nuorodos galioja 1 valandą. Paprašykite naujos." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Šis jungiklis išjungtas ir negali būti perjungtas" msgid "This switch is disabled in the checked state" msgstr "Šis jungiklis išjungtas, kai pažymėtas" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Šis tekstas demonstruoja paryškinto antraštės stilių" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Šis tekstas demonstruoja paryškinto pavadinimo stilių" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Šis tekstas demonstruoja pasvirąjį šriftą" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Šis tekstas rodo didelį pusiau paryškintą stilių" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Šis tekstas rodo įprastą stilių" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Šis tekstas demonstruoja pusiau paryškintą stilių" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Šis teksto laukas automatiškai išsiplečia nuo 4 iki 12 eilučių, kai rašote." @@ -33417,11 +33254,6 @@ msgstr "Laiko juosta" msgid "Tip" msgstr "Patarimas" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Pavadinimas" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Įveskite spalvą (šešioliktainis, rgb(), hsl arba pavadinimas) arba n msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Įveskite spalvą (šešioliktainis, rgb(), hsl() arba pavadinimas) arba naudokite parinkiklį." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Šrifto dydis" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Tik rašymo indikatorius" msgid "Typing state" msgstr "Rašymo būsena" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Tipografija" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Tipografijos skalės demonstracija" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Universalus atsarginis variantas. Žemiausia kokybė, bet veikia visur." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Nežinoma" @@ -34649,8 +34469,8 @@ msgstr "Neribotas jaustukų skaičius" msgid "Unlimited stickers" msgstr "Neribotas lipdukų skaičius" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Atrakinkite {lockedEmojiCount, plural, one {# pasirinktinį jaustuką} other {# pasirinktinius jaustukus}} iš {communityCount, plural, one {# bendruomenės} other {# bendruomenių}} su \"{PREMIUM_PRODUCT_NAME}\"." @@ -34796,7 +34616,7 @@ msgstr "Nepažymėtas kanalas" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Nepažymėta grupė" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Atnaujinome savo taisykles. Peržiūrėkite ir sutikite su jomis, kad galėtumėte tęsti." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Žiniatinklio versija {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Redaguojate savo profilio nustatymus šiai bendruomenei. Šis profilis bus matomas tik šioje bendruomenėje ir pakeis jūsų visuotinį profilį." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Dabar esate kūrėjas!" diff --git a/fluxer_app/src/features/i18n/locales/nl/messages.po b/fluxer_app/src/features/i18n/locales/nl/messages.po index 4ebc9a3c7..be86424f3 100644 --- a/fluxer_app/src/features/i18n/locales/nl/messages.po +++ b/fluxer_app/src/features/i18n/locales/nl/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} desktop {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName} communityteam" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} kon geen verbinding maken met de updateservice. Controleer je internetverbinding en probeer het opnieuw." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} kon niet opnieuw worden gestart om de gedownloade update te installeren. Probeer het opnieuw via de knop 'Bijwerken'." @@ -1210,8 +1210,8 @@ msgstr "{productName} woordmerk" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} online" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Groep van {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "een hostnaam, bijv. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Er is een Linux-desktopupdate beschikbaar. Kies het pakketformaat voor dit systeem, en {productName} zal het lokaal opslaan." @@ -1990,7 +1990,7 @@ msgstr "een peiling" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Een redirect_uri is vereist wanneer de bot-scope niet de enige scope is." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Een herbruikbare component voor lege statussen, fouten en statusberichten." @@ -3891,7 +3891,7 @@ msgstr "Apps" msgid "Arabic" msgstr "Arabisch" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Archiveren" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Automatisch scrollen" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Beschikbaar" @@ -5243,26 +5243,6 @@ msgstr "Vervagen" msgid "Blur strength" msgstr "Sterkte van de achtergrondvervaging" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Tekst" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Vet" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Vetgedrukte kop" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Vetgedrukte titel" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Knopvarianten" msgid "Button with context menu" msgstr "Knop met contextmenu" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Knoppen" @@ -5989,11 +5969,6 @@ msgstr "Kan stickerpakket niet installeren" msgid "Captcha verification failed. Try again." msgstr "Captcha-verificatie mislukt. Probeer het opnieuw." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Bijschrift" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Alle actieve overschrijvingen wissen" msgid "Clear all attachment mocks" msgstr "Alle bijlagen wissen" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Alle token-overschrijvingen wissen" @@ -7215,7 +7190,7 @@ msgstr "Mock voor deze bijlage wissen" msgid "Clear nickname" msgstr "Bijnaam wissen" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Overschrijvingen wissen" @@ -7299,7 +7274,7 @@ msgstr "Heeft het onderwerp gewist." msgid "Clearing trusted domains..." msgstr "Vertrouwde domeinen wissen..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Wist snelle CSS, geïmporteerde thema's, geüploade assets en lokale bestandsreferenties op dit apparaat." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Tik om je cadeau te claimen!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Tik om te kopiëren" @@ -8825,7 +8800,7 @@ msgstr "Uitnodigings-URL kopiëren" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Link kopiëren" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Je factureringscyclus kon niet worden gewijzigd" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Kan niet controleren op updates" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Je berichten konden niet worden verwijderd" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Kon de desktopupdate niet downloaden" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Kan de verbinding niet starten" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Kon de desktopupdate niet starten" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Gevaarknop is aangeklikt." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Standaard uitgeschakeld op mobiel om batterij en data te besparen." #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Je berichten zijn verwijderd." msgid "Deleted." msgstr "Verwijderd." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Fijne en lichte typografie" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Desktopupdate beschikbaar. Kies een Linux-pakket." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Desktopupdate klaar" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "De desktopversie {version} is gedownload. Herstart {productName} om de installatie te voltooien." @@ -11753,11 +11723,9 @@ msgstr "Vermelding negeren" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Vanwege wetgeving voor inhoud voor volwassenen in {regionName} is deze media niet beschikbaar in je huidige regio." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Dupliceren" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Je profielinfo bewerken" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Bewerkbare tekst" @@ -13001,7 +12969,7 @@ msgstr "Vervaldatum voor bijlagen inschakelen" msgid "Enable audio" msgstr "Audio inschakelen" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Bètafunctie inschakelen" @@ -13038,7 +13006,7 @@ msgstr "Ontwikkelaarsmodus inschakelen" msgid "Enable email delivery" msgstr "E-mailbezorging inschakelen" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Extra optie inschakelen" @@ -13660,7 +13628,7 @@ msgstr "Fout" msgid "error code {code}" msgstr "foutcode {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Fout bij het weergeven van inhoud" @@ -14095,11 +14063,6 @@ msgstr "Externe links kunnen gevaarlijk zijn. Wees voorzichtig." msgid "Extra large" msgstr "Extra groot" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Extra licht" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Eerste klik" msgid "First click pass-through when unfocused" msgstr "Eerste klik doorgeven wanneer niet actief" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Eerste optie" @@ -14917,10 +14880,6 @@ msgstr "Volgen van hoofd • {effectiveValue}%" msgid "Font" msgstr "Lettertype" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Letterdiktes" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "Vanaf {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "van <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Algemeen" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Genereer een deelbare link of kopieer je gecombineerde aangepaste CSS." @@ -15481,11 +15440,6 @@ msgstr "Nieuwe code genereren" msgid "Generating code…" msgstr "Code genereren…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Zachte en luchtige tekstweergave" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Hé" msgid "Header" msgstr "Koptekst" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Koptekst" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Kanaal indexeren" msgid "Indicator" msgstr "Indicator" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indicatoren en status" @@ -17557,7 +17506,7 @@ msgstr "Invoervelden" msgid "Input volume" msgstr "Invoervolume" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Invoer en tekst" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Stickerpakket installeren" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Geïnstalleerd" @@ -18094,15 +18043,6 @@ msgstr "Het is nu stil..." msgid "Italian" msgstr "Italiaans" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Cursief" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Voorbeeld van cursieve stijl" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Taal" msgid "Language settings" msgstr "Taalinstellingen" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Taalondersteuning" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Talen" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Groot" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Levenslang {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Licht" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux standaard" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux-pakket" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Markeer bovenste inboxkanaal als gelezen" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Mediagrootte" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Gemiddeld" @@ -20820,7 +20750,7 @@ msgstr "Meer" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Meer opties" @@ -20993,10 +20923,6 @@ msgstr "Meervoudige verificatie" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Meertalige content" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Nieuwe gebruikers kunnen nu niet deelnemen. Je kunt nog steeds een account aanmaken of inloggen en deze link later opnieuw proberen." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Nieuwe versie" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Geen emoji's gevonden die overeenkomen met je zoekopdracht." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Geen emoji's gevonden die overeenkomen met je zoekopdracht" @@ -22363,11 +22289,6 @@ msgstr "Geen" msgid "None (normal behavior)" msgstr "Geen (normaal gedrag)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normaal" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Alleen jij kunt dit bericht zien. <0>Verbergen" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Dekking" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Datumkiezer openen" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Downloads voor desktop openen" @@ -23165,6 +23086,11 @@ msgstr "Snelle wisselaar openen" msgid "Open settings" msgstr "Instellingen openen" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Open softwarecentrum" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Besturingssysteem" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Schakel experimentele instellingen in voor ongelezen badges per community en per kanaal" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Geoptimaliseerd voor langere teksten" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Camera optimaliseren..." @@ -23483,7 +23404,7 @@ msgstr "Buiten het restitutievenster" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Overlappende avatargroepen die meerdere gebruikers tonen met automatische overloopaantallen." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Overlays en menu's" @@ -23886,11 +23807,6 @@ msgstr "Volume per geluid" msgid "Per-window audio isn't available on this build of macOS." msgstr "Audio per venster is niet beschikbaar in deze macOS-versie." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Perfect voor alledaagse content" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Functie" msgid "Power saving" msgstr "Batterijbesparing" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Krachtig en opvallend" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Primair (uitgeschakeld)" msgid "Primary accent color" msgstr "Hoofdkleur accent" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Primaire actie" @@ -25724,11 +25635,6 @@ msgstr "Registratie" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Registratie is momenteel gesloten. Gebruik een registratielink van een beheerder om een account aan te maken." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Normaal" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Normale knop" @@ -26198,7 +26104,7 @@ msgstr "De gebruikerslimiet is verwijderd." msgid "Removed timeout from {0}" msgstr "Time-out verwijderd voor {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Verwijdert elke variabele-override, maar behoudt je bibliotheek en assets." @@ -26703,7 +26609,7 @@ msgstr "Appgegevens resetten" msgid "Reset app data and restart" msgstr "Appgegevens wissen en opnieuw opstarten" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Aangepaste themagegevens resetten" @@ -26714,7 +26620,7 @@ msgstr "Aangepaste themagegevens resetten?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Gegevens herstellen" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Herstart {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Herstart {productName}" @@ -28030,7 +27936,7 @@ msgstr "Zoeken" msgid "Searching people..." msgstr "Personen zoeken..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Tweede optie" @@ -28047,7 +27953,7 @@ msgstr "Secundair (uitgeschakeld)" msgid "Secondary accent color" msgstr "Secundaire accentkleur" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Secundaire actie" @@ -28339,7 +28245,7 @@ msgstr "Selectie: {0}" msgid "Selection: {0} (max {1})" msgstr "Selectie: {0} (max. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Selecties" @@ -28369,16 +28275,6 @@ msgstr "Overschrijving zelf-gehoste modus" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Zelfservice-terugbetalingen zijn mogelijk binnen 3 dagen na betaling, eens per 30 dagen. Als je een abonnement terugbetaalt, wordt het geannuleerd. Kopers uit de EU/EER doen bij het afrekenen afstand van het 14-daagse herroepingsrecht om direct toegang te krijgen tot de inhoud. Gebruik de in-app terugbetalingsknop in plaats van een chargeback. Chargebacks kunnen je account permanent beperken. Stripe verwerkt betalingen veilig. Wij zien nooit je volledige kaartnummer." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Semi vet" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Semi-vet groot" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Stelt het volume in voor elk geluidseffect. Individuele geluidsinstellin #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Instellingen" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Verschillende mensen typen..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Delen" @@ -29002,7 +28898,7 @@ msgstr "Delen" msgid "Share action." msgstr "Actie delen." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Actief aangepast thema delen" @@ -29035,7 +28931,7 @@ msgstr "Bron delen" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Deel de {premiumProductName}-ervaring met je vrienden door een cadeau-abonnement te kopen." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Thema delen" @@ -29963,11 +29859,6 @@ msgstr "Schuifregelaar met stapwaarden" msgid "Sliders" msgstr "Schuifregelaars" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Iets vetter" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Scheldwoorden, ontmenselijkende taal of aanvallen op beschermde groepen." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Klein" @@ -30161,11 +30050,6 @@ msgstr "Springt naar stappen van 5." msgid "Social" msgstr "Sociaal" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Zachte en prettige leeservaring" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Statusindicatoren" msgid "Status page" msgstr "Statuspagina" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Statusbord" @@ -31291,15 +31175,6 @@ msgstr "Stripe meldde een kaart die is uitgegeven in {countryName}. Om in deze l msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Goede kwaliteit met gemiddeld CPU-gebruik. Goede Chromium-terugval voor scherm delen." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Sterke visuele hiërarchie" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Stijlvariaties" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Abonnementsscenario's" msgid "Subtext" msgstr "Subtekst" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Ondertitel" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Test URL-unfurls en weergegeven embeds" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Tekst" @@ -31973,6 +31841,10 @@ msgstr "Tekstkanalen" msgid "Text formatting" msgstr "Tekstopmaak" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Tekst wordt weergegeven met grijswaarden antialiasing in plaats van ClearType wanneer transparantie is ingeschakeld, dus het ziet er zachter uit." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "De community die je zoekt is mogelijk verwijderd of je hebt er geen toegang toe." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "De desktopupdate kon niet worden gedownload. Probeer het opnieuw via de updateknop wanneer je verbinding stabiel is." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "De desktopupdate is gedownload. Herstart {productName} om de installatie te voltooien." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Het gedownloade bestand is opgeslagen op je computer. Installeer het met je normale pakketbeheerder." @@ -32442,12 +32314,7 @@ msgstr "Ze accepteren mogelijk geen berichten van je, of jullie delen geen commu msgid "They're not accepting friend requests right now." msgstr "Ze accepteren momenteel geen vriendschapsverzoeken." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Dun" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Derde optie" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Dit is een zwaar bericht. Verwijder eerst wat reacties voordat je er meer kunt toevoegen." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Dit is voorbeeldtekst in het tekstvak." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Dit is de beschrijving van de eerste optie" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Dit is de beschrijving van de tweede optie" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Dit is de beschrijving van de derde optie" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Hiermee worden alle aangepaste sneltoetsen verwijderd en alle ingebouwde sneltoetsen opnieuw ingeschakeld. Dit kan niet ongedaan worden gemaakt." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Deze resetlink is verlopen. Resetlinks zijn 24 uur geldig. Vraag een nieuwe aan." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Deze resetlink is verlopen. Resetlinks zijn 1 uur geldig. Vraag er alstublieft een nieuwe aan." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Deze schakelaar is uitgeschakeld en kan niet worden omgezet" msgid "This switch is disabled in the checked state" msgstr "Deze schakelaar is uitgeschakeld in de aangevinkte status" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Deze tekst toont de opmaak van vetgedrukte koppen" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Deze tekst toont de opmaak van een vetgedrukte titel" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Deze tekst toont cursieve opmaak" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Dit is een voorbeeld van grote, semi-vette tekst" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Dit is een voorbeeld van normale tekst" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Deze tekst toont semi-vetgedrukte opmaak" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Dit tekstvak wordt automatisch groter (4 tot 12 regels) terwijl je typt." @@ -33417,11 +33254,6 @@ msgstr "Tijdzone" msgid "Tip" msgstr "Tip" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Titel" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Typ een kleur (hex, rgb(), hsl of naam), of gebruik de kiezer." msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Typ een kleur (hex, rgb(), hsl() of naam) of gebruik de kiezer." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Tekstschaal" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Alleen type-indicator" msgid "Typing state" msgstr "Typstatus" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Typografie" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Demonstratie van typografische schaal" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Universele terugval. Laagste kwaliteit, maar werkt overal." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Onbekend" @@ -34649,8 +34469,8 @@ msgstr "Onbeperkt aantal emoji" msgid "Unlimited stickers" msgstr "Onbeperkt aantal stickers" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Ontgrendel {lockedEmojiCount, plural, one {# aangepaste emoji} other {# aangepaste emoji's}} van {communityCount, plural, one {# community} other {# communities}} met {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Naamloos kanaal" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Naamloze groep" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "We hebben ons beleid bijgewerkt. Lees en accepteer het om door te gaan." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Je bewerkt je profiel voor deze community. Dit profiel is alleen zichtbaar in deze community en overschrijft je algemene profiel." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Je bent nu een ontwikkelaar!" diff --git a/fluxer_app/src/features/i18n/locales/no/messages.po b/fluxer_app/src/features/i18n/locales/no/messages.po index ab6b5c842..9685732d4 100644 --- a/fluxer_app/src/features/i18n/locales/no/messages.po +++ b/fluxer_app/src/features/i18n/locales/no/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} skrivebord {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName}-fellesskapsteam" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} kunne ikke kontakte oppdateringstjenesten. Sjekk tilkoblingen og prøv igjen." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "Kunne ikke starte {productName} på nytt med den nedlastede oppdateringen. Prøv igjen fra oppdateringsknappen." @@ -1210,8 +1210,8 @@ msgstr "{productName} ordmerke" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} pålogget" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "{resolvedName}s gruppe" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "et vertsnavn, f.eks. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "En Linux-oppdatering er tilgjengelig. Velg pakkeformatet for dette systemet, så vil {productName} lagre det lokalt." @@ -1990,7 +1990,7 @@ msgstr "en avstemning" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "En redirect_uri er påkrevd når bot-omfanget ikke er det eneste omfanget." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "En gjenbrukbar komponent for tomme tilstander, feil og statusmeldinger." @@ -3891,7 +3891,7 @@ msgstr "Apper" msgid "Arabic" msgstr "Arabisk" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Arkiver" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Automatisk rulling" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Tilgjengelig" @@ -5243,26 +5243,6 @@ msgstr "Gjør uskarp" msgid "Blur strength" msgstr "Uskarphetsstyrke" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Brødtekst" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Fet" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Fet overskrift" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Fet tittel" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Knappevarianter" msgid "Button with context menu" msgstr "Knapp med kontekstmeny" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Knapper" @@ -5989,11 +5969,6 @@ msgstr "Kan ikke installere klistremerkepakken" msgid "Captcha verification failed. Try again." msgstr "Captcha-verifisering mislyktes. Prøv igjen." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Bildetekst" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Fjern alle aktive overstyringer" msgid "Clear all attachment mocks" msgstr "Fjern alle vedleggsutkast" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Fjern alle token-overstyringer" @@ -7215,7 +7190,7 @@ msgstr "Fjern testdata for dette vedlegget" msgid "Clear nickname" msgstr "Fjern kallenavn" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Fjern overstyringer" @@ -7299,7 +7274,7 @@ msgstr "Tømte emnet." msgid "Clearing trusted domains..." msgstr "Tømmer klarerte domener ..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Sletter rask CSS, importerte temaer, opplastede ressurser og lokale filreferanser på denne enheten." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Trykk for å hente gaven din!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Trykk for å kopiere" @@ -8825,7 +8800,7 @@ msgstr "Kopier invitasjonslenke" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Kopier lenke" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Kunne ikke endre faktureringssyklusen din" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Kunne ikke se etter oppdateringer" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Kunne ikke slette meldingene dine" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Kunne ikke laste ned skrivebordsoppdateringen" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Kunne ikke starte tilkoblingen" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Kunne ikke starte skrivebordsoppdateringen" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Farekknapp klikket." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Standard er av på mobil for å spare batteri og data." #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Meldingene dine er slettet." msgid "Deleted." msgstr "Slettet." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Delikat og lett typografi" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Skrivebordsoppdatering tilgjengelig. Velg en Linux-pakke." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Skrivebordsoppdatering klar" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Skrivebordsversjonen {version} er lastet ned. Start {productName} på nytt for å fullføre installasjonen." @@ -11753,11 +11723,9 @@ msgstr "Avvis omtale" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "På grunn av lover om voksent innhold i {regionName} er dette mediet ikke tilgjengelig fra din nåværende region." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Dupliser" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Rediger profilen din" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Redigerbar tekst" @@ -13001,7 +12969,7 @@ msgstr "Aktiver utløp for vedlegg" msgid "Enable audio" msgstr "Aktiver lyd" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Aktiver betafunksjon" @@ -13038,7 +13006,7 @@ msgstr "Aktiver utviklermodus" msgid "Enable email delivery" msgstr "Aktiver e-postlevering" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Aktiver ekstra alternativ" @@ -13660,7 +13628,7 @@ msgstr "Feil" msgid "error code {code}" msgstr "feilkode {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Feil ved visning av innhold" @@ -14095,11 +14063,6 @@ msgstr "Eksterne lenker kan være farlige. Vær forsiktig." msgid "Extra large" msgstr "Ekstra stor" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Ekstra lett" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Første klikk" msgid "First click pass-through when unfocused" msgstr "Første klikk går gjennom når inaktiv" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Første alternativ" @@ -14917,10 +14880,6 @@ msgstr "Følger hovedinnstilling • {effectiveValue}%" msgid "Font" msgstr "Skrift" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Skriftvekter" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "Fra {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "fra <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Generelt" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Generer en delbar lenke eller kopier din kombinerte egendefinerte CSS." @@ -15481,11 +15440,6 @@ msgstr "Generer ny kode" msgid "Generating code…" msgstr "Genererer kode …" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Myk og luftig tekstvisning" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Han" msgid "Header" msgstr "Overskrift" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Overskrift" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Indekserer kanal" msgid "Indicator" msgstr "Indikator" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indikatorer og status" @@ -17557,7 +17506,7 @@ msgstr "Inndatastatus" msgid "Input volume" msgstr "Inndatavolum" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Inndata og tekst" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Installer klistremerkepakke" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Installert" @@ -18094,15 +18043,6 @@ msgstr "Det er stille for øyeblikket ..." msgid "Italian" msgstr "italiensk" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Kursiv" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Demonstrasjon av kursiv stil" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Språk" msgid "Language settings" msgstr "Språkinnstillinger" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Språkstøtte" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Språk" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Stor" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Livstid {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Lys" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux – standard" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux-pakke" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Merk øverste innbokskanal som lest" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Mediastørrelse" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Middels" @@ -20820,7 +20750,7 @@ msgstr "Mer" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Flere handlinger" @@ -20993,10 +20923,6 @@ msgstr "Tofaktorautentisering" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Flerspråklig innhold" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Nye brukere kan ikke bli med akkurat nå. Du kan fortsatt opprette en konto eller logge på, og deretter prøve denne lenken igjen senere." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Ny versjon" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Ingen emojier samsvarer med søket ditt." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Ingen emojier samsvarer med søket" @@ -22363,11 +22289,6 @@ msgstr "Ingen" msgid "None (normal behavior)" msgstr "Ingen (normal oppførsel)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normal" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Bare du kan se denne meldingen. <0>Lukk" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Gjennomsiktighet" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Åpne datovelger" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Åpne nedlastinger for datamaskin" @@ -23165,6 +23086,11 @@ msgstr "Åpne hurtigbytter" msgid "Open settings" msgstr "Åpne innstillinger" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Åpne programvaresenteret" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Operativsystem" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Aktiver eksperimentelle innstillinger for å vise antall uleste meldinger per kanal og fellesskap" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimalisert for lengre tekstpassasjer" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Optimaliserer kamera ..." @@ -23483,7 +23404,7 @@ msgstr "Utenfor refusjonsperioden" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Overlappende avatargrupper som viser flere brukere med automatisk overløpsteller." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Overlegg og menyer" @@ -23886,11 +23807,6 @@ msgstr "Volum per lyd" msgid "Per-window audio isn't available on this build of macOS." msgstr "Lyd per vindu er ikke tilgjengelig i denne macOS-versjonen." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Perfekt for hverdagsinnhold" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Stilling" msgid "Power saving" msgstr "Strømsparing" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Kraftig og iøynefallende" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Primær (deaktivert)" msgid "Primary accent color" msgstr "Primærfarge" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Hovedhandling" @@ -25724,11 +25635,6 @@ msgstr "Registrering" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Registrering er stengt for øyeblikket. Bruk en registreringslenke fra en administrator for å opprette en konto." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Vanlig" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Vanlig knapp" @@ -26198,7 +26104,7 @@ msgstr "Fjernet brukergrensen." msgid "Removed timeout from {0}" msgstr "Fjernet tidsavbrudd fra {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Fjerner alle overstyringer per variabel, men beholder biblioteket og ressursene dine intakte." @@ -26703,7 +26609,7 @@ msgstr "Tilbakestill appdata" msgid "Reset app data and restart" msgstr "Nullstill appdata og start på nytt" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Tilbakestill egendefinerte temadata" @@ -26714,7 +26620,7 @@ msgstr "Tilbakestille egendefinerte temadata?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Tilbakestill data" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Start {appName} på nytt" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Start {productName} på nytt" @@ -28030,7 +27936,7 @@ msgstr "Søker" msgid "Searching people..." msgstr "Søker etter personer ..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Andre alternativ" @@ -28047,7 +27953,7 @@ msgstr "Sekundær (deaktivert)" msgid "Secondary accent color" msgstr "Sekundær aksentfarge" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Sekundær handling" @@ -28339,7 +28245,7 @@ msgstr "Valg: {0}" msgid "Selection: {0} (max {1})" msgstr "Valg: {0} (maks {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Valg" @@ -28369,16 +28275,6 @@ msgstr "Tving selvbetjent modus" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Selvbetjent refusjon er tilgjengelig innen 3 dager etter betaling, én gang hver 30. dag. Refusjon av et abonnement kansellerer det. Kjøpere i EU/EØS fraskriver seg den 14-dagers angreretten ved utsjekk for å få umiddelbar tilgang til innhold. Bruk refusjonsknappen i appen i stedet for en tilbakeføring. Tilbakeføringer kan permanent begrense kontoen din. Stripe håndterer betaling sikkert. Vi ser aldri hele kortnummeret ditt." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Halvfet" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Halvfet stor" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Angir nivået for alle lydeffekter. Overstyringer per lyd ignorerer dett #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Innstillinger" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Flere skriver …" #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Del" @@ -29002,7 +28898,7 @@ msgstr "Del" msgid "Share action." msgstr "Del handling." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Del aktivt tilpasset tema" @@ -29035,7 +28931,7 @@ msgstr "Del kilde" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Del {premiumProductName}-opplevelsen med vennene dine ved å kjøpe et gaveabonnement." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Del tema" @@ -29963,11 +29859,6 @@ msgstr "Glidebryter med trinnverdier" msgid "Sliders" msgstr "Glidebrytere" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Litt fetere fremheving" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Slang, dehumaniserende språk eller angrep på beskyttede grupper." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Liten" @@ -30161,11 +30050,6 @@ msgstr "Fester til intervaller på 5." msgid "Social" msgstr "Sosialt" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Myk og lett leseropplevelse" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Statusindikatorer" msgid "Status page" msgstr "Statusside" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Statusfelt" @@ -31291,15 +31175,6 @@ msgstr "Stripe rapporterte et kort utstedt i {countryName}. For å betale i denn msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "God kvalitet med moderat CPU-bruk. God Chromium-reserve for skjermdeling." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Sterkt visuelt hierarki" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Stilvarianter" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Abonnementsscenarioer" msgid "Subtext" msgstr "Undertekst" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Undertittel" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Test URL-forhåndsvisninger og gjengitte innebygginger" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Tekst" @@ -31973,6 +31841,10 @@ msgstr "Tekstkanaler" msgid "Text formatting" msgstr "Tekstformatering" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Tekst gjengis med gråtoneskala-kantutjevning i stedet for ClearType mens gjennomsiktighet er aktivert, så den vil se mykere ut." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Fellesskapet du leter etter kan ha blitt slettet, eller du har kanskje ikke tilgang til det." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Skrivebordsoppdateringen kunne ikke lastes ned. Prøv igjen fra oppdateringsknappen når tilkoblingen din er stabil." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Skrivebordsversjonen er lastet ned. Start {productName} på nytt for å fullføre installasjonen." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Den nedlastede filen er lagret på datamaskinen din. Installer den med din vanlige pakkebehandler." @@ -32442,12 +32314,7 @@ msgstr "De godtar kanskje ikke meldinger fra deg, eller dere deler ikke lenger e msgid "They're not accepting friend requests right now." msgstr "De godtar ikke venneforespørsler akkurat nå." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Tynn" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Tredje alternativ" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Dette er en tung melding. Noen reaksjoner må fjernes før du kan legge til flere." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Dette er en eksempeltekst i tekstfeltet." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Dette er beskrivelsen av det første alternativet" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Dette er den andre valgmuligheten" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Dette er beskrivelsen for det tredje alternativet" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Dette fjerner alle egendefinerte snarveier og aktiverer alle innebygde snarveier på nytt. Dette kan ikke angres." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Denne tilbakestillingslenken har utløpt. Tilbakestillingslenker varer i 24 timer. Be om en ny." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Denne tilbakestillingslenken har utløpt. Tilbakestillingslenker varer i 1 time. Vennligst be om en ny." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Denne bryteren er deaktivert og kan ikke slås på eller av" msgid "This switch is disabled in the checked state" msgstr "Denne bryteren er deaktivert i avkrysset tilstand" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Denne teksten viser fet skriftstil for overskrifter" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Denne teksten viser fet tittelstil" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Denne teksten viser kursiv stil" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Denne teksten viser stor, halvfet skrift" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Denne teksten viser normal stil" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Denne teksten viser halvfet skrift" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Dette tekstfeltet utvides automatisk til mellom 4 og 12 rader mens du skriver." @@ -33417,11 +33254,6 @@ msgstr "Tidssone" msgid "Tip" msgstr "Tips" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Tittel" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Skriv inn en farge (heks, rgb(), hsl eller navn), eller bruk fargevelger msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Skriv inn en farge (hex, rgb(), hsl() eller navn) eller bruk fargevelgeren." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Tekststørrelse" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Kun skriveindikator" msgid "Typing state" msgstr "Skrivestatus" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Typografi" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Demonstrasjon av typografiskala" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Universell reserve. Lavest kvalitet, men fungerer overalt." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Ukjent" @@ -34649,8 +34469,8 @@ msgstr "Ubegrenset antall emojier" msgid "Unlimited stickers" msgstr "Ubegrenset antall klistremerker" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Lås opp {lockedEmojiCount, plural, one {# tilpasset emoji} other {# tilpassede emojier}} fra {communityCount, plural, one {# fellesskap} other {# fellesskap}} med {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Uten navn-kanal" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Navnløs gruppe" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Vi har oppdatert retningslinjene våre. Gå gjennom og godta dem for å fortsette." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Nett {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Du redigerer din fellesskapsprofil. Denne profilen vil kun være synlig i dette fellesskapet og vil overstyre din globale profil." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Du er nå en utvikler!" diff --git a/fluxer_app/src/features/i18n/locales/pl/messages.po b/fluxer_app/src/features/i18n/locales/pl/messages.po index 44851a677..ef2841584 100644 --- a/fluxer_app/src/features/i18n/locales/pl/messages.po +++ b/fluxer_app/src/features/i18n/locales/pl/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} Desktop {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Zespół społeczności {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} nie mógł nawiązać połączenia z serwerem aktualizacji. Sprawdź połączenie i spróbuj ponownie." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "Nie udało się uruchomić {productName} z pobraną aktualizacją. Spróbuj ponownie, klikając przycisk aktualizacji." @@ -1210,8 +1210,8 @@ msgstr "{productName} sygnatura" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "Web {releaseChannel} {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} online" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Grupa użytkownika {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "nazwa hosta, np. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Dostępna jest aktualizacja Fluxer dla systemu Linux. Wybierz format pakietu dla tego systemu, a {productName} zapisze go lokalnie." @@ -1990,7 +1990,7 @@ msgstr "ankieta" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Parametr \"redirect_uri\" jest wymagany, gdy zakres \"bot\" nie jest jedynym zakresem." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Komponent wielokrotnego użytku do pustych stanów, błędów i komunikatów o stanie." @@ -3891,7 +3891,7 @@ msgstr "Aplikacje" msgid "Arabic" msgstr "Arabski" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Archiwizuj" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Autoprzewijanie" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Dostępne" @@ -5243,26 +5243,6 @@ msgstr "Rozmycie" msgid "Blur strength" msgstr "Siła rozmycia" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Treść" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Pogrubienie" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Pogrubiony nagłówek" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Pogrubiony tytuł" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Warianty przycisków" msgid "Button with context menu" msgstr "Przycisk z menu kontekstowym" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Przyciski" @@ -5989,11 +5969,6 @@ msgstr "Nie można zainstalować pakietu naklejek" msgid "Captcha verification failed. Try again." msgstr "Weryfikacja captcha nie powiodła się. Spróbuj ponownie." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Podpis" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Wyczyść wszystkie aktywne zastąpienia" msgid "Clear all attachment mocks" msgstr "Wyczyść wszystkie makiety załączników" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Wyczyść wszystkie zastąpienia tokenów" @@ -7215,7 +7190,7 @@ msgstr "Wyczyść makietę dla tego załącznika" msgid "Clear nickname" msgstr "Wyczyść pseudonim" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Wyczyść zmiany" @@ -7299,7 +7274,7 @@ msgstr "Wyczyszczono temat." msgid "Clearing trusted domains..." msgstr "Czyszczenie zaufanych domen..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Czyści szybki CSS, zaimportowane motywy, przesłane zasoby i lokalne odniesienia do plików na tym urządzeniu." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Kliknij, aby odebrać prezent!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Kliknij, aby skopiować" @@ -8825,7 +8800,7 @@ msgstr "Kopiuj link z zaproszeniem" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Kopiuj link" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Nie udało się zmienić cyklu rozliczeniowego" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Nie udało się sprawdzić dostępności aktualizacji" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Nie udało się usunąć twoich wiadomości" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Nie udało się pobrać aktualizacji aplikacji komputerowej" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Nie udało się nawiązać połączenia" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Nie udało się uruchomić aktualizacji aplikacji komputerowej" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Kliknięto przycisk niebezpieczeństwa." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Domyślnie wyłączone na urządzeniach mobilnych, aby oszczędzać bate #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Twoje wiadomości zostały usunięte." msgid "Deleted." msgstr "Usunięto." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Delikatna i lekka typografia" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Dostępna aktualizacja aplikacji. Wybierz pakiet dla systemu Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Aktualizacja aplikacji desktopowej gotowa" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Wersja aplikacji na komputery stacjonarne {version} została pobrana. Uruchom ponownie {productName}, aby dokończyć instalację." @@ -11753,11 +11723,9 @@ msgstr "Odrzuć wzmiankę" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Ze względu na przepisy dotyczące treści dla dorosłych w regionie {regionName}, te multimedia nie są dostępne w Twojej bieżącej lokalizacji." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Duplikuj" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Edytuj swój opis profilu" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Edytowalny tekst" @@ -13001,7 +12969,7 @@ msgstr "Włącz wygasanie załączników" msgid "Enable audio" msgstr "Włącz dźwięk" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Włącz funkcję beta" @@ -13038,7 +13006,7 @@ msgstr "Włącz tryb programisty" msgid "Enable email delivery" msgstr "Włącz dostarczanie wiadomości e-mail" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Włącz dodatkową opcję" @@ -13660,7 +13628,7 @@ msgstr "Błąd" msgid "error code {code}" msgstr "kod błędu {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Błąd podczas renderowania treści" @@ -14095,11 +14063,6 @@ msgstr "Linki zewnętrzne mogą być niebezpieczne. Zachowaj ostrożność." msgid "Extra large" msgstr "Bardzo duże" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Bardzo jasny" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Pierwsze kliknięcie" msgid "First click pass-through when unfocused" msgstr "Kliknięcie aktywuje okno, gdy jest nieaktywne" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Pierwsza opcja" @@ -14917,10 +14880,6 @@ msgstr "Zgodnie z ustawieniami głównymi • {effectiveValue}%" msgid "Font" msgstr "Czcionka" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Grubość czcionki" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "Od {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "z <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Ogólne" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Wygeneruj link do udostępnienia lub skopiuj swój połączony niestandardowy CSS." @@ -15481,11 +15440,6 @@ msgstr "Wygeneruj nowy kod" msgid "Generating code…" msgstr "Generowanie kodu…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Delikatny i lekki tekst" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "On" msgid "Header" msgstr "Nagłówek" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Nagłówek" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Indeksowanie kanału" msgid "Indicator" msgstr "Wskaźnik" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Wskaźniki i status" @@ -17557,7 +17506,7 @@ msgstr "Stany pól wejściowych" msgid "Input volume" msgstr "Głośność wejścia" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Wprowadzanie i tekst" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Zainstaluj pakiet naklejek" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Zainstalowano" @@ -18094,15 +18043,6 @@ msgstr "Na razie tu cicho..." msgid "Italian" msgstr "Włoski" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Kursywa" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Demonstracja stylu kursywy" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Język" msgid "Language settings" msgstr "Ustawienia języka" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Obsługa języków" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Języki" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Duże" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Dożywotni {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Jasny" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Domyślne urządzenie audio systemu Linux." #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Pakiet dla systemu Linux" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Oznacz górny kanał skrzynki odbiorczej jako przeczytany" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Rozmiar multimediów" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Średni" @@ -20820,7 +20750,7 @@ msgstr "Więcej" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Więcej działań" @@ -20993,10 +20923,6 @@ msgstr "Uwierzytelnianie wieloskładnikowe" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Treści wielojęzyczne" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Nowi użytkownicy nie mogą teraz dołączyć. Możesz utworzyć konto lub zalogować się, a następnie spróbować ponownie użyć tego linku." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Nowa wersja" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Nie znaleziono emoji pasujących do wyszukiwania." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Brak emoji pasujących do wyszukiwania" @@ -22363,11 +22289,6 @@ msgstr "Brak" msgid "None (normal behavior)" msgstr "Brak (normalne zachowanie)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normalny" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Tylko Ty widzisz tę wiadomość. <0>Odrzuć" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Krycie" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Otwórz selektor daty" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Otwórz pobieranie na komputer" @@ -23165,6 +23086,11 @@ msgstr "Otwórz szybkie przełączanie" msgid "Open settings" msgstr "Otwórz ustawienia" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Otwórz centrum oprogramowania" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "System operacyjny" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Włącz eksperymentalne opcje kontrolowania liczby nieprzeczytanych wiadomości dla każdej społeczności i każdego kanału" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Zoptymalizowany do czytania dłuższych fragmentów tekstu" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Optymalizowanie aparatu..." @@ -23483,7 +23404,7 @@ msgstr "Poza okresem zwrotu środków" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Nakładające się grupy awatarów pokazujące wielu użytkowników z automatycznym zliczaniem przepełnienia." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Nakładki i menu" @@ -23886,11 +23807,6 @@ msgstr "Głośność poszczególnych dźwięków" msgid "Per-window audio isn't available on this build of macOS." msgstr "Dźwięk z poszczególnych okien nie jest dostępny w tej wersji systemu macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Idealne do codziennych treści" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Stanowisko" msgid "Power saving" msgstr "Oszczędzanie energii" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Mocne i przyciągające uwagę" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Podstawowy (wyłączony)" msgid "Primary accent color" msgstr "Główny kolor akcentujący" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Główne działanie" @@ -25724,11 +25635,6 @@ msgstr "Rejestracja" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Rejestracja jest obecnie zamknięta. Aby utworzyć konto, użyj linku rejestracyjnego od administratora." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Zwykły" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Zwykły przycisk" @@ -26198,7 +26104,7 @@ msgstr "Usunięto limit użytkowników." msgid "Removed timeout from {0}" msgstr "Usunięto limit czasu dla {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Usuwa wszystkie nadpisania poszczególnych zmiennych, ale zachowuje bibliotekę i zasoby." @@ -26703,7 +26609,7 @@ msgstr "Zresetuj dane aplikacji" msgid "Reset app data and restart" msgstr "Zresetuj dane aplikacji i uruchom ponownie" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Zresetuj dane motywu niestandardowego" @@ -26714,7 +26620,7 @@ msgstr "Zresetować dane motywu niestandardowego?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Resetuj dane" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Uruchom ponownie {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Uruchom ponownie {productName}" @@ -28030,7 +27936,7 @@ msgstr "Szukam" msgid "Searching people..." msgstr "Szukam osób..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Druga opcja" @@ -28047,7 +27953,7 @@ msgstr "Dodatkowy (wyłączony)" msgid "Secondary accent color" msgstr "Dodatkowy kolor akcentujący" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Działanie dodatkowe" @@ -28339,7 +28245,7 @@ msgstr "Zaznaczenie: {0}" msgid "Selection: {0} (max {1})" msgstr "Zaznaczenie: {0} (maks. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Wybrane" @@ -28369,16 +28275,6 @@ msgstr "Wymuś tryb samodzielnego hostowania" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Zwrot środków możliwy w ciągu 3 dni od płatności, raz na 30 dni. Zwrot środków za subskrypcję powoduje jej anulowanie. Kupujący z UE/EOG zrzekają się 14-dniowego prawa do odstąpienia od umowy przy kasie, aby uzyskać natychmiastowy dostęp do treści. Użyj przycisku zwrotu środków w aplikacji zamiast obciążenia zwrotnego. Obciążenia zwrotne mogą trwale ograniczyć dostęp do konta. Stripe bezpiecznie obsługuje płatności. Nigdy nie widzimy pełnego numeru Twojej karty." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Półgruba" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Półgruba duża" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Ustawia poziom dla wszystkich efektów dźwiękowych. Ustawienia indywid #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Ustawienia" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Kilka osób pisze…" #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Udostępnij" @@ -29002,7 +28898,7 @@ msgstr "Udostępnij" msgid "Share action." msgstr "Udostępnij akcję." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Udostępnij aktywny motyw niestandardowy" @@ -29035,7 +28931,7 @@ msgstr "Udostępnij źródło" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Podziel się doświadczeniem {premiumProductName} ze znajomymi, kupując subskrypcję w prezencie." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Udostępnij motyw" @@ -29963,11 +29859,6 @@ msgstr "Suwak z wartościami krokowymi" msgid "Sliders" msgstr "Suwaki" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Nieco mocniejsze wyróżnienie" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Obraźliwe, odczłowieczające wypowiedzi lub ataki na grupy chronione." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Mały" @@ -30161,11 +30050,6 @@ msgstr "Przyciąga do interwałów co 5." msgid "Social" msgstr "Społecznościowe" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Miękkie i łatwe w czytaniu" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Wskaźniki statusu" msgid "Status page" msgstr "Strona stanu usług" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Status" @@ -31291,15 +31175,6 @@ msgstr "Stripe zgłosił kartę wydaną w kraju {countryName}. Aby zapłacić w msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Dobra jakość przy umiarkowanym zużyciu procesora. Dobra opcja awaryjna Chromium do udostępniania ekranu." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Wyraźna hierarchia wizualna" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Warianty stylu" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Scenariusze subskrypcji" msgid "Subtext" msgstr "Podtekst" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Podtytuł" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Testuj podglądy adresów URL i renderowane osadzenia" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Tekst" @@ -31973,6 +31841,10 @@ msgstr "Kanały tekstowe" msgid "Text formatting" msgstr "Formatowanie tekstu" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Tekst jest renderowany z antyaliasingiem w skali szarości zamiast ClearType, gdy włączona jest przezroczystość, dzięki czemu będzie wyglądał łagodniej." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Społeczność, której szukasz, mogła zostać usunięta lub możesz nie mieć do niej dostępu." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Nie udało się pobrać aktualizacji aplikacji. Spróbuj ponownie, klikając przycisk aktualizacji, gdy twoje połączenie będzie stabilne." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Aktualizacja aplikacji na komputer została pobrana. Uruchom ponownie {productName}, aby dokończyć instalację." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Pobrany plik został zapisany na twoim komputerze. Zainstaluj go za pomocą swojego menedżera pakietów." @@ -32442,12 +32314,7 @@ msgstr "Ta osoba może nie akceptować od ciebie wiadomości lub nie macie już msgid "They're not accepting friend requests right now." msgstr "Ta osoba nie akceptuje teraz zaproszeń do znajomych." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Cienki" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Trzecia opcja" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "To jest bardzo popularna wiadomość. Musisz usunąć niektóre reakcje, zanim dodasz kolejne." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "To jest przykładowy tekst w polu tekstowym." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "To jest opis pierwszej opcji" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "To jest opis drugiej opcji" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "To jest opis trzeciej opcji" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Spowoduje to usunięcie wszystkich niestandardowych skrótów i ponowne włączenie wszystkich wbudowanych skrótów. Tej operacji nie można cofnąć." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Ten link do resetowania hasła wygasł. Linki są ważne przez 24 godziny. Poproś o nowy." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Ten link do resetowania wygasł. Linki do resetowania są ważne przez 1 godzinę. Poproś o nowy." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Ten przełącznik jest wyłączony i nie można go przełączyć" msgid "This switch is disabled in the checked state" msgstr "Ten przełącznik jest wyłączony w stanie zaznaczenia" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Ten tekst przedstawia styl nagłówka pogrubioną czcionką" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Ten tekst przedstawia pogrubiony styl tytułu" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Ten tekst przedstawia stylizację kursywą" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Ten tekst przedstawia dużą, półpogrubioną czcionkę" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Ten tekst przedstawia normalny styl" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Ten tekst przedstawia styl półpogrubiony" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "To pole tekstowe automatycznie rozszerza się od 4 do 12 wierszy podczas pisania." @@ -33417,11 +33254,6 @@ msgstr "Strefa czasowa" msgid "Tip" msgstr "Wskazówka" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Tytuł" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Wpisz kolor (szesnastkowy, rgb(), hsl lub nazwa) albo użyj próbnika." msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Wpisz kolor (wartość szesnastkowa, rgb(), hsl() lub nazwa) albo użyj próbnika." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Rozmiar czcionki" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Tylko wskaźnik pisania" msgid "Typing state" msgstr "Status pisania" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Typografia" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Demonstracja skali typografii" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Uniwersalna opcja awaryjna. Najniższa jakość, ale działa wszędzie." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Nieznany" @@ -34649,8 +34469,8 @@ msgstr "Nielimitowane emoji" msgid "Unlimited stickers" msgstr "Nieograniczone naklejki" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Odblokuj {lockedEmojiCount, plural, one {# własną emotkę} few {# własne emotki} many {# własnych emotek} other {# własnych emotek}} z {communityCount, plural, one {# społeczności} few {# społeczności} many {# społeczności} other {# społeczności}} dzięki {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Kanał bez nazwy" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Grupa bez nazwy" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Zaktualizowaliśmy nasze zasady. Zapoznaj się z nimi i zaakceptuj, aby kontynuować." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Edytujesz swój profil dla tej społeczności. Będzie on widoczny tylko w tej społeczności i zastąpi Twój profil globalny." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Jesteś teraz deweloperem!" diff --git a/fluxer_app/src/features/i18n/locales/pt-BR/messages.po b/fluxer_app/src/features/i18n/locales/pt-BR/messages.po index 58641f7ce..3db7fd4e8 100644 --- a/fluxer_app/src/features/i18n/locales/pt-BR/messages.po +++ b/fluxer_app/src/features/i18n/locales/pt-BR/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} Desktop {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Equipe da comunidade {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} não conseguiu acessar o serviço de atualização. Verifique sua conexão e tente novamente." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} não conseguiu reiniciar para a atualização baixada. Tente novamente no botão de atualização." @@ -1210,8 +1210,8 @@ msgstr "Logo do {productName}" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "Web {releaseChannel} {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} online" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Grupo de {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "um nome de host, por exemplo, {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Uma atualização para o ambiente de trabalho Linux está disponível. Escolha o formato do pacote para este sistema e o {productName} salvará localmente." @@ -1990,7 +1990,7 @@ msgstr "uma enquete" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Um redirect_uri é obrigatório quando o escopo do bot não é o único escopo." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Um componente reutilizável para estados vazios, erros e mensagens de status." @@ -3891,7 +3891,7 @@ msgstr "Aplicativos" msgid "Arabic" msgstr "Árabe" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Arquivar" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Rolagem automática" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Disponível" @@ -5243,26 +5243,6 @@ msgstr "Desfoque" msgid "Blur strength" msgstr "Intensidade do desfoque" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Corpo do texto" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Negrito" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Título em negrito" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Título em negrito" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Variações de botão" msgid "Button with context menu" msgstr "Botão com menu de contexto" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Botões" @@ -5989,11 +5969,6 @@ msgstr "Não foi possível instalar o pacote de figurinhas" msgid "Captcha verification failed. Try again." msgstr "A verificação do Captcha falhou. Tente novamente." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Legenda" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Limpar todas as substituições ativas" msgid "Clear all attachment mocks" msgstr "Limpar todos os rascunhos de anexo" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Limpar todas as substituições de token" @@ -7215,7 +7190,7 @@ msgstr "Limpar simulação para este anexo" msgid "Clear nickname" msgstr "Limpar apelido" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Limpar substituições" @@ -7299,7 +7274,7 @@ msgstr "Apagou o tópico." msgid "Clearing trusted domains..." msgstr "Limpando domínios confiáveis..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Limpa o CSS rápido, temas importados, ativos carregados e referências de arquivos locais neste aparelho." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Clique para resgatar seu presente!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Clique para copiar" @@ -8825,7 +8800,7 @@ msgstr "Copiar link de convite" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Copiar link" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Não foi possível alterar seu ciclo de cobrança" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Não foi possível buscar atualizações" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Não foi possível excluir suas mensagens" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Não foi possível baixar a atualização para computador" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Não foi possível iniciar a conexão" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Não foi possível iniciar a atualização do aplicativo para computador" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Botão de perigo clicado." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Desativado por padrão no celular para preservar a bateria e o uso de da #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Suas mensagens foram excluídas." msgid "Deleted." msgstr "Excluído." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Tipografia delicada e leve" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Atualização para computador disponível. Escolha um pacote Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Atualização para desktop pronta" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "A versão para desktop {version} foi baixada. Reinicie o {productName} para concluir a instalação." @@ -11753,11 +11723,9 @@ msgstr "Dispensar menção" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Devido às leis de conteúdo adulto em {regionName}, esta mídia não está disponível na sua região atual." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Duplicar" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Editar sua biografia do perfil" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Texto editável" @@ -13001,7 +12969,7 @@ msgstr "Ativar expiração de anexos" msgid "Enable audio" msgstr "Ativar áudio" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Ativar recurso beta" @@ -13038,7 +13006,7 @@ msgstr "Ativar modo de desenvolvedor" msgid "Enable email delivery" msgstr "Ativar entrega de e-mail" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Ativar opção extra" @@ -13660,7 +13628,7 @@ msgstr "Erro" msgid "error code {code}" msgstr "código de erro {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Erro ao renderizar conteúdo" @@ -14095,11 +14063,6 @@ msgstr "Links externos podem ser perigosos. Tenha cuidado." msgid "Extra large" msgstr "Extra grande" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Extrafina" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Primeiro clique" msgid "First click pass-through when unfocused" msgstr "Primeiro clique atravessa quando desfocado" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Primeira opção" @@ -14917,10 +14880,6 @@ msgstr "Seguindo o mestre • {effectiveValue}%" msgid "Font" msgstr "Fonte" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Pesos da fonte" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "A partir de {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "de <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Geral" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Gerar um link compartilhável ou copiar seu CSS personalizado combinado." @@ -15481,11 +15440,6 @@ msgstr "Gerar novo código" msgid "Generating code…" msgstr "Gerando código…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Exibição de texto suave e leve" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Ele" msgid "Header" msgstr "Cabeçalho" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Título" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Indexando canal" msgid "Indicator" msgstr "Indicador" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indicadores e status" @@ -17557,7 +17506,7 @@ msgstr "Estados de entrada" msgid "Input volume" msgstr "Volume de entrada" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Entradas e texto" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Instalar pacote de figurinhas" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Instalado" @@ -18094,15 +18043,6 @@ msgstr "Está tudo tranquilo por enquanto..." msgid "Italian" msgstr "Italiano" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Itálico" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Demonstração do estilo itálico" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Idioma" msgid "Language settings" msgstr "Configurações de idioma" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Suporte a idiomas" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Idiomas" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Grande" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Vitalício {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Claro" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Dispositivo de áudio padrão do Linux" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Pacote Linux" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Marcar o canal principal da caixa de entrada como lido" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Tamanho da mídia" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Médio" @@ -20820,7 +20750,7 @@ msgstr "Mais" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Mais ações" @@ -20993,10 +20923,6 @@ msgstr "Autenticação de dois fatores" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Conteúdo multilíngue" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Novos usuários não podem entrar agora. Você ainda pode criar uma conta ou fazer login e tentar este link novamente mais tarde." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Nova versão" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Nenhum emoji encontrado para sua busca." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Nenhum emoji corresponde à pesquisa" @@ -22363,11 +22289,6 @@ msgstr "Nenhuma" msgid "None (normal behavior)" msgstr "Nenhum (comportamento normal)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normal" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Só você pode ver esta mensagem. <0>Dispensar" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Opacidade" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Abrir seletor de data" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Abrir downloads para computador" @@ -23165,6 +23086,11 @@ msgstr "Abrir seletor rápido" msgid "Open settings" msgstr "Abrir configurações" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Abrir central de software" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Sistema operacional" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Ative o controle de notificações não lidas por comunidade e canal (recurso experimental)" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Otimizado para passagens de leitura mais longas" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Otimizando câmera..." @@ -23483,7 +23404,7 @@ msgstr "Fora do prazo de reembolso" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Grupos de avatar sobrepostos mostrando vários usuários com contagem automática de estouro." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Sobreposições e menus" @@ -23886,11 +23807,6 @@ msgstr "Volume por som" msgid "Per-window audio isn't available on this build of macOS." msgstr "Áudio por janela não está disponível nesta versão do macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Perfeito para o conteúdo do dia a dia" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Cargo" msgid "Power saving" msgstr "Economia de bateria" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Poderoso e chama a atenção" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Principal (desativado)" msgid "Primary accent color" msgstr "Cor de destaque principal" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Ação principal" @@ -25724,11 +25635,6 @@ msgstr "Registro" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "O registro está fechado no momento. Use um link de registro de um administrador para criar uma conta." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Normal" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Botão normal" @@ -26198,7 +26104,7 @@ msgstr "Removeu o limite de usuários." msgid "Removed timeout from {0}" msgstr "Tempo limite removido de {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Remove todas as substituições por variável, mas mantém sua biblioteca e seus ativos intactos." @@ -26703,7 +26609,7 @@ msgstr "Redefinir dados do app" msgid "Reset app data and restart" msgstr "Redefinir dados do app e reiniciar" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Redefinir dados do tema personalizado" @@ -26714,7 +26620,7 @@ msgstr "Redefinir dados do tema personalizado?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Redefinir dados" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Reiniciar {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Reiniciar {productName}" @@ -28030,7 +27936,7 @@ msgstr "Pesquisando" msgid "Searching people..." msgstr "Procurando pessoas..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Segunda opção" @@ -28047,7 +27953,7 @@ msgstr "Secundário (desativado)" msgid "Secondary accent color" msgstr "Cor de destaque secundária" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Ação secundária" @@ -28339,7 +28245,7 @@ msgstr "Seleção: {0}" msgid "Selection: {0} (max {1})" msgstr "Seleção: {0} (máx. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Seleções" @@ -28369,16 +28275,6 @@ msgstr "Substituir modo auto-hospedado" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Reembolsos self-service disponíveis em até 3 dias após o pagamento, uma vez a cada 30 dias. Reembolsar uma assinatura a cancela. Compradores da UE/EEE renunciam ao direito de desistência de 14 dias no checkout para acessar o conteúdo imediatamente. Use o botão de reembolso no aplicativo em vez de um estorno. Estornos podem restringir permanentemente sua conta. O Stripe lida com o pagamento de forma segura. Nunca vemos o número completo do seu cartão." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Seminegrito" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Seminegrito grande" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Define o nível para todos os efeitos sonoros. As configurações indivi #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Configurações" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Várias pessoas estão digitando..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Compartilhar" @@ -29002,7 +28898,7 @@ msgstr "Compartilhar" msgid "Share action." msgstr "Compartilhar ação." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Compartilhar tema personalizado ativo" @@ -29035,7 +28931,7 @@ msgstr "Compartilhar origem" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Compartilhe a experiência {premiumProductName} com seus amigos comprando uma assinatura de presente." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Compartilhar tema" @@ -29963,11 +29859,6 @@ msgstr "Controle deslizante com valores de etapa" msgid "Sliders" msgstr "Controles deslizantes" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Ênfase um pouco mais forte" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Insultos, linguagem desumanizadora ou ataques a grupos protegidos." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Pequeno" @@ -30161,11 +30050,6 @@ msgstr "Ajusta em incrementos de 5." msgid "Social" msgstr "Social" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Experiência de leitura suave e fácil" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Indicadores de status" msgid "Status page" msgstr "Página de status" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Quadro de status" @@ -31291,15 +31175,6 @@ msgstr "O Stripe informou que o cartão foi emitido em {countryName}. Para pagar msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Qualidade forte com custo moderado de CPU. Boa alternativa para compartilhamento de tela no Chromium." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Hierarquia visual forte" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Variações de estilo" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Cenários de assinatura" msgid "Subtext" msgstr "Subtexto" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Legenda" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Testar prévias de URL e embeds renderizados" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Texto" @@ -31973,6 +31841,10 @@ msgstr "Canais de texto" msgid "Text formatting" msgstr "Formatação de texto" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "O texto é renderizado com antisserrilhamento em escala de cinza em vez de ClearType enquanto a transparência está ativada, então ele ficará mais suave." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "A comunidade que você procura pode ter sido excluída ou você não tem acesso a ela." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Não foi possível baixar a atualização para computador. Tente novamente no botão de atualização quando sua conexão estiver estável." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "A atualização para a versão de desktop foi baixada. Reinicie o {productName} para concluir a instalação." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "O arquivo baixado é salvo no seu computador. Instale-o com seu gerenciador de pacotes normal." @@ -32442,12 +32314,7 @@ msgstr "Essa pessoa pode não estar aceitando mensagens suas ou vocês não comp msgid "They're not accepting friend requests right now." msgstr "Não estão aceitando pedidos de amizade no momento." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Fina" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Terceira opção" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Essa mensagem está pesada. Algumas reações precisam ser removidas antes que você possa adicionar mais." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Este é um texto de exemplo na área de texto." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Esta é a descrição da primeira opção" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Esta é a descrição da segunda opção" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Esta é a descrição da terceira opção" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Isso remove todos os atalhos personalizados e reativa todos os atalhos integrados. Esta ação não pode ser desfeita." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Este link de redefinição expirou. Links de redefinição duram 24 horas. Solicite um novo." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Este link de redefinição expirou. Links de redefinição duram 1 hora. Por favor, solicite um novo." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Este seletor está desativado e não pode ser ativado" msgid "This switch is disabled in the checked state" msgstr "Este seletor está desativado quando marcado" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Este texto demonstra o estilo de título em negrito" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Este texto demonstra o estilo de título em negrito" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Este texto demonstra o estilo itálico" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Este texto demonstra o estilo grande semi-negrito" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Este texto demonstra o estilo normal" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Este texto demonstra o estilo semi-negrito" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Esta caixa de texto se expande automaticamente entre 4 e 12 linhas enquanto você digita." @@ -33417,11 +33254,6 @@ msgstr "Fuso horário" msgid "Tip" msgstr "Dica" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Título" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Digite uma cor (hex, rgb(), hsl ou nome) ou use o seletor." msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Digite uma cor (hex, rgb(), hsl() ou nome) ou use o seletor." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Tamanho da fonte" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Apenas indicador de digitação" msgid "Typing state" msgstr "Digitando" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Tipografia" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Demonstração da escala de tipografia" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Alternativa universal. Qualidade mais baixa, mas funciona em qualquer lu #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Desconhecido" @@ -34649,8 +34469,8 @@ msgstr "Emojis ilimitados" msgid "Unlimited stickers" msgstr "Figurinhas ilimitadas" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Desbloqueie {lockedEmojiCount, plural, one {# emoji personalizado} other {# emojis personalizados}} de {communityCount, plural, one {# comunidade} other {# comunidades}} com o {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Canal sem nome" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Grupo sem nome" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Atualizamos nossas políticas. Revise e aceite para continuar." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Você está editando seu perfil para esta comunidade. Ele só ficará visível aqui e substituirá seu perfil global." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Agora você é um desenvolvedor!" diff --git a/fluxer_app/src/features/i18n/locales/ro/messages.po b/fluxer_app/src/features/i18n/locales/ro/messages.po index f507c06d6..dc5328fae 100644 --- a/fluxer_app/src/features/i18n/locales/ro/messages.po +++ b/fluxer_app/src/features/i18n/locales/ro/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} Desktop {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Echipa comunității {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} nu a putut accesa serviciul de actualizare. Verifică conexiunea și încearcă din nou." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} nu a putut reporni în actualizarea descărcată. Încearcă din nou folosind butonul de actualizare." @@ -1210,8 +1210,8 @@ msgstr "Antetul {productName}" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} online" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Grupul lui {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "un nume de gazdă, de ex. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Este disponibilă o actualizare pentru Fluxer pe sistemul Linux. Alegeți formatul pachetului pentru acest sistem, iar {productName} îl va salva local." @@ -1990,7 +1990,7 @@ msgstr "un sondaj" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Este necesar un redirect_uri atunci când domeniul bot nu este singurul domeniu." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "O componentă reutilizabilă pentru stări goale, erori și mesaje de stare." @@ -3891,7 +3891,7 @@ msgstr "Aplicații" msgid "Arabic" msgstr "Arabă" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Arhivare" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Derulare automată" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Disponibilă" @@ -5243,26 +5243,6 @@ msgstr "Estompare" msgid "Blur strength" msgstr "Intensitatea efectului de estompare" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Corp" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Aldin" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Titlu aldin" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Titlu aldin" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Variante de buton" msgid "Button with context menu" msgstr "Buton cu meniu contextual" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Butoane" @@ -5989,11 +5969,6 @@ msgstr "Pachetul de stickere nu poate fi instalat" msgid "Captcha verification failed. Try again." msgstr "Verificarea Captcha a eșuat. Încearcă din nou." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Descriere" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Șterge toate suprascrierile active" msgid "Clear all attachment mocks" msgstr "Șterge toate atașamentele simulate" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Șterge toate suprascrierile de tokenuri" @@ -7215,7 +7190,7 @@ msgstr "Șterge simularea pentru această atașare" msgid "Clear nickname" msgstr "Șterge pseudonimul" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Șterge suprascrierile" @@ -7299,7 +7274,7 @@ msgstr "A șters subiectul." msgid "Clearing trusted domains..." msgstr "Se șterg domeniile de încredere..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Șterge CSS-ul rapid, temele importate, elementele încărcate și referințele fișierelor locale de pe acest dispozitiv." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Atinge pentru a revendica cadoul!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Atinge pentru a copia" @@ -8825,7 +8800,7 @@ msgstr "Copiază linkul de invitație" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Copiază linkul" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Nu s-a putut schimba ciclul de facturare" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Nu s-a putut verifica dacă există actualizări" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Nu s-au putut șterge mesajele tale" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Nu s-a putut descărca actualizarea pentru desktop" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Nu s-a putut iniția conexiunea" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Nu s-a putut porni actualizarea pentru desktop" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "A fost apăsat butonul de pericol." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Dezactivat implicit pe mobil pentru a economisi bateria și datele mobil #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Mesajele tale au fost șterse." msgid "Deleted." msgstr "Șters." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Tipografie delicată și ușoară" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Actualizare desktop disponibilă. Alegeți un pachet Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Actualizare desktop gata" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Versiunea pentru desktop {version} a fost descărcată. Repornește {productName} pentru a finaliza instalarea." @@ -11753,11 +11723,9 @@ msgstr "Ignoră mențiunea" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Din cauza legilor privind conținutul matur din {regionName}, acest fișier media nu este disponibil în regiunea ta actuală." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Duplicare" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Editează-ți biografia de profil" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Text editabil" @@ -13001,7 +12969,7 @@ msgstr "Activare expirare atașamente" msgid "Enable audio" msgstr "Activează sunetul" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Activează funcția beta" @@ -13038,7 +13006,7 @@ msgstr "Activează modul dezvoltator" msgid "Enable email delivery" msgstr "Activare livrare e-mail" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Activează opțiunea suplimentară" @@ -13660,7 +13628,7 @@ msgstr "Eroare" msgid "error code {code}" msgstr "cod de eroare {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Eroare la redarea conținutului" @@ -14095,11 +14063,6 @@ msgstr "Linkurile externe pot fi periculoase. Fii atent." msgid "Extra large" msgstr "Foarte mare" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Foarte subțire" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Primul clic" msgid "First click pass-through when unfocused" msgstr "Primul clic trece prin fereastra inactivă" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Prima opțiune" @@ -14917,10 +14880,6 @@ msgstr "Urmărește master • {effectiveValue}%" msgid "Font" msgstr "Font" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Grosimea fontului" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "De la {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "de la <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "General" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Generează un link partajabil sau copiază CSS-ul tău personalizat combinat." @@ -15481,11 +15440,6 @@ msgstr "Generează cod nou" msgid "Generating code…" msgstr "Se generează codul…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Afișare text delicată și aerisită" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "El" msgid "Header" msgstr "Antet" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Titlu" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Se indexează canalul" msgid "Indicator" msgstr "Indicator" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indicatori și stare" @@ -17557,7 +17506,7 @@ msgstr "Stări de introducere" msgid "Input volume" msgstr "Volum intrare" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Intrări și text" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Instalează pachetul de stickere" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Instalat" @@ -18094,15 +18043,6 @@ msgstr "E liniște acum..." msgid "Italian" msgstr "Italiană" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Cursiv" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Demonstrație stil italic" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Limbă" msgid "Language settings" msgstr "Setări limbă" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Suport lingvistic" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Limbi" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Mare" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Pe viață {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Luminos" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Implicit Linux" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Pachet Linux" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Marchează drept citit canalul principal din inbox" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Dimensiune media" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Mediu" @@ -20820,7 +20750,7 @@ msgstr "Mai multe" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Mai multe acțiuni" @@ -20993,10 +20923,6 @@ msgstr "Autentificare în doi pași" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Conținut multilingv" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Utilizatorii noi nu se pot alătura momentan. Poți crea în continuare un cont sau te poți conecta, apoi încearcă din nou acest link mai târziu." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Versiune nouă" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Nu s-au găsit emojiuri care să corespundă căutării tale." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Niciun emoji nu corespunde căutării" @@ -22363,11 +22289,6 @@ msgstr "Fără" msgid "None (normal behavior)" msgstr "Niciunul (comportament normal)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normal" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Doar tu poți vedea acest mesaj. <0>Închide" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Opacitate" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Deschide selectorul de dată" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Deschide descărcările pentru desktop" @@ -23165,6 +23086,11 @@ msgstr "Deschide comutatorul rapid" msgid "Open settings" msgstr "Deschide setările" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Deschide centrul software" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Sistem de operare" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Activează opțiunile experimentale pentru controlul indicatorilor de mesaje necitite, la nivel de comunitate și canal" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimizat pentru pasaje lungi de lectură" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Se optimizează camera..." @@ -23483,7 +23404,7 @@ msgstr "În afara perioadei de rambursare" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Grupuri de avatare suprapuse care afișează mai mulți utilizatori cu număr automat de depășiri." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Suprapuneri și meniuri" @@ -23886,11 +23807,6 @@ msgstr "Volum pentru fiecare sunet" msgid "Per-window audio isn't available on this build of macOS." msgstr "Audio per fereastră nu este disponibil în această versiune de macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Perfect pentru conținutul de zi cu zi" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Poziție" msgid "Power saving" msgstr "Economisire energie" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Puternic și atrăgător" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Principal (dezactivat)" msgid "Primary accent color" msgstr "Culoare principală de accent" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Acțiune principală" @@ -25724,11 +25635,6 @@ msgstr "Înregistrare" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Înregistrarea este închisă momentan. Folosește un link de înregistrare de la un administrator pentru a crea un cont." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Normal" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Buton normal" @@ -26198,7 +26104,7 @@ msgstr "Limita de utilizatori a fost eliminată." msgid "Removed timeout from {0}" msgstr "A fost eliminată restricția de timp pentru {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Elimină fiecare suprascriere per variabilă, dar păstrează intacte biblioteca și activele tale." @@ -26703,7 +26609,7 @@ msgstr "Resetați datele aplicației" msgid "Reset app data and restart" msgstr "Resetați datele aplicației și reporniți" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Resetează datele temei personalizate" @@ -26714,7 +26620,7 @@ msgstr "Resetați datele temei personalizate?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Resetați datele" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Reporniți {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Repornește {productName}" @@ -28030,7 +27936,7 @@ msgstr "Se caută" msgid "Searching people..." msgstr "Se caută persoane..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "A doua opțiune" @@ -28047,7 +27953,7 @@ msgstr "Secundar (dezactivat)" msgid "Secondary accent color" msgstr "Culoare de accent secundară" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Acțiune secundară" @@ -28339,7 +28245,7 @@ msgstr "Selecție: {0}" msgid "Selection: {0} (max {1})" msgstr "Selecție: {0} (max. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Selecții" @@ -28369,16 +28275,6 @@ msgstr "Suprascriere mod auto-găzduit" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Rambursări self-service disponibile în 3 zile de la plată, o dată la 30 de zile. Rambursarea unui abonament îl anulează. Cumpărătorii din UE/SEE renunță la dreptul de retragere de 14 zile la finalizarea comenzii pentru a accesa conținutul imediat. Folosește butonul de rambursare din aplicație în loc de o anulare a plății. Anulările plăților pot restricționa permanent contul tău. Stripe gestionează plățile în siguranță. Nu vedem niciodată numărul complet al cardului tău." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Semi-îngroșat" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Semi-îngroșat mare" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Setează nivelul pentru fiecare efect sonor. Suprascrierile individuale #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Setări" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Mai multe persoane scriu..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Trimite" @@ -29002,7 +28898,7 @@ msgstr "Trimite" msgid "Share action." msgstr "Acțiune de partajare." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Partajează tema personalizată activă" @@ -29035,7 +28931,7 @@ msgstr "Sursă de partajat" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Oferă experiența {premiumProductName} prietenilor tăi cumpărând un abonament cadou." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Partajează tema" @@ -29963,11 +29859,6 @@ msgstr "Glisor cu valori pas cu pas" msgid "Sliders" msgstr "Glisoare" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Accent mai îndrăzneț" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Jigniri, limbaj dezumanizant sau atacuri la adresa grupurilor protejate." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Mică" @@ -30161,11 +30050,6 @@ msgstr "Se fixează la multipli de 5." msgid "Social" msgstr "Social" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Experiență de lectură lină și ușoară" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Indicatori de stare" msgid "Status page" msgstr "Pagina de stare" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Stare (indisponibil)" @@ -31291,15 +31175,6 @@ msgstr "Stripe a raportat un card emis în {countryName}. Pentru a plăti în ac msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Calitate bună la un cost CPU moderat. O alternativă Chromium bună pentru partajarea ecranului." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Ierarhie vizuală puternică" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Variații de stil" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Scenarii de abonament" msgid "Subtext" msgstr "Subtext" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Subtitlu" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Testează desfășurarea URL-urilor și încorporările redate" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Text" @@ -31973,6 +31841,10 @@ msgstr "Canale de chat" msgid "Text formatting" msgstr "Formatare text" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Textul este redat cu antialiasing în nuanțe de gri în loc de ClearType când transparența este activată, deci va arăta mai fin." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Comunitatea pe care o cauți ar fi putut fi ștearsă sau este posibil să nu ai acces la ea." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Actualizarea pentru desktop nu a putut fi descărcată. Încearcă din nou de la butonul de actualizare când conexiunea ta este stabilă." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Actualizarea pentru versiunea de desktop a fost descărcată. Repornește {productName} pentru a finaliza instalarea." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Fișierul descărcat este salvat pe computerul tău. Instalează-l cu managerul tău de pachete obișnuit." @@ -32442,12 +32314,7 @@ msgstr "Este posibil să nu accepte mesaje de la tine sau să nu mai aveți o co msgid "They're not accepting friend requests right now." msgstr "Nu acceptă cereri de prietenie momentan." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Subțire" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "A treia opțiune" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Acesta este un mesaj foarte încărcat. Unele reacții trebuie eliminate înainte de a putea adăuga altele." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Acesta este un text exemplu în zona de text." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Aceasta este prima descriere a opțiunii" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Aceasta este a doua descriere a opțiunii" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Aceasta este descrierea celei de-a treia opțiuni" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Aceasta elimină toate scurtăturile personalizate și reactivează toate scurtăturile încorporate. Această acțiune nu poate fi anulată." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Acest link de resetare a expirat. Linkurile de resetare sunt valabile 24 de ore. Solicită unul nou." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Acest link de resetare a expirat. Linkurile de resetare sunt valabile 1 oră. Te rugăm să soliciți unul nou." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Acest comutator este dezactivat și nu poate fi activat" msgid "This switch is disabled in the checked state" msgstr "Acest comutator este dezactivat în starea bifată" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Acest text demonstrează stilul de titlu aldin" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Acest text demonstrează stilul de titlu îngroșat" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Acest text demonstrează stilul cursiv" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Acest text demonstrează stilul semi-îngroșat mare" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Acest text demonstrează stilul normal" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Acest text demonstrează stilul semi-îngroșat" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Această zonă de text se extinde automat între 4 și 12 rânduri pe măsură ce scrii." @@ -33417,11 +33254,6 @@ msgstr "Fus orar" msgid "Tip" msgstr "Sfat" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Titlu" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Tastează o culoare (hex, rgb(), hsl sau nume) sau folosește selectorul msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Introduceți o culoare (hex, rgb(), hsl() sau nume) sau folosiți selectorul." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Dimensiune text" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Doar indicatorul de tastare" msgid "Typing state" msgstr "Stare tastare" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Tipografie" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Demonstrație scară tipografică" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Soluție universală. Cea mai slabă calitate, dar funcționează peste #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Necunoscut" @@ -34649,8 +34469,8 @@ msgstr "Emoji nelimitate" msgid "Unlimited stickers" msgstr "Stickere nelimitate" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Deblochează {lockedEmojiCount, plural, one {# emoji personalizat} other {# emojiuri personalizate}} din {communityCount, plural, one {# comunitate} other {# comunități}} cu {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Canal fără nume" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Grup fără nume" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Am actualizat politicile. Revizuiește-le și acceptă-le pentru a continua." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Editezi profilul tău pentru această comunitate. Acesta va fi vizibil doar aici și va înlocui profilul tău global." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Acum ești dezvoltator!" diff --git a/fluxer_app/src/features/i18n/locales/ru/messages.po b/fluxer_app/src/features/i18n/locales/ru/messages.po index a810c1f0d..605624b27 100644 --- a/fluxer_app/src/features/i18n/locales/ru/messages.po +++ b/fluxer_app/src/features/i18n/locales/ru/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} для ПК {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Команда сообщества {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} не может подключиться к службе обновлений. Проверьте свое интернет-соединение и повторите попытку." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "Не удалось перезапустить {productName} для установки загруженного обновления. Попробуйте еще раз, нажав кнопку «Обновить»." @@ -1210,8 +1210,8 @@ msgstr "{productName} логотип" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} онлайн" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Группа {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "имя хоста, например {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Доступно обновление для Linux. Выберите формат пакета для этой системы, и {productName} сохранит его локально." @@ -1990,7 +1990,7 @@ msgstr "опрос" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Параметр redirect_uri обязателен, если область действия бота не является единственной." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Многоразовый компонент для пустых состояний, ошибок и сообщений о статусе." @@ -3891,7 +3891,7 @@ msgstr "Приложения" msgid "Arabic" msgstr "Арабский" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Архив" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Автопрокрутка" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Доступно" @@ -5243,26 +5243,6 @@ msgstr "Размытие" msgid "Blur strength" msgstr "Интенсивность размытия" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Основной текст" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Жирный" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Жирный заголовок" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Жирный заголовок" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Варианты кнопок" msgid "Button with context menu" msgstr "Кнопка с контекстным меню" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Кнопки" @@ -5989,11 +5969,6 @@ msgstr "Не удалось установить набор стикеров" msgid "Captcha verification failed. Try again." msgstr "Проверка капчи не удалась. Попробуйте ещё раз." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Подпись" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Сбросить все активные переопределения" msgid "Clear all attachment mocks" msgstr "Удалить все макеты вложений" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Сбросить все переопределения токенов" @@ -7215,7 +7190,7 @@ msgstr "Удалить макет для этого вложения" msgid "Clear nickname" msgstr "Очистить никнейм" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Сбросить настройки" @@ -7299,7 +7274,7 @@ msgstr "Очистил тему." msgid "Clearing trusted domains..." msgstr "Очистка доверенных доменов..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Очищает быстрые CSS-стили, импортированные темы, загруженные ресурсы и ссылки на локальные файлы на этом устройстве." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Нажмите, чтобы забрать подарок!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Нажмите, чтобы скопировать" @@ -8825,7 +8800,7 @@ msgstr "Скопировать ссылку-приглашение" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Копировать ссылку" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Не удалось изменить цикл оплаты" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Не удалось проверить наличие обновлений" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Не удалось удалить ваши сообщения" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Не удалось загрузить обновление для ПК" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Не удалось начать подключение" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Не удалось запустить обновление для ПК" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Нажата кнопка «Опасность»." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "По умолчанию отключено на мобильных ус #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Ваши сообщения удалены." msgid "Deleted." msgstr "Удалено." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Изящный и легкий шрифт" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Доступно обновление для ПК. Выберите пакет Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Обновление для ПК готово" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Настольная версия {version} была загружена. Перезапустите {productName}, чтобы завершить установку." @@ -11753,11 +11723,9 @@ msgstr "Отклонить упоминание" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Из-за законов о контенте для взрослых в регионе {regionName} этот медиафайл недоступен в вашем текущем регионе." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Дублировать" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Изменить описание профиля" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Редактируемый текст" @@ -13001,7 +12969,7 @@ msgstr "Включить срок действия вложений" msgid "Enable audio" msgstr "Включить звук" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Включить бета-функцию" @@ -13038,7 +13006,7 @@ msgstr "Включить режим разработчика" msgid "Enable email delivery" msgstr "Включить доставку электронной почты" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Включить дополнительную опцию" @@ -13660,7 +13628,7 @@ msgstr "Ошибка" msgid "error code {code}" msgstr "код ошибки {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Ошибка при отображении контента" @@ -14095,11 +14063,6 @@ msgstr "Внешние ссылки могут быть опасны. Будьт msgid "Extra large" msgstr "Очень большой" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Сверхсветлый" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Первый клик" msgid "First click pass-through when unfocused" msgstr "Пропускать первый клик, когда окно неактивно" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Первый вариант" @@ -14917,10 +14880,6 @@ msgstr "Как в основных настройках • {effectiveValue}%" msgid "Font" msgstr "Шрифт" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Насыщенность шрифта" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "С {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "из <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Общие" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Создайте ссылку для публикации или скопируйте объединенный пользовательский CSS." @@ -15481,11 +15440,6 @@ msgstr "Сгенерировать новый код" msgid "Generating code…" msgstr "Генерируем код…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Мягкое и воздушное отображение текста" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Он" msgid "Header" msgstr "Заголовок" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Заголовок" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Индексирование канала" msgid "Indicator" msgstr "Индикатор" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Индикаторы и статус" @@ -17557,7 +17506,7 @@ msgstr "Состояния полей ввода" msgid "Input volume" msgstr "Громкость ввода" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Ввод и текст" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Установить набор стикеров" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Установлено" @@ -18094,15 +18043,6 @@ msgstr "Пока тихо..." msgid "Italian" msgstr "Итальянский" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Курсив" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Демонстрация курсива" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Язык" msgid "Language settings" msgstr "Настройки языка" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Поддержка языков" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Языки" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Крупный" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Пожизненный {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Светлый" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux (устройство по умолчанию)" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Пакет для Linux" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Отметить верхний канал входящих как прочитанный" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Разметка" @@ -19945,10 +19877,8 @@ msgstr "Размер медиафайлов" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Средний" @@ -20820,7 +20750,7 @@ msgstr "Ещё" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Ещё" @@ -20993,10 +20923,6 @@ msgstr "Многофакторная аутентификация" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Многоязычный контент" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Новые пользователи пока не могут присоединиться. Вы можете создать аккаунт или войти, а затем попробовать эту ссылку позже." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Новая версия" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Не найдено эмодзи по вашему запросу." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Нет эмодзи, соответствующих запросу" @@ -22363,11 +22289,6 @@ msgstr "Нет" msgid "None (normal behavior)" msgstr "Нет (обычное поведение)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Обычный" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Это сообщение видно только вам. <0>Скрыть" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Непрозрачность" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Открыть выбор даты" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Открыть загрузки для ПК" @@ -23165,6 +23086,11 @@ msgstr "Открыть быстрое переключение" msgid "Open settings" msgstr "Открыть настройки" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Открыть центр приложений" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Операционная система" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Включить экспериментальные настройки для отображения значков непрочитанных сообщений в отдельных сообществах и каналах" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Оптимизирован для длинных текстов" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Оптимизация камеры..." @@ -23483,7 +23404,7 @@ msgstr "Срок возврата истёк" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Группы аватаров с несколькими пользователями и автоматическим подсчётом переполнения." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Наложения и меню" @@ -23886,11 +23807,6 @@ msgstr "Громкость отдельных звуков" msgid "Per-window audio isn't available on this build of macOS." msgstr "Потоковая передача звука из отдельного окна недоступна в этой сборке macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Идеально для повседневного контента" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Должность" msgid "Power saving" msgstr "Энергосбережение" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Мощно и цепляет внимание" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Основная (отключено)" msgid "Primary accent color" msgstr "Основной акцентный цвет" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Основное действие" @@ -25724,11 +25635,6 @@ msgstr "Регистрация" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Регистрация сейчас закрыта. Чтобы создать аккаунт, используйте регистрационную ссылку от администратора." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Обычный" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Обычная кнопка" @@ -26198,7 +26104,7 @@ msgstr "Снят лимит пользователей." msgid "Removed timeout from {0}" msgstr "Снял ограничение с {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Удаляет все переопределения для каждой переменной, но сохраняет вашу библиотеку и ресурсы нетронутыми." @@ -26703,7 +26609,7 @@ msgstr "Сбросить данные приложения" msgid "Reset app data and restart" msgstr "Сбросить данные приложения и перезапустить" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Сбросить данные пользовательской темы" @@ -26714,7 +26620,7 @@ msgstr "Сбросить данные пользовательской темы? #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Сбросить данные" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Перезапустить {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Перезапустить {productName}" @@ -28030,7 +27936,7 @@ msgstr "Поиск" msgid "Searching people..." msgstr "Поиск людей..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Второй вариант" @@ -28047,7 +27953,7 @@ msgstr "Дополнительная (отключена)" msgid "Secondary accent color" msgstr "Дополнительный акцентный цвет" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Дополнительное действие" @@ -28339,7 +28245,7 @@ msgstr "Выделено: {0}" msgid "Selection: {0} (max {1})" msgstr "Выбрано: {0} (макс. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Выбранное" @@ -28369,16 +28275,6 @@ msgstr "Принудительный режим самостоятельного msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Возврат средств доступен в течение 3 дней после оплаты, но не чаще одного раза в 30 дней. Возврат средств за подписку отменяет ее. Покупатели из ЕС/ЕЭЗ отказываются от 14-дневного права на отказ при оформлении заказа, чтобы получить немедленный доступ к контенту. Используйте кнопку возврата средств в приложении вместо оспаривания платежа. Оспаривание платежа может привести к безвозвратному ограничению вашей учетной записи. Stripe безопасно обрабатывает платежи. Мы никогда не видим полный номер вашей карты." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Полужирный" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Полужирный крупный" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Устанавливает общую громкость для всех #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Настройки" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Несколько человек печатают..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Поделиться" @@ -29002,7 +28898,7 @@ msgstr "Поделиться" msgid "Share action." msgstr "Поделиться." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Поделиться активной темой" @@ -29035,7 +28931,7 @@ msgstr "Источник трансляции" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Поделитесь возможностями {premiumProductName} с друзьями, купив подарочную подписку." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Поделиться темой" @@ -29963,11 +29859,6 @@ msgstr "Слайдер с шагом" msgid "Sliders" msgstr "Ползунки" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Немного более жирный шрифт" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Оскорбления, дегуманизирующие высказывания или нападки на защищённые группы." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Маленький" @@ -30161,11 +30050,6 @@ msgstr "Привязка к шагу 5." msgid "Social" msgstr "Соцсети" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Мягкое и легкое чтение" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Индикаторы статуса" msgid "Status page" msgstr "Страница состояния" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Статус" @@ -31291,15 +31175,6 @@ msgstr "Stripe сообщил, что карта выпущена в {countryNam msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Высокое качество при умеренной нагрузке на процессор. Хороший запасной вариант Chromium для демонстрации экрана." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Четкая визуальная иерархия" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Варианты стиля" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Сценарии подписки" msgid "Subtext" msgstr "Подтекст" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Подзаголовок" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Тестирование разворотов URL-адресов и от #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Текст" @@ -31973,6 +31841,10 @@ msgstr "Текстовые каналы" msgid "Text formatting" msgstr "Форматирование текста" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Текст будет отображаться с использованием оттенков серого вместо ClearType при включенной прозрачности, поэтому он будет выглядеть мягче." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Возможно, сообщество, которое вы ищете, было удалено или у вас нет к нему доступа." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Не удалось загрузить обновление для компьютера. Повторите попытку с помощью кнопки обновления, когда ваше соединение станет стабильным." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Обновление для настольной версии загружено. Перезапустите {productName}, чтобы завершить установку." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Загруженный файл сохранен на вашем компьютере. Установите его с помощью обычного менеджера пакетов." @@ -32442,12 +32314,7 @@ msgstr "Возможно, они не принимают от вас сообщ msgid "They're not accepting friend requests right now." msgstr "Они сейчас не принимают запросы на добавление в друзья." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Тонкий" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Третий вариант" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Слишком много реакций. Удалите некоторые, чтобы добавить новые." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Это пример текста в текстовом поле." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Это описание первого варианта" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Это описание второго варианта" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Это описание третьего варианта" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Будут удалены все пользовательские сочетания клавиш и восстановлены все встроенные. Это действие отменить нельзя." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Срок действия этой ссылки для сброса пароля истёк. Ссылки для сброса действуют 24 часа. Запросите новую." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Эта ссылка для сброса пароля истекла. Ссылки для сброса действительны в течение 1 часа. Пожалуйста, запросите новую." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Этот переключатель отключен и не может msgid "This switch is disabled in the checked state" msgstr "Этот переключатель недоступен в выбранном состоянии" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Этот текст демонстрирует жирный стиль заголовка" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Этот текст демонстрирует жирный заголовок" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Этот текст демонстрирует курсивное начертание" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Этот текст демонстрирует крупный полужирный шрифт" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Этот текст демонстрирует обычный стиль" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Этот текст демонстрирует полужирное начертание" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Это поле автоматически расширяется от 4 до 12 строк по мере ввода текста." @@ -33417,11 +33254,6 @@ msgstr "Часовой пояс" msgid "Tip" msgstr "Подсказка" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Заголовок" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Введите цвет (hex, rgb(), hsl или название) или msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Введите цвет (hex, rgb(), hsl() или название) или используйте палитру." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Размер шрифта" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Только индикатор набора" msgid "Typing state" msgstr "Статус набора сообщения" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Шрифт" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Демонстрация типографской шкалы" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Универсальный вариант. Низкое качество #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Неизвестно" @@ -34649,8 +34469,8 @@ msgstr "Безлимитные эмодзи" msgid "Unlimited stickers" msgstr "Безлимитные стикеры" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Разблокируйте {lockedEmojiCount, plural, one {# эмодзи} few {# эмодзи} many {# эмодзи} other {# эмодзи}} из {communityCount, plural, one {# сообщества} few {# сообществ} many {# сообществ} other {# сообществ}} с {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Безымянный канал" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Безымянная группа" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Мы обновили наши правила. Просмотрите и примите их, чтобы продолжить." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Веб {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Вы редактируете свой профиль для этого сообщества. Он будет виден только здесь и заменит ваш глобальный профиль." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Теперь вы разработчик!" diff --git a/fluxer_app/src/features/i18n/locales/sv-SE/messages.po b/fluxer_app/src/features/i18n/locales/sv-SE/messages.po index 34032edb0..5f3ffabb5 100644 --- a/fluxer_app/src/features/i18n/locales/sv-SE/messages.po +++ b/fluxer_app/src/features/i18n/locales/sv-SE/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} Desktop {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName}s communityteam" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} kunde inte ansluta till uppdateringstjänsten. Kontrollera din anslutning och försök igen." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} kunde inte starta om och installera den nedladdade uppdateringen. Försök igen via uppdateringsknappen." @@ -1210,8 +1210,8 @@ msgstr "{productName} ordmärke" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} online" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Grupp för {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "ett värdnamn, t.ex. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "En Linux-uppdatering för skrivbordet är tillgänglig. Välj paketformat för det här systemet så kommer {productName} att spara det lokalt." @@ -1990,7 +1990,7 @@ msgstr "en omröstning" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "En redirect_uri krävs när bot-omfånget inte är det enda omfånget." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "En återanvändbar komponent för tomma lägen, fel och statusmeddelanden." @@ -3891,7 +3891,7 @@ msgstr "Appar" msgid "Arabic" msgstr "Arabiska" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Arkivera" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Automatisk skrollning" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Tillgänglig" @@ -5243,26 +5243,6 @@ msgstr "Oskärpa" msgid "Blur strength" msgstr "Oskärpa" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Brödtext" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Fet" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Fet rubrik" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Fet titel" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Knappvarianter" msgid "Button with context menu" msgstr "Knapp med snabbmeny" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Knappar" @@ -5989,11 +5969,6 @@ msgstr "Kan inte installera stickerpaketet" msgid "Captcha verification failed. Try again." msgstr "Verifiering av captcha misslyckades. Försök igen." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Bildtext" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Rensa alla aktiva åsidosättningar" msgid "Clear all attachment mocks" msgstr "Rensa alla bifogade skisser" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Rensa alla tokenåsidosättningar" @@ -7215,7 +7190,7 @@ msgstr "Rensa mock för den här bilagan" msgid "Clear nickname" msgstr "Rensa smeknamn" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Rensa åsidosättningar" @@ -7299,7 +7274,7 @@ msgstr "Tog bort ämnet." msgid "Clearing trusted domains..." msgstr "Rensar betrodda domäner..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Rensar snabb-CSS, importerade teman, uppladdade tillgångar och lokala filreferenser på den här enheten." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Klicka för att hämta din present!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Klicka för att kopiera" @@ -8825,7 +8800,7 @@ msgstr "Kopiera inbjudningslänk" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Kopiera länk" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Kunde inte ändra din faktureringsperiod" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Kunde inte söka efter uppdateringar" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Kunde inte radera dina meddelanden" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Kunde inte ladda ner skrivbordsuppdateringen" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Kunde inte starta anslutningen" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Kunde inte starta skrivbordsuppdateringen" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Farlighetsknapp klickad." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Standardinställningen är av på mobila enheter för att spara batteri #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Dina meddelanden har raderats." msgid "Deleted." msgstr "Raderad." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Delikat och lätt typografi" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Skrivbordsuppdatering tillgänglig. Välj ett Linux-paket." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Skrivbordsuppdatering redo" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Skrivbordsversionen {version} har laddats ned. Starta om {productName} för att slutföra installationen." @@ -11753,11 +11723,9 @@ msgstr "Avfärda omnämnande" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "På grund av lagar om vuxet innehåll i {regionName} är det här mediet inte tillgängligt från din nuvarande region." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Duplicera" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Redigera din profiltext" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Redigerbar text" @@ -13001,7 +12969,7 @@ msgstr "Aktivera borttagning av bilagor" msgid "Enable audio" msgstr "Aktivera ljud" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Aktivera beta-funktion" @@ -13038,7 +13006,7 @@ msgstr "Aktivera utvecklarläge" msgid "Enable email delivery" msgstr "Aktivera e-postleverans" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Aktivera extra alternativ" @@ -13660,7 +13628,7 @@ msgstr "Ett fel uppstod" msgid "error code {code}" msgstr "Felkod {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Det gick inte att visa innehållet" @@ -14095,11 +14063,6 @@ msgstr "Externa länkar kan vara farliga. Var försiktig." msgid "Extra large" msgstr "Extra stor" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Extralätt" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Första klicket" msgid "First click pass-through when unfocused" msgstr "Klicka igenom när appen inte är i fokus" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Första alternativet" @@ -14917,10 +14880,6 @@ msgstr "Följer huvudinställning • {effectiveValue}%" msgid "Font" msgstr "Teckensnitt" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Teckensnittsvikter" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "Från {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "från <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Allmänt" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Generera en delbar länk eller kopiera din kombinerade anpassade CSS." @@ -15481,11 +15440,6 @@ msgstr "Generera ny kod" msgid "Generating code…" msgstr "Genererar kod…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Mjuk och luftig textvisning" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Han" msgid "Header" msgstr "Rubrik" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Rubrik" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Indexerar kanal" msgid "Indicator" msgstr "Indikator" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Indikatorer och status" @@ -17557,7 +17506,7 @@ msgstr "Inmatningslägen" msgid "Input volume" msgstr "Ingångsvolym" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Inmatning och text" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Installera stickerpaket" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Installerad" @@ -18094,15 +18043,6 @@ msgstr "Det är lugnt just nu..." msgid "Italian" msgstr "Italienska" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Kursiv" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Demonstration av kursiv stil" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Språk" msgid "Language settings" msgstr "Språkinställningar" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Språkstöd" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Språk" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Stor" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Livstid {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Ljus" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux standard" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux-paket" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Markera översta inkorgskanalen som läst" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Mediastorlek" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Medel" @@ -20820,7 +20750,7 @@ msgstr "Mer" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Fler åtgärder" @@ -20993,10 +20923,6 @@ msgstr "Multifaktor" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Flerspråkigt innehåll" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Nya användare kan inte gå med just nu. Du kan fortfarande skapa ett konto eller logga in och sedan försöka med den här länken igen senare." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Ny version" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Inga emojis hittades som matchar din sökning." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Inga emojier matchar sökningen" @@ -22363,11 +22289,6 @@ msgstr "Ingen" msgid "None (normal behavior)" msgstr "Ingen (normalt beteende)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normal" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Bara du kan se det här meddelandet. <0>Stäng" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Opacitet" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Öppna datumväljaren" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Öppna nedladdningar för dator" @@ -23165,6 +23086,11 @@ msgstr "Öppna snabbväxlaren" msgid "Open settings" msgstr "Öppna inställningar" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Öppna programcenter" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Operativsystem" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Aktivera experimentella inställningar för att visa olästa meddelanden per grupp och kanal" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Optimerad för längre textstycken" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Optimerar kamera..." @@ -23483,7 +23404,7 @@ msgstr "Utanför återbetalningsperioden" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Överlappande avatargrupper som visar flera användare med automatisk räkning av överskott." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Överlägg och menyer" @@ -23886,11 +23807,6 @@ msgstr "Volym per ljud" msgid "Per-window audio isn't available on this build of macOS." msgstr "Ljud per fönster är inte tillgängligt i den här versionen av macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Perfekt för vardagsinnehåll" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Position" msgid "Power saving" msgstr "Strömsparläge" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Kraftfull och uppseendeväckande" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Primär (inaktiverad)" msgid "Primary accent color" msgstr "Primär accentfärg" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Primär åtgärd" @@ -25724,11 +25635,6 @@ msgstr "Registrering" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Registreringen är för närvarande stängd. Använd en registreringslänk från en administratör för att skapa ett konto." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Vanlig" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Vanlig knapp" @@ -26198,7 +26104,7 @@ msgstr "Tog bort användargränsen." msgid "Removed timeout from {0}" msgstr "Tog bort timeout från {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Tar bort alla åsidosättningar per variabel men behåller ditt bibliotek och dina tillgångar intakta." @@ -26703,7 +26609,7 @@ msgstr "Återställ appdata" msgid "Reset app data and restart" msgstr "Återställ appdata och starta om" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Återställ anpassad temadata" @@ -26714,7 +26620,7 @@ msgstr "Återställa anpassad temadata?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Återställ data" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Starta om {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Starta om {productName}" @@ -28030,7 +27936,7 @@ msgstr "Söker" msgid "Searching people..." msgstr "Söker personer..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Andra alternativet" @@ -28047,7 +27953,7 @@ msgstr "Sekundär (inaktiverad)" msgid "Secondary accent color" msgstr "Sekundär accentfärg" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Sekundär åtgärd" @@ -28339,7 +28245,7 @@ msgstr "Val: {0}" msgid "Selection: {0} (max {1})" msgstr "Val: {0} (max {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Val" @@ -28369,16 +28275,6 @@ msgstr "Åsidosätt egenvärdsläge" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Självbetjäningsåterbetalningar är tillgängliga inom 3 dagar efter betalning, en gång var 30:e dag. En återbetalning av en prenumeration avbryter den. Köpare inom EU/EES avsäger sig den 14-dagars ångerrätten vid utcheckning för att få omedelbar tillgång till innehållet. Använd återbetalningsknappen i appen istället för en chargeback. Chargebacks kan permanent begränsa ditt konto. Stripe hanterar betalningar säkert. Vi ser aldrig ditt fullständiga kortnummer." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Halvfet" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Halvfet stor" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Ställer in nivån för alla ljudeffekter. Enskilda ljudinställningar #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Inställningar" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Flera personer skriver..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Dela" @@ -29002,7 +28898,7 @@ msgstr "Dela" msgid "Share action." msgstr "Dela åtgärd." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Dela aktivt anpassat tema" @@ -29035,7 +28931,7 @@ msgstr "Dela källa" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Dela upplevelsen med {premiumProductName} med dina vänner genom att köpa en presentprenumeration." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Dela tema" @@ -29963,11 +29859,6 @@ msgstr "Reglage med stegvärden" msgid "Sliders" msgstr "Reglage" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Något fetare betoning" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Nedsättande språk, avhumaniserande språk eller attacker mot skyddade grupper." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Liten" @@ -30161,11 +30050,6 @@ msgstr "Fäster vid steg om 5." msgid "Social" msgstr "Socialt" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Mjuk och lättläst upplevelse" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Statusindikatorer" msgid "Status page" msgstr "Statussida" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Statusfält" @@ -31291,15 +31175,6 @@ msgstr "Stripe rapporterade ett kort utfärdat i {countryName}. För att betala msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Hög kvalitet till måttlig CPU-kostnad. Bra Chromium-reservlösning för skärmdelning." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Tydlig visuell hierarki" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Stilvariationer" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Prenumerationsscenarier" msgid "Subtext" msgstr "Undertext" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Underrubrik" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Testa URL-förhandsvisningar och inbäddningar" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Text" @@ -31973,6 +31841,10 @@ msgstr "Textkanaler" msgid "Text formatting" msgstr "Textformatering" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Text renderas med gråskaleantialiasing istället för ClearType när transparens är aktiverat, så det kommer att se mjukare ut." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Communityn du letar efter kan ha raderats eller så har du inte åtkomst till den." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Det gick inte att ladda ner skrivbordsuppdateringen. Försök igen via uppdateringsknappen när din anslutning är stabil." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Desktopuppdateringen har laddats ned. Starta om {productName} för att slutföra installationen." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Den nedladdade filen sparas på din dator. Installera den med din vanliga pakethanterare." @@ -32442,12 +32314,7 @@ msgstr "De kanske inte tar emot meddelanden från dig, eller så delar ni inte l msgid "They're not accepting friend requests right now." msgstr "De tar inte emot vänförfrågningar just nu." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Tunn" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Tredje alternativet" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Det här är ett tungt meddelande. Några reaktioner måste tas bort innan du kan lägga till fler." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Det här är exempeltext i textrutan." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Det här är den första alternativbeskrivningen" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Det här är beskrivningen för det andra alternativet" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Det här är beskrivningen för det tredje alternativet" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Detta tar bort alla anpassade genvägar och återaktiverar alla inbyggda genvägar. Detta kan inte ångras." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Den här återställningslänken har gått ut. Återställningslänkar är giltiga i 24 timmar. Begär en ny." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Den här återställningslänken har gått ut. Återställningslänkar är giltiga i 1 timme. Vänligen begär en ny." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Den här reglaget är inaktiverat och kan inte ändras" msgid "This switch is disabled in the checked state" msgstr "Den här omkopplaren är inaktiverad i markerat läge" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Den här texten visar fet stil för rubriker" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Den här texten visar fetstil för rubriker" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Den här texten visar kursiv stil" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Den här texten visar stor halvfet stil" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Den här texten visar normal stil" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Den här texten visar halvfet stil" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Textrutan expanderar automatiskt mellan 4 och 12 rader medan du skriver." @@ -33417,11 +33254,6 @@ msgstr "Tidszon" msgid "Tip" msgstr "Tips" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Rubrik" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Skriv en färg (hex, rgb(), hsl eller namn), eller använd färgväljare msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Skriv en färg (hex, rgb(), hsl() eller namn) eller använd färgväljaren." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Textstorlek" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Endast skrivindikator" msgid "Typing state" msgstr "Skrivstatus" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Typografi" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Demonstration av typsnittsskala" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Universell reserv. Lägsta kvalitet, men fungerar överallt." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Okänt" @@ -34649,8 +34469,8 @@ msgstr "Obegränsat antal emoji" msgid "Unlimited stickers" msgstr "Obegränsat antal dekaler" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Lås upp {lockedEmojiCount, plural, one {# anpassad emoji} other {# anpassade emojis}} från {communityCount, plural, one {# community} other {# communities}} med {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Namnlös kanal" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Namnlös grupp" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Vi har uppdaterat våra policyer. Granska och godkänn dem för att fortsätta." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Webb {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Du redigerar din profil för den här communityn. Den här profilen kommer bara att synas i den här communityn och kommer att åsidosätta din globala profil." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Du är nu utvecklare!" diff --git a/fluxer_app/src/features/i18n/locales/th/messages.po b/fluxer_app/src/features/i18n/locales/th/messages.po index bc59cd4c1..94ba0ced1 100644 --- a/fluxer_app/src/features/i18n/locales/th/messages.po +++ b/fluxer_app/src/features/i18n/locales/th/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} เดสก์ท็อป {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "ทีมชุมชน {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} ไม่สามารถเชื่อมต่อกับบริการอัปเดตได้ โปรดตรวจสอบการเชื่อมต่อของคุณและลองใหม่อีกครั้ง" #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} ไม่สามารถเริ่มต้นการทำงานใหม่เพื่อติดตั้งอัปเดตที่ดาวน์โหลดมาได้ โปรดลองใหม่อีกครั้งจากปุ่มอัปเดต" @@ -1210,8 +1210,8 @@ msgstr "โลโก้ {productName}" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} เว็บ {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} ออนไลน์" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "กลุ่มของ{resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "ชื่อโฮสต์ เช่น {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "มีการอัปเดตสำหรับ Fluxer บนระบบปฏิบัติการ Linux เลือกรูปแบบแพ็กเกจสำหรับระบบนี้ แล้ว {productName} จะบันทึกไว้ในเครื่อง" @@ -1990,7 +1990,7 @@ msgstr "โพล" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "ต้องระบุ redirect_uri เมื่อบอทไม่ใช่ขอบเขตเดียว" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "คอมโพเนนต์ที่ใช้ซ้ำได้สำหรับสถานะว่างเปล่า ข้อผิดพลาด และข้อความสถานะ" @@ -3891,7 +3891,7 @@ msgstr "แอป" msgid "Arabic" msgstr "อาหรับ" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "คลัง" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "เลื่อนอัตโนมัติ" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "พร้อมใช้งาน" @@ -5243,26 +5243,6 @@ msgstr "เบลอ" msgid "Blur strength" msgstr "ระดับความเบลอ" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "เนื้อหา" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "ตัวหนา" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "หัวข้อตัวหนา" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "หัวข้อตัวหนา" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "รูปแบบปุ่ม" msgid "Button with context menu" msgstr "ปุ่มพร้อมเมนูบริบท" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "ปุ่ม" @@ -5989,11 +5969,6 @@ msgstr "ติดตั้งชุดสติกเกอร์ไม่ได msgid "Captcha verification failed. Try again." msgstr "การยืนยันแคปต์ชาล้มเหลว โปรดลองอีกครั้ง" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "คำบรรยาย" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "ล้างการตั้งค่าที่กำหนดเอ msgid "Clear all attachment mocks" msgstr "ล้างไฟล์แนบจำลองทั้งหมด" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "ล้างการแทนที่โทเค็นทั้งหมด" @@ -7215,7 +7190,7 @@ msgstr "ล้างม็อกสำหรับไฟล์แนบนี้ msgid "Clear nickname" msgstr "ล้างชื่อเล่น" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "ล้างการตั้งค่าที่กำหนดเอง" @@ -7299,7 +7274,7 @@ msgstr "ล้างหัวข้อแล้ว" msgid "Clearing trusted domains..." msgstr "กำลังล้างโดเมนที่เชื่อถือได้..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "ล้าง CSS ด่วน, ธีมที่นำเข้า, เนื้อหาที่อัปโหลด และการอ้างอิงไฟล์ในเครื่องบนอุปกรณ์นี้" @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "คลิกเพื่อรับของขวัญของคุณ!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "แตะเพื่อคัดลอก" @@ -8825,7 +8800,7 @@ msgstr "คัดลอก URL คำเชิญ" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "คัดลอกลิงก์" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "เปลี่ยนรอบบิลไม่ได้" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "ตรวจสอบการอัปเดตไม่สำเร็จ" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "ลบข้อความของคุณไม่ได้" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "ดาวน์โหลดการอัปเดตเดสก์ท็อปไม่ได้" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "ไม่สามารถเริ่มการเชื่อมต่อได้" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "ไม่สามารถเริ่มอัปเดตเดสก์ท็อปได้" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "คลิกที่ปุ่มอันตรายแล้ว" #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "ค่าเริ่มต้นคือปิดในมือถื #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "ลบข้อความของคุณแล้ว" msgid "Deleted." msgstr "ลบแล้ว" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "ตัวอักษรที่ดูละเอียดอ่อนและเบา" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "มีการอัปเดตเดสก์ท็อป เลือกแพ็กเกจ Linux" #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "อัปเดตเดสก์ท็อปพร้อมใช้งานแล้ว" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "มีการดาวน์โหลดเวอร์ชันเดสก์ท็อป {version} แล้ว รีสตาร์ท {productName} เพื่อดำเนินการติดตั้งให้เสร็จสมบูรณ์" @@ -11753,11 +11723,9 @@ msgstr "ปิดการกล่าวถึง" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "เนื่องจากกฎหมายเนื้อหาสำหรับผู้ใหญ่ใน {regionName} สื่อนี้จึงไม่สามารถใช้งานได้ในภูมิภาคปัจจุบันของคุณ" #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "ทำซ้ำ" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "แก้ไขประวัติส่วนตัว" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "ข้อความที่แก้ไขได้" @@ -13001,7 +12969,7 @@ msgstr "เปิดใช้งานการหมดอายุไฟล์ msgid "Enable audio" msgstr "เปิดเสียง" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "เปิดใช้ฟีเจอร์เบต้า" @@ -13038,7 +13006,7 @@ msgstr "เปิดโหมดนักพัฒนา" msgid "Enable email delivery" msgstr "เปิดใช้งานการส่งอีเมล" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "เปิดตัวเลือกเพิ่มเติม" @@ -13660,7 +13628,7 @@ msgstr "เกิดข้อผิดพลาด" msgid "error code {code}" msgstr "รหัสข้อผิดพลาด {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "แสดงเนื้อหาไม่ได้" @@ -14095,11 +14063,6 @@ msgstr "ลิงก์ภายนอกอาจเป็นอันตรา msgid "Extra large" msgstr "ใหญ่พิเศษ" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "บางพิเศษ" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "คลิกแรก" msgid "First click pass-through when unfocused" msgstr "คลิกผ่านได้แม้ไม่ได้โฟกัส" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "ตัวเลือกแรก" @@ -14917,10 +14880,6 @@ msgstr "ติดตามหลัก • {effectiveValue}%" msgid "Font" msgstr "แบบอักษร" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "น้ำหนักแบบอักษร" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "ตั้งแต่ {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "จาก <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "ทั่วไป" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "สร้างลิงก์ที่แชร์ได้ หรือคัดลอก CSS ที่กำหนดเองแบบรวมของคุณ" @@ -15481,11 +15440,6 @@ msgstr "สร้างรหัสใหม่" msgid "Generating code…" msgstr "กำลังสร้างรหัส…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "ข้อความที่ดูสบายตา" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "เขา" msgid "Header" msgstr "ส่วนหัว" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "หัวเรื่อง" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "กำลังจัดทำดัชนีช่อง" msgid "Indicator" msgstr "ตัวบ่งชี้" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "ตัวบ่งชี้และสถานะ" @@ -17557,7 +17506,7 @@ msgstr "สถานะอินพุต" msgid "Input volume" msgstr "ระดับเสียงไมโครโฟน" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "การป้อนข้อมูลและข้อความ" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "ติดตั้งชุดสติกเกอร์" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "ติดตั้งแล้ว" @@ -18094,15 +18043,6 @@ msgstr "ตอนนี้เงียบจังเลย..." msgid "Italian" msgstr "อิตาลี" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "ตัวเอียง" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "ตัวอย่างสไตล์ตัวเอียง" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "ภาษา" msgid "Language settings" msgstr "การตั้งค่าภาษา" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "ภาษาที่รองรับ" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "ภาษา" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "ใหญ่" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "{premiumProductName} ตลอดชีพ" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "สว่าง" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "ค่าเริ่มต้นของ Linux" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "แพ็กเกจ Linux" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "ทำเครื่องหมายช่องในกล่องขาเข้าด้านบนว่าอ่านแล้ว" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "มาร์กดาวน์" @@ -19945,10 +19877,8 @@ msgstr "ขนาดสื่อ" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "ปานกลาง" @@ -20820,7 +20750,7 @@ msgstr "เพิ่มเติม" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "เพิ่มเติม" @@ -20993,10 +20923,6 @@ msgstr "การยืนยันตัวตนหลายชั้น" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "เนื้อหาหลายภาษา" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "ผู้ใช้ใหม่ไม่สามารถเข้าร่วมได้ในขณะนี้ คุณยังสามารถสร้างบัญชีหรือลงชื่อเข้าใช้ แล้วลองใช้ลิงก์นี้อีกครั้งในภายหลังได้" #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "เวอร์ชันใหม่" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "ไม่พบอิโมจิที่ตรงกับการค้นหาของคุณ" #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "ไม่พบอิโมจิที่ตรงกับการค้นหา" @@ -22363,11 +22289,6 @@ msgstr "ไม่มี" msgid "None (normal behavior)" msgstr "ไม่มี (ลักษณะการทำงานปกติ)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "ปกติ" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "คุณเท่านั้นที่เห็นข้อความนี้ได้ <0>ปิด" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "ความทึบ" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "เปิดปฏิทินเลือกวันที่" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "เปิดหน้าดาวน์โหลดสำหรับเดสก์ท็อป" @@ -23165,6 +23086,11 @@ msgstr "เปิดตัวสลับด่วน" msgid "Open settings" msgstr "เปิดการตั้งค่า" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "เปิดศูนย์ซอฟต์แวร์" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "ระบบปฏิบัติการ" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "เปิดใช้งานการควบคุมจำนวนข้อความที่ยังไม่ได้อ่านในแต่ละกลุ่มและช่องทดลองใช้" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "ปรับให้เหมาะกับการอ่านข้อความยาวๆ" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "กำลังปรับปรุงกล้อง..." @@ -23483,7 +23404,7 @@ msgstr "เกินระยะเวลาที่ขอคืนเงิน msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "กลุ่มรูปโปรไฟล์ที่ซ้อนกันแสดงผู้ใช้หลายคนพร้อมจำนวนผู้ใช้ที่เกินมาโดยอัตโนมัติ" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "การซ้อนทับและเมนู" @@ -23886,11 +23807,6 @@ msgstr "ระดับเสียงแต่ละเสียง" msgid "Per-window audio isn't available on this build of macOS." msgstr "เสียงต่อหน้าต่างไม่พร้อมใช้งานบน macOS บิลด์นี้" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "เหมาะสำหรับคอนเทนต์ทั่วไปในทุกวัน" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "ตำแหน่ง" msgid "Power saving" msgstr "ประหยัดพลังงาน" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "โดดเด่น สะดุดตา" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "หลัก (ปิดใช้งาน)" msgid "Primary accent color" msgstr "สีหลัก" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "การดำเนินการหลัก" @@ -25724,11 +25635,6 @@ msgstr "การลงทะเบียน" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "ขณะนี้ปิดการลงทะเบียนอยู่ ใช้ลิงก์ลงทะเบียนจากผู้ดูแลระบบเพื่อสร้างบัญชี" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "ปกติ" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "ปุ่มปกติ" @@ -26198,7 +26104,7 @@ msgstr "นำขีดจำกัดผู้ใช้ออกแล้ว" msgid "Removed timeout from {0}" msgstr "นำการจำกัดเวลาของ {0} ออกแล้ว" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "ลบการตั้งค่าเฉพาะตัวแปรทั้งหมด แต่ยังคงเก็บไลบรารีและเนื้อหาของคุณไว้" @@ -26703,7 +26609,7 @@ msgstr "รีเซ็ตข้อมูลแอป" msgid "Reset app data and restart" msgstr "รีเซ็ตข้อมูลแอปและเริ่มใหม่" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "รีเซ็ตข้อมูลธีมที่กำหนดเอง" @@ -26714,7 +26620,7 @@ msgstr "รีเซ็ตข้อมูลธีมที่กำหนดเ #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "รีเซ็ตข้อมูล" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "รีสตาร์ท {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "เริ่มระบบ {productName} ใหม่" @@ -28030,7 +27936,7 @@ msgstr "กำลังค้นหา" msgid "Searching people..." msgstr "กำลังค้นหาผู้คน..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "ตัวเลือกที่สอง" @@ -28047,7 +27953,7 @@ msgstr "รอง (ปิดใช้งาน)" msgid "Secondary accent color" msgstr "สีเน้นรอง" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "การดำเนินการรอง" @@ -28339,7 +28245,7 @@ msgstr "ที่เลือก: {0}" msgid "Selection: {0} (max {1})" msgstr "ที่เลือก: {0} (สูงสุด {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "รายการที่เลือก" @@ -28369,16 +28275,6 @@ msgstr "โหมดโฮสต์เอง" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "สามารถขอคืนเงินด้วยตนเองได้ภายใน 3 วันหลังชำระเงิน และทำได้เดือนละครั้ง การคืนเงินค่าสมัครสมาชิกจะถือเป็นการยกเลิกการสมัครสมาชิก ผู้ซื้อใน EU/EEA สละสิทธิ์การถอนเงินภายใน 14 วันเมื่อชำระเงินเพื่อเข้าถึงเนื้อหาได้ทันที โปรดใช้ปุ่มคืนเงินในแอปแทนการปฏิเสธการชำระเงิน การปฏิเสธการชำระเงินอาจจำกัดบัญชีของคุณอย่างถาวร Stripe จัดการการชำระเงินอย่างปลอดภัย เราไม่เคยเห็นหมายเลขบัตรเต็มของคุณ" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "กึ่งตัวหนา" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "ตัวหนาปานกลาง ขนาดใหญ่" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "ตั้งค่าระดับเสียงสำหรับเ #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "การตั้งค่า" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "หลายคนกำลังพิมพ์..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "แชร์" @@ -29002,7 +28898,7 @@ msgstr "แชร์" msgid "Share action." msgstr "แชร์" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "แชร์ธีมที่กำหนดเอง" @@ -29035,7 +28931,7 @@ msgstr "แชร์แหล่งที่มา" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "มอบประสบการณ์ {premiumProductName} ให้เพื่อนของคุณด้วยการซื้อการสมัครสมาชิกแบบของขวัญ" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "แชร์ธีม" @@ -29963,11 +29859,6 @@ msgstr "แถบเลื่อนพร้อมค่าสเต็ป" msgid "Sliders" msgstr "แถบเลื่อน" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "เน้นข้อความให้หนาขึ้นเล็กน้อย" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "คำหยาบคาย, ภาษาที่ลดทอนความเป็นมนุษย์ หรือการโจมตีกลุ่มที่ได้รับการคุ้มครอง" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "เล็ก" @@ -30161,11 +30050,6 @@ msgstr "ปรับเป็นช่วงละ 5" msgid "Social" msgstr "โซเชียล" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "อ่านง่ายสบายตา" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "ตัวบ่งชี้สถานะ" msgid "Status page" msgstr "หน้าสถานะ" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "สถานะ" @@ -31291,15 +31175,6 @@ msgstr "Stripe รายงานว่าบัตรออกใน {countryNa msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "คุณภาพดีเยี่ยม ใช้ CPU ปานกลาง เหมาะสำหรับแชร์หน้าจอบน Chromium" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "ลำดับความสำคัญของภาพที่ชัดเจน" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "รูปแบบตัวอักษร" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "สถานการณ์การสมัครสมาชิก" msgid "Subtext" msgstr "ข้อความรอง" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "คำบรรยาย" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "ทดสอบการแสดงตัวอย่าง URL แล #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "ข้อความ" @@ -31973,6 +31841,10 @@ msgstr "ช่องข้อความ" msgid "Text formatting" msgstr "จัดรูปแบบข้อความ" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "ข้อความจะแสดงผลด้วยการปรับความเรียบของสีเทาแทน ClearType เมื่อเปิดใช้งานการแสดงผลโปร่งใส ดังนั้นข้อความจะดูนุ่มนวลขึ้น" + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "ชุมชนที่คุณกำลังมองหาอาจถูกลบไปแล้ว หรือคุณอาจไม่ได้รับสิทธิ์เข้าถึง" #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "ไม่สามารถดาวน์โหลดการอัปเดตเดสก์ท็อปได้ โปรดลองอีกครั้งจากปุ่มอัปเดตเมื่อการเชื่อมต่อของคุณเสถียร" #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "การอัปเดตสำหรับเดสก์ท็อปได้ถูกดาวน์โหลดแล้ว รีสตาร์ท {productName} เพื่อดำเนินการติดตั้งให้เสร็จสิ้น" #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "ไฟล์ที่ดาวน์โหลดจะถูกบันทึกลงในคอมพิวเตอร์ของคุณ ติดตั้งด้วยตัวจัดการแพ็กเกจปกติของคุณ" @@ -32442,12 +32314,7 @@ msgstr "พวกเขาอาจไม่รับข้อความจา msgid "They're not accepting friend requests right now." msgstr "ขณะนี้พวกเขาไม่รับคำขอเป็นเพื่อน" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "บาง" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "ตัวเลือกที่ 3" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "ข้อความนี้มีคนกดรีแอคเยอะมากเลย ต้องลบรีแอคบางอันออกก่อนถึงจะเพิ่มใหม่ได้นะ" #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "นี่คือข้อความตัวอย่างในช่องข้อความ" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "นี่คือคำอธิบายตัวเลือกแรก" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "นี่คือคำอธิบายตัวเลือกที่สอง" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "นี่คือคำอธิบายตัวเลือกที่สาม" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "การดำเนินการนี้จะลบทางลัดที่กำหนดเองทั้งหมดและเปิดใช้งานทางลัดในตัวทั้งหมดอีกครั้ง การดำเนินการนี้ไม่สามารถเลิกทำได้" #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "ลิงก์รีเซ็ตนี้หมดอายุแล้ว ลิงก์รีเซ็ตมีอายุ 24 ชั่วโมง โปรดขอลิงก์ใหม่" +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "ลิงก์รีเซ็ตนี้หมดอายุแล้ว ลิงก์รีเซ็ตมีอายุ 1 ชั่วโมง โปรดขอลิงก์ใหม่" #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "สวิตช์นี้ปิดใช้งานอยู่แล msgid "This switch is disabled in the checked state" msgstr "สวิตช์นี้จะปิดใช้งานเมื่อเลือกอยู่" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "ข้อความนี้แสดงตัวอย่างรูปแบบหัวข้อตัวหนา" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "ข้อความนี้แสดงสไตล์ตัวหนาสำหรับชื่อเรื่อง" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "ข้อความนี้แสดงตัวอย่างการจัดรูปแบบตัวเอียง" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "ข้อความนี้แสดงสไตล์ตัวหนาปานกลางขนาดใหญ่" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "ข้อความนี้แสดงสไตล์ปกติ" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "ข้อความนี้แสดงสไตล์กึ่งตัวหนา" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "ช่องข้อความนี้จะขยายอัตโนมัติ 4 ถึง 12 แถวขณะที่คุณพิมพ์" @@ -33417,11 +33254,6 @@ msgstr "เขตเวลา" msgid "Tip" msgstr "เคล็ดลับ" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "ชื่อเรื่อง" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "พิมพ์สี (hex, rgb(), hsl หรือชื่อ) หร msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "พิมพ์สี (hex, rgb(), hsl() หรือชื่อ) หรือใช้เครื่องมือเลือกสี" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "ขนาดตัวอักษร" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "เฉพาะเมื่อกำลังพิมพ์" msgid "Typing state" msgstr "สถานะกำลังพิมพ์" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "ลักษณะตัวอักษร" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "ตัวอย่างสเกลตัวอักษร" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "ตัวเลือกสำรองแบบครอบคลุม #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "ไม่ทราบ" @@ -34649,8 +34469,8 @@ msgstr "อิโมจิไม่จำกัด" msgid "Unlimited stickers" msgstr "สติกเกอร์ไม่จำกัด" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "ปลดล็อก {lockedEmojiCount, plural, one {# อิโมจิที่กำหนดเอง} other {# อิโมจิที่กำหนดเอง}} จาก {communityCount, plural, one {# ชุมชน} other {# ชุมชน}} ด้วย {PREMIUM_PRODUCT_NAME}" @@ -34796,7 +34616,7 @@ msgstr "ช่องที่ไม่มีชื่อ" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "กลุ่มที่ไม่มีชื่อ" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "เราได้อัปเดตนโยบายของเราแล้ว โปรดตรวจสอบและยอมรับเพื่อดำเนินการต่อ" #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "เว็บ {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "คุณกำลังแก้ไขโปรไฟล์เฉพาะสำหรับชุมชนนี้ โปรไฟล์นี้จะแสดงเฉพาะในชุมชนนี้เท่านั้นและจะใช้แทนโปรไฟล์ส่วนกลางของคุณ" #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "ตอนนี้คุณเป็นนักพัฒนาแล้ว!" diff --git a/fluxer_app/src/features/i18n/locales/tr/messages.po b/fluxer_app/src/features/i18n/locales/tr/messages.po index 3ab92a799..8ce183453 100644 --- a/fluxer_app/src/features/i18n/locales/tr/messages.po +++ b/fluxer_app/src/features/i18n/locales/tr/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} Masaüstü {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName} Topluluk Ekibi" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName}, güncelleme hizmetine bağlanamadı. Bağlantınızı kontrol edin ve tekrar deneyin." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName}, indirilen güncellemeye geçiş yapamadı. Lütfen güncelleme butonundan tekrar deneyin." @@ -1210,8 +1210,8 @@ msgstr "{productName} logosu" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} çevrimiçi" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "{resolvedName} grubu" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "bir ana bilgisayar adı, örn. {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Linux masaüstü için bir güncelleme mevcut. Bu sistem için paket biçimini seçin ve {productName} uygulaması bunu yerel olarak kaydedecektir." @@ -1990,7 +1990,7 @@ msgstr "bir anket" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Bot kapsamı tek kapsam olmadığında bir redirect_uri gereklidir." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Boş durumlar, hatalar ve durum mesajları için yeniden kullanılabilir bir bileşen." @@ -3891,7 +3891,7 @@ msgstr "Uygulamalar" msgid "Arabic" msgstr "Arapça" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Arşivle" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Otomatik kaydırma" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Mevcut" @@ -5243,26 +5243,6 @@ msgstr "Bulanıklaştır" msgid "Blur strength" msgstr "Bulanıklık şiddeti" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Gövde" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Kalın" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Kalın başlık" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Kalın başlık" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Düğme çeşitleri" msgid "Button with context menu" msgstr "İçerik menülü düğme" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Düğmeler" @@ -5989,11 +5969,6 @@ msgstr "Çıkartma paketi yüklenemiyor" msgid "Captcha verification failed. Try again." msgstr "Captcha doğrulaması başarısız oldu. Tekrar deneyin." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Resim yazısı" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Tüm etkin geçersiz kılmaları temizle" msgid "Clear all attachment mocks" msgstr "Tüm ek önizlemelerini temizle" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Tüm jeton geçersiz kılmalarını temizle" @@ -7215,7 +7190,7 @@ msgstr "Bu ek için sahte veriyi temizle" msgid "Clear nickname" msgstr "Takma adı temizle" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Geçersiz kılmaları temizle" @@ -7299,7 +7274,7 @@ msgstr "Konuyu temizledi." msgid "Clearing trusted domains..." msgstr "Güvenilen alanlar temizleniyor..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Bu cihazdaki hızlı CSS'i, içe aktarılan temaları, yüklenen varlıkları ve yerel dosya referanslarını temizler." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Hediyeni almak için dokun!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Kopyalamak için dokun" @@ -8825,7 +8800,7 @@ msgstr "Davet bağlantısını kopyala" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Bağlantıyı kopyala" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Faturalandırma döngünüz değiştirilemedi" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Güncellemeler kontrol edilemedi" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Mesajlarınız silinemedi" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Masaüstü güncellemesi indirilemedi" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Bağlantı başlatılamadı" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Masaüstü güncellemesi başlatılamadı" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Tehlike düğmesi tıklandı." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Pil ömrünü ve veri kullanımını korumak için mobil cihazlarda vars #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Mesajlarınız silindi." msgid "Deleted." msgstr "Silindi." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Narin ve hafif tipografi" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Masaüstü güncellemesi mevcut. Bir Linux paketi seçin." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Masaüstü güncellemesi hazır" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Masaüstü sürümü {version} indirildi. Kurulumu tamamlamak için {productName}'i yeniden başlatın." @@ -11753,11 +11723,9 @@ msgstr "Bahsetmeyi kapat" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "{regionName} bölgesindeki yetişkinlere yönelik içerik yasaları nedeniyle bu medya, bulunduğunuz bölgeden kullanılamıyor." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Kopyala" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Profil biyografinizi düzenleyin" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Düzenlenebilir metin" @@ -13001,7 +12969,7 @@ msgstr "Eklerin süresini etkinleştir" msgid "Enable audio" msgstr "Sesi etkinleştir" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Beta özelliğini etkinleştir" @@ -13038,7 +13006,7 @@ msgstr "Geliştirici modunu etkinleştir" msgid "Enable email delivery" msgstr "E-posta gönderimini etkinleştir" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Ekstra seçeneği etkinleştir" @@ -13660,7 +13628,7 @@ msgstr "Hata" msgid "error code {code}" msgstr "hata kodu {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "İçerik oluşturulurken hata oluştu" @@ -14095,11 +14063,6 @@ msgstr "Harici bağlantılar tehlikeli olabilir. Dikkatli olun." msgid "Extra large" msgstr "Ekstra büyük" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Ekstra açık" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "İlk tıklama" msgid "First click pass-through when unfocused" msgstr "Odaklanılmadığında ilk tıklama geçişi" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "İlk seçenek" @@ -14917,10 +14880,6 @@ msgstr "Ana ayarı takip ediyor • %{effectiveValue}" msgid "Font" msgstr "Yazı tipi" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Yazı tipi kalınlıkları" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "Başlangıç: {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "<0>{0} kaynağından" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Genel" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Paylaşılabilir bir bağlantı oluşturun veya birleştirilmiş özel CSS'nizi kopyalayın." @@ -15481,11 +15440,6 @@ msgstr "Yeni kod oluştur" msgid "Generating code…" msgstr "Kod oluşturuluyor…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Hafif ve havadar metin gösterimi" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "O" msgid "Header" msgstr "Başlık" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Başlık" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Kanal dizine ekleniyor" msgid "Indicator" msgstr "Gösterge" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Göstergeler ve durum" @@ -17557,7 +17506,7 @@ msgstr "Giriş durumları" msgid "Input volume" msgstr "Giriş sesi düzeyi" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Girişler ve metin" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Çıkartma paketini yükle" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Yüklü" @@ -18094,15 +18043,6 @@ msgstr "Şimdilik sessiz..." msgid "Italian" msgstr "İtalyanca" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "İtalik" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "İtalik stil gösterimi" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Dil" msgid "Language settings" msgstr "Dil ayarları" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Dil desteği" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Diller" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Büyük" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Ömür boyu {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Açık" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux varsayılanı" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux paketi" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Gelen kutusundaki en üstteki kanalı okundu olarak işaretle" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Medya boyutu" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Orta" @@ -20820,7 +20750,7 @@ msgstr "Daha fazla" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Diğer işlemler" @@ -20993,10 +20923,6 @@ msgstr "Çok faktörlü" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Çok dilli içerik" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Yeni kullanıcılar şu anda katılamıyor. Yine de bir hesap oluşturabilir veya oturum açabilir, ardından bu bağlantıyı daha sonra tekrar deneyebilirsiniz." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Yeni sürüm" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Aramanızla eşleşen emoji bulunamadı." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Bu aramaya uyan emoji yok" @@ -22363,11 +22289,6 @@ msgstr "Yok" msgid "None (normal behavior)" msgstr "Yok (normal davranış)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Normal" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Bu mesajı sadece siz görebilirsiniz. <0>Kapat" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Opaklık" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Tarih seçiciyi aç" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Masaüstü indirmelerini aç" @@ -23165,6 +23086,11 @@ msgstr "Hızlı değiştiriciyi aç" msgid "Open settings" msgstr "Ayarları aç" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Yazılım merkezini aç" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "İşletim sistemi" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Topluluk ve kanal bazında deneysel okunmamış rozet kontrollerine katılın" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Daha uzun okuma pasajları için optimize edildi" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Kamera optimize ediliyor..." @@ -23483,7 +23404,7 @@ msgstr "İade süresi doldu" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Otomatik taşma sayılarına sahip, birden çok kullanıcıyı gösteren çakışan avatar grupları." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Katmanlar ve menüler" @@ -23886,11 +23807,6 @@ msgstr "Sese özel ses düzeyi" msgid "Per-window audio isn't available on this build of macOS." msgstr "Pencere başına ses, macOS'in bu sürümünde kullanılamıyor." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Günlük içerikler için ideal" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Konum" msgid "Power saving" msgstr "Güç tasarrufu" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Güçlü ve dikkat çekici" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Birincil (devre dışı)" msgid "Primary accent color" msgstr "Birincil vurgu rengi" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Birincil eylem" @@ -25724,11 +25635,6 @@ msgstr "Kayıt" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Kayıt şu anda kapalı. Hesap oluşturmak için bir yöneticiden aldığın kayıt bağlantısını kullan." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Normal" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Normal düğme" @@ -26198,7 +26104,7 @@ msgstr "Kullanıcı sınırı kaldırıldı." msgid "Removed timeout from {0}" msgstr "Süre kısıtlaması {0} kişisinden kaldırıldı" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Değişken bazında tüm geçersiz kılmaları kaldırır ancak kitaplığınızı ve varlıklarınızı olduğu gibi bırakır." @@ -26703,7 +26609,7 @@ msgstr "Uygulama verilerini sıfırla" msgid "Reset app data and restart" msgstr "Uygulama verilerini sıfırla ve yeniden başlat" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Özel tema verilerini sıfırla" @@ -26714,7 +26620,7 @@ msgstr "Özel tema verileri sıfırlansın mı?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Verileri sıfırla" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "{appName} uygulamasını yeniden başlat" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "{productName}’i yeniden başlat" @@ -28030,7 +27936,7 @@ msgstr "Aranıyor" msgid "Searching people..." msgstr "Kişiler aranıyor..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "İkinci seçenek" @@ -28047,7 +27953,7 @@ msgstr "İkincil (devre dışı)" msgid "Secondary accent color" msgstr "İkincil vurgu rengi" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "İkincil eylem" @@ -28339,7 +28245,7 @@ msgstr "Seçim: {0}" msgid "Selection: {0} (max {1})" msgstr "Seçim: {0} (maks. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Seçimler" @@ -28369,16 +28275,6 @@ msgstr "Kendi kendine barındırılan mod geçersiz kılma" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Ödemeden sonraki 3 gün içinde, 30 günde bir kendi kendine iade yapılabilir. Aboneliği iade etmek, aboneliği iptal eder. AB/AEA alıcıları, içeriğe anında erişmek için ödeme sırasında 14 günlük cayma hakkından feragat eder. Geri ödeme yerine uygulama içi iade düğmesini kullanın. Geri ödemeler hesabınızı kalıcı olarak kısıtlayabilir. Stripe ödemeyi güvenli bir şekilde işler. Tam kart numaranızı asla görmeyiz." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Yarı kalın" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Yarı kalın büyük" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Tüm ses efektlerinin düzeyini ayarlar. Sese özel geçersiz kılmalar #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Ayarlar" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Birkaç kişi yazıyor..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Paylaş" @@ -29002,7 +28898,7 @@ msgstr "Paylaş" msgid "Share action." msgstr "Eylemi paylaş." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Etkin özel temayı paylaş" @@ -29035,7 +28931,7 @@ msgstr "Kaynak paylaş" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "{premiumProductName} deneyimini hediye abonelik satın alarak arkadaşlarınla paylaş." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Temayı paylaş" @@ -29963,11 +29859,6 @@ msgstr "Adım değerleri olan kaydırıcı" msgid "Sliders" msgstr "Sürgüler" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Biraz daha kalın vurgu" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Hakaretler, insanlık dışı dil veya korunan gruplara yönelik saldırılar." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Küçük" @@ -30161,11 +30050,6 @@ msgstr "5'in katlarına denk gelir." msgid "Social" msgstr "Sosyal" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Yumuşak ve kolay okuma deneyimi" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Durum göstergeleri" msgid "Status page" msgstr "Durum sayfası" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Durum yazısı" @@ -31291,15 +31175,6 @@ msgstr "Stripe, {countryName} bölgesinde düzenlenmiş bir kart bildirimi yapt msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Orta düzeyde CPU maliyetiyle güçlü kalite. Ekran paylaşımı için iyi bir Chromium alternatifi." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Güçlü görsel hiyerarşi" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Stil varyasyonları" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Abonelik senaryoları" msgid "Subtext" msgstr "Alt metin" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Alt başlık" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "URL açılımlarını ve oluşturulan eklemeleri test edin" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Metin" @@ -31973,6 +31841,10 @@ msgstr "Yazı kanalları" msgid "Text formatting" msgstr "Metin biçimlendirme" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Şeffaflık etkinleştirildiğinde ClearType yerine griskale antialiasing kullanılır, bu nedenle daha yumuşak görünecektir." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Aradığınız topluluk silinmiş veya erişim izniniz olmayabilir." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Masaüstü güncellemesi indirilemedi. Bağlantınız stabil olduğunda güncelleme düğmesinden tekrar deneyin." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Masaüstü güncellemesi indirildi. Kurulumu tamamlamak için {productName}’i yeniden başlatın." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "İndirilen dosya bilgisayarınıza kaydedildi. Normal paket yöneticinizle yükleyin." @@ -32442,12 +32314,7 @@ msgstr "Sizden mesaj kabul etmiyor olabilirler veya artık ortak bir topluluğun msgid "They're not accepting friend requests right now." msgstr "Şu anda arkadaşlık isteği kabul etmiyorlar." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "İnce" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Üçüncü seçenek" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Bu çok fazla tepki almış bir mesaj. Daha fazla ekleyebilmek için bazı tepkileri kaldırman gerekiyor." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Bu, metin alanındaki örnek bir metindir." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Bu, ilk seçenek açıklamasıdır" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Bu, ikinci seçenek açıklamasıdır" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Bu, üçüncü seçenek açıklamasıdır" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Bu işlem tüm özel kısayolları kaldırır ve yerleşik kısayolların tümünü yeniden etkinleştirir. Bu işlem geri alınamaz." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Bu sıfırlama bağlantısının süresi doldu. Sıfırlama bağlantıları 24 saat geçerlidir. Yeni bir tane isteyin." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Bu sıfırlama bağlantısı süresi dolmuş. Sıfırlama bağlantıları 1 saat geçerlidir. Lütfen yeni bir tane isteyin." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Bu anahtar devre dışı ve değiştirilemez" msgid "This switch is disabled in the checked state" msgstr "Bu anahtar, işaretli durumda devre dışı bırakılır" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Bu metin, kalın başlık stilini göstermektedir" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Bu metin, kalın başlık stilini gösterir" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Bu metin italik stilini gösterir" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Bu metin, büyük yarı kalın stilini gösterir" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Bu metin normal stili gösterir" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Bu metin yarı kalın stilini gösterir" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Siz yazdıkça bu metin alanı 4 ila 12 satır arasında otomatik olarak genişler." @@ -33417,11 +33254,6 @@ msgstr "Saat dilimi" msgid "Tip" msgstr "İpucu" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Başlık" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Bir renk yazın (hex, rgb(), hsl veya ad), ya da seçiciyi kullanın." msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Bir renk yazın (hex, rgb(), hsl() veya ad) ya da seçiciyi kullanın." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Yazı tipi boyutu" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Yazıyor göstergesi sadece" msgid "Typing state" msgstr "Yazma durumu" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Yazı tipi" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Tipografi ölçeği demosu" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Evrensel yedek. En düşük kalite, ancak her yerde çalışır." #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Bilinmiyor" @@ -34649,8 +34469,8 @@ msgstr "Sınırsız emoji" msgid "Unlimited stickers" msgstr "Sınırsız çıkartma" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "{PREMIUM_PRODUCT_NAME} ile {communityCount, plural, one {# topluluktan} other {# topluluktan}} {lockedEmojiCount, plural, one {# özel emojinin} other {# özel emojinin}} kilidini açın." @@ -34796,7 +34616,7 @@ msgstr "Adsız kanal" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "İsimsiz grup" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Politikalarımızı güncelledik. Devam etmek için lütfen inceleyip kabul edin." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Topluluğa özel profilinizi düzenliyorsunuz. Bu profil yalnızca bu toplulukta görünür olacak ve genel profilinizin yerine geçecektir." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Artık bir geliştiricisiniz!" diff --git a/fluxer_app/src/features/i18n/locales/uk/messages.po b/fluxer_app/src/features/i18n/locales/uk/messages.po index edabe8ffb..07ab12a9f 100644 --- a/fluxer_app/src/features/i18n/locales/uk/messages.po +++ b/fluxer_app/src/features/i18n/locales/uk/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} для ПК {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Команда спільноти {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} не зміг підключитися до служби оновлень. Перевірте з’єднання та спробуйте ще раз." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "Не вдалося перезапустити {productName}, щоб встановити завантажене оновлення. Спробуйте ще раз, натиснувши кнопку «Оновити»." @@ -1210,8 +1210,8 @@ msgstr "Слово бренда {productName}" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} онлайн" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Група \"{resolvedName}\"" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "ім'я хоста, наприклад, {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Для Linux-систем доступно оновлення. Оберіть формат пакета для цієї системи, і {productName} збереже його локально." @@ -1990,7 +1990,7 @@ msgstr "опитування" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "redirect_uri потрібен, якщо \"bot\" — не єдина область дії." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Багаторазовий компонент для порожніх станів, помилок і повідомлень про статус." @@ -3891,7 +3891,7 @@ msgstr "Програми" msgid "Arabic" msgstr "Арабська" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Архівувати" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Автопрокрутка" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Доступно" @@ -5243,26 +5243,6 @@ msgstr "Розмиття" msgid "Blur strength" msgstr "Інтенсивність розмиття" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Основний текст" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "Жирний" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Жирний заголовок" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Жирний заголовок" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Варіанти кнопок" msgid "Button with context menu" msgstr "Кнопка з контекстним меню" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Кнопки" @@ -5989,11 +5969,6 @@ msgstr "Не вдається встановити набір стікерів" msgid "Captcha verification failed. Try again." msgstr "Перевірка капчі не вдалася. Спробуйте ще раз." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Підпис" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Очистити всі активні заміни" msgid "Clear all attachment mocks" msgstr "Видалити всі макети вкладень" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Очистити всі перевизначення токенів" @@ -7215,7 +7190,7 @@ msgstr "Очистити макет для цього вкладення" msgid "Clear nickname" msgstr "Очистити псевдонім" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Очистити перевизначення" @@ -7299,7 +7274,7 @@ msgstr "Очищено тему." msgid "Clearing trusted domains..." msgstr "Очищення довірених доменів..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Очищає швидкі CSS, імпортовані теми, завантажені ресурси та посилання на локальні файли на цьому пристрої." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Натисніть, щоб отримати подарунок!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Натисніть, щоб скопіювати" @@ -8825,7 +8800,7 @@ msgstr "Копіювати посилання-запрошення" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Копіювати посилання" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Не вдалося змінити платіжний цикл" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Не вдалося перевірити наявність оновлень" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Не вдалося видалити ваші повідомлення" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Не вдалося завантажити оновлення для комп’ютера" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Не вдалося розпочати з'єднання" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Не вдалося запустити оновлення для комп’ютера" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Натиснуто кнопку «Небезпека»." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "За замовчуванням вимкнено на мобільних #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Ваші повідомлення видалено." msgid "Deleted." msgstr "Видалено." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Витончена та легка типографіка" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Доступне оновлення для комп’ютерної версії. Виберіть пакет Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Оновлення десктопної версії готове" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Настільна версія {version} завантажено. Перезапустіть {productName}, щоб завершити встановлення." @@ -11753,11 +11723,9 @@ msgstr "Приховати згадку" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Через закони про контент для дорослих у регіоні {regionName} цей медіафайл недоступний у вашому поточному регіоні." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Дублювати" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Редагувати біографію профілю" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Текст, що редагується" @@ -13001,7 +12969,7 @@ msgstr "Увімкнути термін дії вкладень" msgid "Enable audio" msgstr "Увімкнути звук" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Увімкнути бета-функцію" @@ -13038,7 +13006,7 @@ msgstr "Увімкнути режим розробника" msgid "Enable email delivery" msgstr "Увімкнути доставку електронної пошти" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Увімкнути додаткову опцію" @@ -13660,7 +13628,7 @@ msgstr "Помилка" msgid "error code {code}" msgstr "помилка: код {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Помилка відтворення вмісту" @@ -14095,11 +14063,6 @@ msgstr "Зовнішні посилання можуть бути небезпе msgid "Extra large" msgstr "Дуже великий" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Надлегкий" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Перший клік" msgid "First click pass-through when unfocused" msgstr "Перший клік проходить, коли вікно неактивне" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Перший варіант" @@ -14917,10 +14880,6 @@ msgstr "За основними • {effectiveValue}%" msgid "Font" msgstr "Шрифт" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Насиченість шрифту" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "З {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "від <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Загальні" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Згенеруйте посиланням для поширення або скопіюйте об'єднаний власний CSS." @@ -15481,11 +15440,6 @@ msgstr "Згенерувати новий код" msgid "Generating code…" msgstr "Генерування коду…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Ніжний і легкий текст" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Він" msgid "Header" msgstr "Заголовок" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Заголовок" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Індексація каналу" msgid "Indicator" msgstr "Індикатор" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Індикатори та статус" @@ -17557,7 +17506,7 @@ msgstr "Стани введення" msgid "Input volume" msgstr "Гучність вхідного сигналу" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Введення та текст" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Установити набір стікерів" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Встановлено" @@ -18094,15 +18043,6 @@ msgstr "Зараз тут тихо..." msgid "Italian" msgstr "Італійська" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Курсив" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Демонстрація курсивного стилю" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Мова" msgid "Language settings" msgstr "Налаштування мови" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Підтримка мови" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Мови" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Великий" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Довічний {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Світлий" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Стандартний аудіопристрій Linux" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Пакет для Linux" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Позначити верхній канал вхідних як прочитаний" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "Розмір медіафайлів" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Середній" @@ -20820,7 +20750,7 @@ msgstr "Більше" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Більше дій" @@ -20993,10 +20923,6 @@ msgstr "Багатофакторна автентифікація" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Багатомовний контент" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Нові користувачі наразі не можуть приєднатися. Ви все ще можете створити обліковий запис або ввійти, а потім спробувати це посилання пізніше." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Нова версія" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Не знайдено емодзі, що відповідають вашому пошуку." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Немає емодзі, що відповідають цьому пошуку" @@ -22363,11 +22289,6 @@ msgstr "Немає" msgid "None (normal behavior)" msgstr "Немає (звичайна поведінка)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Звичайний" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Це повідомлення бачите лише ви. <0>Приховати" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Непрозорість" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Відкрити календар" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Відкрити завантаження для комп’ютера" @@ -23165,6 +23086,11 @@ msgstr "Відкрити швидкий перемикач" msgid "Open settings" msgstr "Відкрити налаштування" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Відкрити центр програм" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Операційна система" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Увімкнути експериментальні параметри керування значками непрочитаних повідомлень для окремих спільнот і каналів" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Оптимізовано для довших текстів" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Оптимізація камери..." @@ -23483,7 +23404,7 @@ msgstr "Поза вікном повернення коштів" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Групи аватарів, що перекриваються, показують кількох користувачів з автоматичним підрахунком надлишку." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Накладання та меню" @@ -23886,11 +23807,6 @@ msgstr "Гучність для кожного звуку" msgid "Per-window audio isn't available on this build of macOS." msgstr "Аудіо для окремих вікон недоступне в цій збірці macOS." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Ідеально підходить для щоденного контенту" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Позиція" msgid "Power saving" msgstr "Енергозбереження" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Потужний і привертає увагу" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Основна (вимкнено)" msgid "Primary accent color" msgstr "Основний акцентний колір" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Основна дія" @@ -25724,11 +25635,6 @@ msgstr "Реєстрація" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Реєстрацію зараз закрито. Щоб створити обліковий запис, скористайтеся реєстраційним посиланням від адміністратора." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Звичайний" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Звичайна кнопка" @@ -26198,7 +26104,7 @@ msgstr "Знято обмеження на кількість користува msgid "Removed timeout from {0}" msgstr "Знято тайм-аут з {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Видаляє всі перевизначення для кожної змінної, але зберігає вашу бібліотеку та ресурси недоторканими." @@ -26703,7 +26609,7 @@ msgstr "Скинути дані застосунку" msgid "Reset app data and restart" msgstr "Скинути дані програми та перезапустити" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Скинути дані власної теми" @@ -26714,7 +26620,7 @@ msgstr "Скинути дані власної теми?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Скинути дані" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Перезапустити {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Перезапустіть {productName}" @@ -28030,7 +27936,7 @@ msgstr "Пошук" msgid "Searching people..." msgstr "Пошук людей..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Другий варіант" @@ -28047,7 +27953,7 @@ msgstr "Додаткова (вимкнено)" msgid "Secondary accent color" msgstr "Додатковий акцентний колір" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Додаткова дія" @@ -28339,7 +28245,7 @@ msgstr "Виділення: {0}" msgid "Selection: {0} (max {1})" msgstr "Виділення: {0} (макс. {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Вибране" @@ -28369,16 +28275,6 @@ msgstr "Примусовий режим самостійного розміще msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Самостійне повернення коштів доступне протягом 3 днів після оплати, раз на 30 днів. Повернення коштів за підписку скасовує її. Покупці з ЄС/ЄЕЗ відмовляються від 14-денного права на відмову під час оформлення замовлення, щоб отримати негайний доступ до контенту. Використовуйте кнопку повернення коштів у застосунку замість відкликання платежу. Відкликання платежу може назавжди обмежити ваш обліковий запис. Stripe безпечно обробляє платежі. Ми ніколи не бачимо повного номера вашої картки." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Напівжирний" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Напівжирний великий" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Встановлює рівень для кожного звуковог #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Налаштування" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Кілька людей друкують..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Поділитися" @@ -29002,7 +28898,7 @@ msgstr "Поділитися" msgid "Share action." msgstr "Поділитися дією." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Поділитися активною темою" @@ -29035,7 +28931,7 @@ msgstr "Джерело для поширення" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Поділіться досвідом {premiumProductName} зі своїми друзями, придбавши подарункову підписку." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Поділитися темою" @@ -29963,11 +29859,6 @@ msgstr "Повзунок зі значеннями кроку" msgid "Sliders" msgstr "Повзунки" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Трохи жирніший акцент" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Образи, дегуманізуючі висловлювання або нападки на захищені групи." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Маленький" @@ -30161,11 +30050,6 @@ msgstr "Прив'язується до кроку 5." msgid "Social" msgstr "Соціальні мережі" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "М'яке та легке читання" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Індикатори статусу" msgid "Status page" msgstr "Сторінка стану" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Статус" @@ -31291,15 +31175,6 @@ msgstr "Stripe повідомив, що картку видано в {countryNam msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Висока якість за помірної витрати ЦП. Хороший запасний варіант Chromium для демонстрації екрана." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Чітка візуальна ієрархія" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Варіанти стилю" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Сценарії підписки" msgid "Subtext" msgstr "Підтекст" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Підзаголовок" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Тестування розгортання URL-адрес і відтв #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Текст" @@ -31973,6 +31841,10 @@ msgstr "Текстові канали" msgid "Text formatting" msgstr "Форматування тексту" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Текст буде відображатися з відтінками сірого замість ClearType під час увімкнення прозорості, тому він виглядатиме м’якше." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Спільноту, яку ви шукаєте, можливо, було видалено або у вас немає доступу до неї." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Не вдалося завантажити оновлення для комп’ютерної версії. Спробуйте ще раз за допомогою кнопки оновлення, коли ваше з’єднання буде стабільним." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Оновлення для робочого столу завантажено. Перезапустіть {productName}, щоб завершити встановлення." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Завантажений файл збережено на вашому комп’ютері. Установіть його за допомогою звичайного менеджера пакунків." @@ -32442,12 +32314,7 @@ msgstr "Можливо, вони не приймають від вас пові msgid "They're not accepting friend requests right now." msgstr "Вони зараз не приймають запити на додавання в друзі." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Тонкий" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Третій варіант" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Це дуже \"важке\" повідомлення. Деякі реакції потрібно видалити, перш ніж ви зможете додати нові." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Це приклад тексту в текстовому полі." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Це опис першого варіанту" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Це опис другого варіанту" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Це опис третього варіанту" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Це видалить усі власні комбінації клавіш і знову ввімкне всі вбудовані. Цю дію не можна скасувати." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Термін дії цього посилання для скидання пароля закінчився. Посилання для скидання дійсні протягом 24 годин. Запит нового." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Цей посилання для скидання пароля застаріло. Посилання для скидання дійсні протягом 1 години. Будь ласка, запитайте нове." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Цей перемикач вимкнено, і його не можна msgid "This switch is disabled in the checked state" msgstr "Цей перемикач вимкнено в позначеному стані" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Цей текст демонструє стиль жирного заголовка" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Цей текст демонструє жирний стиль заголовка" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Цей текст демонструє курсивне написання" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Цей текст демонструє великий напівжирний стиль" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Цей текст демонструє звичайний стиль" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Цей текст демонструє напівжирне накреслення" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Це текстове поле автоматично розширюється від 4 до 12 рядків під час введення." @@ -33417,11 +33254,6 @@ msgstr "Часовий пояс" msgid "Tip" msgstr "Підказка" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Заголовок" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Введіть колір (hex, rgb(), hsl або назву) або с msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Введіть колір (шістнадцятковий код, rgb(), hsl() або назва) або скористайтеся палітрою." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Масштаб шрифту" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Лише індикатор набору тексту" msgid "Typing state" msgstr "Стан набору" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Шрифти" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Демонстрація типографічної шкали" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Універсальний запасний варіант. Найниж #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Невідомо" @@ -34649,8 +34469,8 @@ msgstr "Необмежена кількість емодзі" msgid "Unlimited stickers" msgstr "Безлімітні стікери" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Розблокуйте {lockedEmojiCount, plural, one {# власний емодзі} few {# власні емодзі} many {# власних емодзі} other {# власних емодзі}} із {communityCount, plural, one {# спільноти} few {# спільнот} many {# спільнот} other {# спільнот}} за допомогою {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Безіменний канал" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Безіменна група" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Ми оновили наші правила. Перегляньте та прийміть їх, щоб продовжити." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Веб {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Ви редагуєте свій профіль для спільноти. Цей профіль буде видимий лише в цій спільноті та замінить ваш глобальний профіль." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Тепер ви розробник!" diff --git a/fluxer_app/src/features/i18n/locales/vi/messages.po b/fluxer_app/src/features/i18n/locales/vi/messages.po index b1a993d88..d441631db 100644 --- a/fluxer_app/src/features/i18n/locales/vi/messages.po +++ b/fluxer_app/src/features/i18n/locales/vi/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel} ({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "Máy tính để bàn {desktopChannel} {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "Nhóm cộng đồng {productName}" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "Không thể kết nối đến dịch vụ cập nhật của {productName}. Vui lòng kiểm tra kết nối và thử lại." #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "Không thể khởi động lại {productName} để cài đặt bản cập nhật đã tải xuống. Hãy thử lại từ nút cập nhật." @@ -1210,8 +1210,8 @@ msgstr "nhãn hiệu {productName}" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "Web {releaseChannel} {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} đang hoạt động" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "Nhóm của {resolvedName}" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "tên máy chủ, ví dụ: {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Một bản cập nhật cho máy tính để bàn Linux đã có. Chọn định dạng gói cho hệ thống này và {productName} sẽ lưu nó cục bộ." @@ -1990,7 +1990,7 @@ msgstr "một cuộc thăm dò" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "Cần có redirect_uri khi phạm vi bot không phải là phạm vi duy nhất." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "Một thành phần có thể tái sử dụng cho các trạng thái trống, lỗi và thông báo trạng thái." @@ -3891,7 +3891,7 @@ msgstr "Ứng dụng" msgid "Arabic" msgstr "Tiếng Ả Rập" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "Lưu trữ" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "Tự động cuộn" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "Khả dụng" @@ -5243,26 +5243,6 @@ msgstr "Làm mờ" msgid "Blur strength" msgstr "Độ mạnh của hiệu ứng làm mờ nền" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "Nội dung" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "In đậm" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "Tiêu đề in đậm" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "Tiêu đề in đậm" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "Các kiểu nút" msgid "Button with context menu" msgstr "Nút có menu ngữ cảnh" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "Nút" @@ -5989,11 +5969,6 @@ msgstr "Không thể cài đặt gói sticker" msgid "Captcha verification failed. Try again." msgstr "Xác minh mã bảo mật không thành công. Vui lòng thử lại." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "Chú thích" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "Xóa tất cả các ghi đè đang hoạt động" msgid "Clear all attachment mocks" msgstr "Xóa tất cả bản nháp đính kèm" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "Xóa tất cả ghi đè token" @@ -7215,7 +7190,7 @@ msgstr "Xóa mô phỏng cho tệp đính kèm này" msgid "Clear nickname" msgstr "Xóa biệt danh" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "Xóa ghi đè" @@ -7299,7 +7274,7 @@ msgstr "Đã xoá chủ đề." msgid "Clearing trusted domains..." msgstr "Đang xóa các miền đáng tin cậy..." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "Xóa CSS nhanh, chủ đề đã nhập, nội dung đã tải lên và tham chiếu tệp cục bộ trên thiết bị này." @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "Nhấn để nhận quà!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "Nhấn để sao chép" @@ -8825,7 +8800,7 @@ msgstr "Sao chép URL lời mời" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "Sao chép liên kết" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "Không thể thay đổi chu kỳ thanh toán của bạn" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "Không thể kiểm tra bản cập nhật" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "Không thể xóa tin nhắn của bạn" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "Không thể tải bản cập nhật cho máy tính để bàn" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "Không thể bắt đầu kết nối" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "Không thể bắt đầu cập nhật ứng dụng máy tính" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "Đã nhấp vào nút nguy hiểm." #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "Mặc định tắt trên di động để tiết kiệm pin và dữ li #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "Đã xóa tin nhắn của bạn." msgid "Deleted." msgstr "Đã xóa." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "Kiểu chữ thanh lịch và nhẹ nhàng" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "Có bản cập nhật ứng dụng. Chọn gói Linux." #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "Bản cập nhật cho máy tính để bàn đã sẵn sàng" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "Phiên bản dành cho máy tính để bàn {version} đã được tải xuống. Khởi động lại {productName} để hoàn tất quá trình cài đặt." @@ -11753,11 +11723,9 @@ msgstr "Bỏ qua nhắc đến" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "Do luật về nội dung nhạy cảm ở {regionName}, nội dung đa phương tiện này không khả dụng ở khu vực hiện tại của bạn." #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "Tạo bản sao" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "Chỉnh sửa tiểu sử" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "Văn bản có thể chỉnh sửa" @@ -13001,7 +12969,7 @@ msgstr "Bật tính năng hết hạn tệp đính kèm" msgid "Enable audio" msgstr "Bật âm thanh" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "Bật tính năng thử nghiệm" @@ -13038,7 +13006,7 @@ msgstr "Bật chế độ nhà phát triển" msgid "Enable email delivery" msgstr "Bật giao email" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "Bật tùy chọn bổ sung" @@ -13660,7 +13628,7 @@ msgstr "Lỗi" msgid "error code {code}" msgstr "mã lỗi {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "Lỗi hiển thị nội dung" @@ -14095,11 +14063,6 @@ msgstr "Liên kết bên ngoài có thể nguy hiểm. Hãy cẩn trọng." msgid "Extra large" msgstr "Cực lớn" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "Cực mỏng" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "Lần nhấp đầu tiên" msgid "First click pass-through when unfocused" msgstr "Nhấp chuột xuyên qua khi không được lấy nét" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "Tùy chọn đầu tiên" @@ -14917,10 +14880,6 @@ msgstr "Theo cài đặt chung • {effectiveValue}%" msgid "Font" msgstr "Phông chữ" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "Độ đậm phông chữ" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "Từ {start}" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "từ <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "Chung" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "Tạo liên kết có thể chia sẻ hoặc sao chép CSS tùy chỉnh kết hợp của bạn." @@ -15481,11 +15440,6 @@ msgstr "Tạo mã mới" msgid "Generating code…" msgstr "Đang tạo mã…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "Hiển thị văn bản nhẹ nhàng và thoáng đãng" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "Anh ấy" msgid "Header" msgstr "Tiêu đề" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "Tiêu đề" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "Đang lập chỉ mục kênh" msgid "Indicator" msgstr "Chỉ báo" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "Chỉ báo & trạng thái" @@ -17557,7 +17506,7 @@ msgstr "Trạng thái nhập" msgid "Input volume" msgstr "Âm lượng đầu vào" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "Nhập liệu & văn bản" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "Cài gói sticker" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "Đã cài đặt" @@ -18094,15 +18043,6 @@ msgstr "Hiện tại khá yên tĩnh..." msgid "Italian" msgstr "Tiếng Ý" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "Nghiêng" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "Ví dụ kiểu chữ nghiêng" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "Ngôn ngữ" msgid "Language settings" msgstr "Cài đặt ngôn ngữ" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "Hỗ trợ ngôn ngữ" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "Ngôn ngữ" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "Lớn" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "Trọn đời {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "Sáng" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Mặc định của Linux" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Gói Linux" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "Đánh dấu kênh hộp thư đến trên cùng là đã đọc" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Định dạng Markdown" @@ -19945,10 +19877,8 @@ msgstr "Kích thước file phương tiện" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "Trung bình" @@ -20820,7 +20750,7 @@ msgstr "Thêm" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "Thêm tuỳ chọn" @@ -20993,10 +20923,6 @@ msgstr "Xác thực đa yếu tố" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "Nội dung đa ngôn ngữ" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "Người dùng mới hiện chưa thể tham gia. Bạn vẫn có thể tạo tài khoản hoặc đăng nhập, sau đó thử lại liên kết này sau." #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "Phiên bản mới" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "Không tìm thấy biểu tượng cảm xúc nào khớp với tìm kiếm của bạn." #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "Không có biểu tượng cảm xúc nào khớp với tìm kiếm đó" @@ -22363,11 +22289,6 @@ msgstr "Không" msgid "None (normal behavior)" msgstr "Không (hành vi bình thường)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "Thường" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "Chỉ bạn mới thấy tin nhắn này. <0>Bỏ qua" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "Độ mờ" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "Mở bộ chọn ngày" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "Mở trang tải xuống cho máy tính" @@ -23165,6 +23086,11 @@ msgstr "Mở bộ chuyển đổi nhanh" msgid "Open settings" msgstr "Mở cài đặt" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "Mở trung tâm phần mềm" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "Hệ điều hành" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "Cho phép sử dụng tính năng thử nghiệm để kiểm soát số lượng thông báo chưa đọc cho từng cộng đồng và kênh" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "Tối ưu cho các đoạn văn dài" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "Đang tối ưu hóa camera..." @@ -23483,7 +23404,7 @@ msgstr "Ngoài thời gian hoàn tiền" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "Nhóm ảnh đại diện chồng chéo hiển thị nhiều người dùng với số lượng tràn tự động." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "Lớp phủ & menu" @@ -23886,11 +23807,6 @@ msgstr "Âm lượng từng âm thanh" msgid "Per-window audio isn't available on this build of macOS." msgstr "Tính năng âm thanh từng cửa sổ không khả dụng trên phiên bản macOS này." -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "Hoàn hảo cho nội dung hàng ngày" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "Vị trí" msgid "Power saving" msgstr "Tiết kiệm pin" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "Mạnh mẽ và thu hút" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "Chính (đã tắt)" msgid "Primary accent color" msgstr "Màu nhấn chính" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "Hành động chính" @@ -25724,11 +25635,6 @@ msgstr "Đăng ký" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "Hiện tại đăng ký đang đóng. Hãy dùng liên kết đăng ký từ quản trị viên để tạo tài khoản." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "Thường" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "Nút thông thường" @@ -26198,7 +26104,7 @@ msgstr "Đã xóa giới hạn người dùng." msgid "Removed timeout from {0}" msgstr "Đã gỡ thời gian chờ của {0}" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "Xóa mọi tùy chỉnh theo biến nhưng giữ nguyên thư viện và tài sản của bạn." @@ -26703,7 +26609,7 @@ msgstr "Đặt lại dữ liệu ứng dụng" msgid "Reset app data and restart" msgstr "Đặt lại dữ liệu ứng dụng và khởi động lại" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "Đặt lại dữ liệu chủ đề tùy chỉnh" @@ -26714,7 +26620,7 @@ msgstr "Đặt lại dữ liệu chủ đề tùy chỉnh?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "Đặt lại dữ liệu" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "Khởi động lại {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "Khởi động lại {productName}" @@ -28030,7 +27936,7 @@ msgstr "Đang tìm kiếm" msgid "Searching people..." msgstr "Đang tìm người..." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "Tùy chọn thứ hai" @@ -28047,7 +27953,7 @@ msgstr "Thứ cấp (đã tắt)" msgid "Secondary accent color" msgstr "Màu nhấn phụ" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "Hành động phụ" @@ -28339,7 +28245,7 @@ msgstr "Đã chọn: {0}" msgid "Selection: {0} (max {1})" msgstr "Đã chọn: {0} (tối đa {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "Lựa chọn" @@ -28369,16 +28275,6 @@ msgstr "Ghi đè chế độ tự lưu trữ" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "Bạn có thể tự hoàn tiền trong vòng 3 ngày kể từ khi thanh toán, mỗi 30 ngày một lần. Hoàn tiền gói đăng ký sẽ hủy gói đó. Người mua ở EU/EEA từ bỏ quyền rút tiền trong 14 ngày khi thanh toán để truy cập nội dung ngay lập tức. Hãy dùng nút hoàn tiền trong ứng dụng thay vì yêu cầu bồi hoàn. Yêu cầu bồi hoàn có thể hạn chế vĩnh viễn tài khoản của bạn. Stripe xử lý thanh toán an toàn. Chúng tôi không bao giờ thấy số thẻ đầy đủ của bạn." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "Nét đậm vừa" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "Đậm vừa, cỡ lớn" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "Đặt mức âm lượng cho mọi hiệu ứng âm thanh. Các tùy ch #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "Cài đặt" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "Một vài người đang nhập..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "Chia sẻ" @@ -29002,7 +28898,7 @@ msgstr "Chia sẻ" msgid "Share action." msgstr "Hành động chia sẻ." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "Chia sẻ chủ đề tùy chỉnh đang hoạt động" @@ -29035,7 +28931,7 @@ msgstr "Nguồn chia sẻ" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "Chia sẻ trải nghiệm {premiumProductName} với bạn bè bằng cách mua gói đăng ký quà tặng." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "Chia sẻ chủ đề" @@ -29963,11 +29859,6 @@ msgstr "Thanh trượt có giá trị bước" msgid "Sliders" msgstr "Thanh trượt" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "Nhấn mạnh hơn một chút" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "Lời lẽ xúc phạm, phi nhân tính hoặc công kích các nhóm được bảo vệ." #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "Nhỏ" @@ -30161,11 +30050,6 @@ msgstr "Làm tròn đến bội số của 5." msgid "Social" msgstr "Mạng xã hội" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "Trải nghiệm đọc mềm mại và dễ chịu" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "Trạng thái hoạt động" msgid "Status page" msgstr "Trạng thái hệ thống" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "Trạng thái" @@ -31291,15 +31175,6 @@ msgstr "Stripe báo cáo thẻ được phát hành ở {countryName}. Để tha msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "Chất lượng tốt với chi phí CPU vừa phải. Dự phòng Chromium tốt cho chia sẻ màn hình." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "Phân cấp hình ảnh rõ ràng" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "Các kiểu biến thể" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "Các trường hợp đăng ký" msgid "Subtext" msgstr "Văn bản phụ" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "Phụ đề" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "Kiểm tra URL unfurl và nhúng đã hiển thị" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "Văn bản" @@ -31973,6 +31841,10 @@ msgstr "Kênh văn bản" msgid "Text formatting" msgstr "Định dạng văn bản" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "Chữ sẽ được hiển thị với khử răng cưa thang độ xám thay vì ClearType khi bật trong suốt, vì vậy chữ sẽ trông mềm mại hơn." + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "Cộng đồng bạn tìm kiếm có thể đã bị xóa hoặc bạn không có quyền truy cập." #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "Không thể tải bản cập nhật cho máy tính. Hãy thử lại bằng nút cập nhật khi kết nối của bạn ổn định." #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "Bản cập nhật cho máy tính đã được tải xuống. Khởi động lại {productName} để hoàn tất quá trình cài đặt." #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "Tệp đã tải xuống được lưu vào máy tính của bạn. Cài đặt bằng trình quản lý gói thông thường của bạn." @@ -32442,12 +32314,7 @@ msgstr "Họ có thể không chấp nhận tin nhắn từ bạn hoặc hai b msgid "They're not accepting friend requests right now." msgstr "Họ không chấp nhận lời mời kết bạn vào lúc này." -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "Mỏng" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "Tùy chọn thứ ba" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "Tin nhắn này nặng quá. Bạn cần gỡ bớt một số cảm xúc trước khi có thể thêm nữa." #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "Đây là một số văn bản ví dụ trong vùng văn bản." -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "Đây là mô tả của lựa chọn đầu tiên" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "Đây là mô tả của lựa chọn thứ hai" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "Đây là mô tả của lựa chọn thứ ba" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "Thao tác này sẽ xóa mọi phím tắt tùy chỉnh và bật lại tất cả phím tắt tích hợp. Không thể hoàn tác thao tác này." #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "Liên kết đặt lại này đã hết hạn. Liên kết đặt lại có hiệu lực trong 24 giờ. Vui lòng yêu cầu một liên kết mới." +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "Liên kết đặt lại này đã hết hạn. Liên kết đặt lại có hiệu lực trong 1 giờ. Vui lòng yêu cầu một liên kết mới." #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "Công tắc này đã bị tắt và không thể bật/tắt" msgid "This switch is disabled in the checked state" msgstr "Công tắc này bị tắt khi đang ở trạng thái đã chọn" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "Đây là ví dụ về kiểu chữ in đậm cho tiêu đề" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "Đây là văn bản minh họa kiểu chữ in đậm cho tiêu đề" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "Đây là văn bản minh họa kiểu chữ in nghiêng" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "Đây là văn bản minh họa kiểu chữ lớn, in đậm vừa" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "Đây là văn bản minh họa kiểu chữ thông thường" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "Đây là văn bản minh họa kiểu chữ bán đậm" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "Ô nhập này sẽ tự động mở rộng từ 4 đến 12 dòng khi bạn nhập liệu." @@ -33417,11 +33254,6 @@ msgstr "Múi giờ" msgid "Tip" msgstr "Mẹo" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "Tiêu đề" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "Nhập màu (hệ thập lục phân, rgb(), hsl hoặc tên) hoặc dù msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "Nhập màu (hệ thập lục phân, rgb(), hsl() hoặc tên) hoặc dùng công cụ chọn màu." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "Cỡ chữ" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "Chỉ báo đang nhập" msgid "Typing state" msgstr "Trạng thái đang nhập" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "Kiểu chữ" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "Thử nghiệm các kiểu chữ" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "Dự phòng chung. Chất lượng thấp nhất nhưng dùng được #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "Không rõ" @@ -34649,8 +34469,8 @@ msgstr "Biểu tượng cảm xúc không giới hạn" msgid "Unlimited stickers" msgstr "Sticker không giới hạn" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "Mở khóa {lockedEmojiCount, plural, one {# biểu tượng cảm xúc tùy chỉnh} other {# biểu tượng cảm xúc tùy chỉnh}} từ {communityCount, plural, one {# cộng đồng} other {# cộng đồng}} bằng {PREMIUM_PRODUCT_NAME}." @@ -34796,7 +34616,7 @@ msgstr "Kênh không tên" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "Nhóm chưa đặt tên" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "Chúng tôi đã cập nhật chính sách. Vui lòng xem lại và chấp nhận để tiếp tục." #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "Web {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "Bạn đang chỉnh sửa hồ sơ riêng cho cộng đồng này. Hồ sơ này sẽ chỉ hiển thị trong cộng đồng này và sẽ ghi đè lên hồ sơ chung của bạn." #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "Bạn đã trở thành nhà phát triển!" diff --git a/fluxer_app/src/features/i18n/locales/zh-CN/messages.po b/fluxer_app/src/features/i18n/locales/zh-CN/messages.po index 4e057fe85..47ad2e17c 100644 --- a/fluxer_app/src/features/i18n/locales/zh-CN/messages.po +++ b/fluxer_app/src/features/i18n/locales/zh-CN/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel}({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} 桌面版 {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName}社区团队" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} 无法连接到更新服务。请检查您的网络连接,然后重试。" #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} 无法重启到已下载的更新版本。请从“更新”按钮再次尝试。" @@ -1210,8 +1210,8 @@ msgstr "{productName} 标志" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} Web {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} 在线" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "{resolvedName}的群组" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "主机名,例如 {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "Linux 桌面更新已发布。请选择此系统的软件包格式,{productName} 将会将其保存到本地。" @@ -1990,7 +1990,7 @@ msgstr "投票" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "当 bot 范围不是唯一范围时,需要一个 redirect_uri。" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "用于空状态、错误和状态消息的可复用组件。" @@ -3891,7 +3891,7 @@ msgstr "应用" msgid "Arabic" msgstr "阿拉伯语" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "归档" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "自动滚动" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "可用" @@ -5243,26 +5243,6 @@ msgstr "模糊" msgid "Blur strength" msgstr "模糊强度" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "正文" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "粗体" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "粗体标题" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "粗体标题" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "按钮样式" msgid "Button with context menu" msgstr "带上下文菜单的按钮" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "按钮" @@ -5989,11 +5969,6 @@ msgstr "无法安装贴纸包" msgid "Captcha verification failed. Try again." msgstr "验证码验证失败。请重试。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "说明文字" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "清除所有生效的覆盖" msgid "Clear all attachment mocks" msgstr "清除所有附件模拟" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "清除所有令牌覆盖" @@ -7215,7 +7190,7 @@ msgstr "清除此附件的模拟数据" msgid "Clear nickname" msgstr "清除昵称" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "清除覆盖" @@ -7299,7 +7274,7 @@ msgstr "清除了话题。" msgid "Clearing trusted domains..." msgstr "正在清除信任域名…" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "清除此设备上的快速 CSS、导入主题、上传资产和本地文件引用。" @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "点击领取礼物!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "点击复制" @@ -8825,7 +8800,7 @@ msgstr "复制邀请链接" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "复制链接" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "无法更改您的账单周期" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "无法检查更新" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "无法删除你的消息" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "无法下载桌面版更新" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "无法开始连接" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "无法启动桌面版更新" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "已点击“危险”按钮。" #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "移动设备上默认关闭,以节省电量和流量。" #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "已删除你的消息。" msgid "Deleted." msgstr "已删除。" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "纤细轻巧的字体" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "有可用的桌面更新。请选择一个 Linux 软件包。" #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "桌面版更新已就绪" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "桌面版 {version} 已下载。重启 {productName} 以完成安装。" @@ -11753,11 +11723,9 @@ msgstr "忽略提及" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "由于{regionName}的成人内容法律限制,此媒体内容在您当前地区不可用。" #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "复制" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "编辑个人简介" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "可编辑文本" @@ -13001,7 +12969,7 @@ msgstr "启用附件到期" msgid "Enable audio" msgstr "开启音频" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "启用测试功能" @@ -13038,7 +13006,7 @@ msgstr "启用开发者模式" msgid "Enable email delivery" msgstr "启用邮件发送" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "启用额外选项" @@ -13660,7 +13628,7 @@ msgstr "错误" msgid "error code {code}" msgstr "错误代码 {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "内容渲染出错" @@ -14095,11 +14063,6 @@ msgstr "外部链接可能存在风险,请谨慎点击。" msgid "Extra large" msgstr "特大" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "特细" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "首次点击" msgid "First click pass-through when unfocused" msgstr "未聚焦时首次点击穿透" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "第一个选项" @@ -14917,10 +14880,6 @@ msgstr "跟随主设置 • {effectiveValue}%" msgid "Font" msgstr "字体" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "字重" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "从 {start} 开始" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "来自<0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "通用" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "生成可分享的链接或复制组合的自定义 CSS。" @@ -15481,11 +15440,6 @@ msgstr "生成新验证码" msgid "Generating code…" msgstr "正在生成验证码…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "文字显示柔和轻盈" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "他" msgid "Header" msgstr "标题" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "标题" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "正在索引频道" msgid "Indicator" msgstr "指示器" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "指示器与状态" @@ -17557,7 +17506,7 @@ msgstr "输入状态" msgid "Input volume" msgstr "输入音量" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "输入与文本" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "安装贴纸包" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "已安装" @@ -18094,15 +18043,6 @@ msgstr "暂时很安静…" msgid "Italian" msgstr "意大利语" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "斜体" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "斜体样式示例" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "语言" msgid "Language settings" msgstr "语言设置" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "语言支持" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "语言" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "大" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "终身版{premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "浅色" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux 默认" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux 安装包" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "将收件箱顶部频道标为已读" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "媒体大小" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "中" @@ -20820,7 +20750,7 @@ msgstr "更多" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "更多操作" @@ -20993,10 +20923,6 @@ msgstr "多重身份验证" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "多语言内容" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "新用户暂时无法加入。您可以先创建帐户或登录,稍后再试此链接。" #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "新版本" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "没有找到符合搜索条件的表情符号。" #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "没有匹配的表情" @@ -22363,11 +22289,6 @@ msgstr "无" msgid "None (normal behavior)" msgstr "无(正常行为)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "正常" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "只有您能看到这条消息。<0>忽略" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "不透明度" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "打开日期选择器" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "打开桌面版下载页面" @@ -23165,6 +23086,11 @@ msgstr "打开快捷切换" msgid "Open settings" msgstr "打开设置" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "打开软件中心" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "操作系统" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "启用实验性的社区和频道级别的未读消息徽章控制功能" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "为长篇阅读优化" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "正在优化相机…" @@ -23483,7 +23404,7 @@ msgstr "已超出退款期限" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "重叠头像组,显示多位用户,超出部分自动计数。" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "浮窗与菜单" @@ -23886,11 +23807,6 @@ msgstr "单条提示音量" msgid "Per-window audio isn't available on this build of macOS." msgstr "此 macOS 版本不支持按窗口共享音频。" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "日常内容分享优选" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "职位" msgid "Power saving" msgstr "省电模式" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "强大吸睛" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "主按钮(已禁用)" msgid "Primary accent color" msgstr "主题色" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "主要操作" @@ -25724,11 +25635,6 @@ msgstr "注册" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "当前已关闭注册。请使用管理员提供的注册链接创建账号。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "常规" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "常规按钮" @@ -26198,7 +26104,7 @@ msgstr "已移除用户上限。" msgid "Removed timeout from {0}" msgstr "已将 {0} 移出禁言列表" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "移除所有变量覆盖,但保留你的库和素材。" @@ -26703,7 +26609,7 @@ msgstr "重置应用数据" msgid "Reset app data and restart" msgstr "重置应用数据并重启" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "重置自定义主题数据" @@ -26714,7 +26620,7 @@ msgstr "重置自定义主题数据?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "重置数据" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "重启 {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "重启 {productName}" @@ -28030,7 +27936,7 @@ msgstr "正在搜索" msgid "Searching people..." msgstr "正在搜索用户…" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "第二个选项" @@ -28047,7 +27953,7 @@ msgstr "次要(已禁用)" msgid "Secondary accent color" msgstr "辅助强调色" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "次要操作" @@ -28339,7 +28245,7 @@ msgstr "已选择:{0}" msgid "Selection: {0} (max {1})" msgstr "已选:{0}(最长{1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "选择" @@ -28369,16 +28275,6 @@ msgstr "自托管模式覆盖" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "付款后 3 天内可自助退款,每 30 天限一次。退款订阅将取消订阅。欧盟/欧洲经济区买家在结账时放弃 14 天撤回权,以立即访问内容。请使用应用内退款按钮,而不是申请退单。退单可能会永久限制您的帐户。Stripe 安全处理付款。我们绝不会看到您的完整卡号。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "半粗体" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "半粗体大号" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "设置所有音效的音量。单独音效设置会覆盖此项。" #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "设置" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "多人正在输入..." #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "分享" @@ -29002,7 +28898,7 @@ msgstr "分享" msgid "Share action." msgstr "分享操作." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "分享当前自定义主题" @@ -29035,7 +28931,7 @@ msgstr "分享来源" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "购买礼品订阅,与好友共享{premiumProductName}体验。" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "分享主题" @@ -29963,11 +29859,6 @@ msgstr "带步进值的滑块" msgid "Sliders" msgstr "滑块" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "略粗的强调" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "辱骂、非人化言论或攻击受保护群体。" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "小" @@ -30161,11 +30050,6 @@ msgstr "以 5 为增量对齐." msgid "Social" msgstr "社交" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "柔和舒适的阅读体验" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "状态指示" msgid "Status page" msgstr "状态页面" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "状态" @@ -31291,15 +31175,6 @@ msgstr "Stripe 报告此卡在 {countryName} 发行。如需以当地货币支 msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "中等CPU占用,画质佳。屏幕共享时,Chromium的良好备用方案。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "强烈的视觉层次感" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "样式变体" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "订阅场景" msgid "Subtext" msgstr "副文本" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "副标题" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "测试 URL 展开和渲染的嵌入内容" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "文本" @@ -31973,6 +31841,10 @@ msgstr "文字频道" msgid "Text formatting" msgstr "文本格式" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "启用透明度时,文本将使用灰度抗锯齿而非 ClearType 进行渲染,因此看起来会更柔和。" + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "您要找的社群可能已被删除,或者您没有访问权限。" #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "桌面版更新未能下载。请在网络连接稳定后,通过更新按钮重试。" #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "桌面更新已下载。重启 {productName} 以完成安装。" #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "下载的文件已保存到你的电脑。请使用你的常规软件包管理器进行安装。" @@ -32442,12 +32314,7 @@ msgstr "对方可能不接受你的消息,或者你们不再共享社群。" msgid "They're not accepting friend requests right now." msgstr "对方暂时不接受好友请求。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "细" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "第三个选项" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "消息太重了。您需要先移除一些反应,然后才能添加更多。" #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "这是文本框中的一些示例文字。" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "这是第一个选项的描述" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "这是第二个选项的描述" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "这是第三个选项的描述" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "这将移除所有自定义快捷方式,并重新启用所有内置快捷方式。此操作无法撤销。" #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "此重置链接已过期。重置链接的有效期为 24 小时。请申请一个新链接。" +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "此重置链接已过期。重置链接有效期为 1 小时。请重新请求一个。" #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "此开关已禁用,无法切换" msgid "This switch is disabled in the checked state" msgstr "此开关在选中状态下禁用" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "此文本展示粗体标题样式" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "此文本展示粗体标题样式" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "这段文字展示了斜体样式" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "此文本展示了大号半粗体样式" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "此文本展示了常规样式" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "此文本演示半粗体样式" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "此文本框会随输入内容自动扩展,最多可显示 4 至 12 行。" @@ -33417,11 +33254,6 @@ msgstr "时区" msgid "Tip" msgstr "提示" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "标题" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "输入颜色(十六进制、RGB、HSL 或颜色名称),或使用 msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "输入颜色(十六进制、RGB、HSL 或颜色名称),或使用取色器." -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "字号大小" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "仅显示\"正在输入\"" msgid "Typing state" msgstr "正在输入" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "字体" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "排版字号演示" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "通用回退。画质最低,但兼容所有设备。" #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "未知" @@ -34649,8 +34469,8 @@ msgstr "无限表情" msgid "Unlimited stickers" msgstr "无限贴纸" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "通过{PREMIUM_PRODUCT_NAME}解锁{lockedEmojiCount, plural, one {#个自定义表情} other {#个自定义表情}},来自{communityCount, plural, one {#个社群} other {#个社群}}。" @@ -34796,7 +34616,7 @@ msgstr "未命名频道" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "未命名群组" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "我们更新了政策。请查看并接受以继续。" #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "网页版 {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "你正在编辑你的社群专属资料。此资料仅在此社群可见,并会覆盖你的全局资料。" #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "你现在是开发者了!" diff --git a/fluxer_app/src/features/i18n/locales/zh-TW/messages.po b/fluxer_app/src/features/i18n/locales/zh-TW/messages.po index 507a14936..07a392863 100644 --- a/fluxer_app/src/features/i18n/locales/zh-TW/messages.po +++ b/fluxer_app/src/features/i18n/locales/zh-TW/messages.po @@ -618,7 +618,7 @@ msgid "{defaultDeviceLabel} ({endpointLabel})" msgstr "{defaultDeviceLabel}({endpointLabel})" #. Client info desktop build identifier line. Example: "Canary Desktop 2026.419.3". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:38 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:37 msgid "{desktopChannel} Desktop {desktopVersion}" msgstr "{desktopChannel} 電腦版 {desktopVersion}" @@ -1089,12 +1089,12 @@ msgid "{productName} Community Team" msgstr "{productName} 社群團隊" #. Modal body shown when a user-initiated update check fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:104 +#: src/features/updater/commands/UpdaterModalCommands.tsx:108 msgid "{productName} could not reach the update service. Check your connection and try again." msgstr "{productName} 無法連線到更新服務。請檢查您的網路連線,然後再試一次。" #. Modal body shown when starting installation of a downloaded desktop update fails. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:121 +#: src/features/updater/commands/UpdaterModalCommands.tsx:125 msgid "{productName} could not restart into the downloaded update. Try again from the update button." msgstr "{productName} 無法重新啟動以安裝下載的更新。請從「更新」按鈕再次嘗試。" @@ -1210,8 +1210,8 @@ msgstr "{productName} 標誌" #. Client info web build identifier line. Example: "Canary Web 2026.518.0". Preserve placeholders. #. Client info web build identifier shown after the desktop build when the web and desktop channels differ. Example: "Stable Web 2026.518.0". Preserve placeholders. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:24 -#: src/features/app/components/dialogs/components/ClientInfo.tsx:33 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:23 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:32 msgid "{releaseChannel} Web {buildVersion}" msgstr "{releaseChannel} 網路版 {buildVersion}" @@ -1242,7 +1242,7 @@ msgid "{renderedPresenceCount} online" msgstr "{renderedPresenceCount} 位在線上" #. Short label in the channel display name state. Keep it concise. Preserve {resolvedName}; it is inserted by code. -#: src/features/channel/state/ChannelDisplayName.ts:12 +#: src/features/channel/state/ChannelDisplayName.ts:13 msgid "{resolvedName}'s group" msgstr "{resolvedName} 的群組" @@ -1961,7 +1961,7 @@ msgid "a hostname, e.g. {exampleDomain}" msgstr "主機名稱,例如 {exampleDomain}" #. Linux desktop updater modal body shown before version details and package format selector. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:126 +#: src/features/updater/commands/UpdaterModalCommands.tsx:130 msgid "A Linux desktop update is available. Choose the package format for this system and {productName} will save it locally." msgstr "有一個 Linux 桌面更新可用。請選擇此系統的套件格式,{productName} 會將其儲存到本地。" @@ -1990,7 +1990,7 @@ msgstr "投票" msgid "A redirect_uri is required when the bot scope is not the only scope." msgstr "當機器人範圍不是唯一範圍時,需要 redirect_uri。" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:342 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 msgid "A reusable component for empty states, errors, and status messages." msgstr "用於空白狀態、錯誤和狀態訊息的可重複使用元件。" @@ -3891,7 +3891,7 @@ msgstr "應用程式" msgid "Arabic" msgstr "阿拉伯文" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:227 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:226 msgid "Archive" msgstr "封存" @@ -4667,7 +4667,7 @@ msgid "Autoscrolling" msgstr "自動捲動" #. Label for the available desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:136 +#: src/features/updater/commands/UpdaterModalCommands.tsx:140 msgid "Available" msgstr "可用" @@ -5243,26 +5243,6 @@ msgstr "模糊" msgid "Blur strength" msgstr "模糊強度" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:82 -msgid "Body" -msgstr "內文" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:66 -msgid "Bold" -msgstr "粗體" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:134 -msgid "Bold heading" -msgstr "粗體標題" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:142 -msgid "Bold title" -msgstr "粗體標題" - #. Folder icon option in the community-folder settings modal: a bookmark shape. Refers to the bookmark icon glyph, not the saved-message bookmarks feature. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the buttons tab. Keep it concise. @@ -5590,7 +5570,7 @@ msgstr "按鈕樣式" msgid "Button with context menu" msgstr "含情境選單的按鈕" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:252 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:251 msgid "Buttons" msgstr "按鈕" @@ -5989,11 +5969,6 @@ msgstr "無法安裝貼圖包" msgid "Captcha verification failed. Try again." msgstr "驗證碼驗證失敗。請再試一次。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:74 -msgid "Caption" -msgstr "說明文字" - #. Section header in the Linux audio source picker. Lists capture-target options (entire system / specific apps). #: src/features/voice/components/AudioSourcePickerLinux.tsx:48 msgid "Capture" @@ -7179,7 +7154,7 @@ msgstr "清除所有啟用中的覆寫" msgid "Clear all attachment mocks" msgstr "清除所有附件模擬" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:378 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:384 msgid "Clear all token overrides" msgstr "清除所有權杖覆寫" @@ -7215,7 +7190,7 @@ msgstr "清除此附件的模擬資料" msgid "Clear nickname" msgstr "清除暱稱" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:401 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:407 msgid "Clear overrides" msgstr "清除覆寫" @@ -7299,7 +7274,7 @@ msgstr "已清除話題。" msgid "Clearing trusted domains..." msgstr "正在清除信任的網域…" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:359 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:365 msgid "Clears quick CSS, imported themes, uploaded assets, and local file references on this device." msgstr "清除此裝置上的快速 CSS、已匯入的主題、已上傳的資產和本機檔案參考。" @@ -7341,7 +7316,7 @@ msgid "Click to claim your gift!" msgstr "點擊領取你的禮物!" #. Short label in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:46 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:45 msgid "Click to copy" msgstr "點擊複製" @@ -8825,7 +8800,7 @@ msgstr "複製邀請連結" #. Generic action label that copies a URL to the clipboard. #: src/features/i18n/utils/CommonMessageDescriptors.ts:739 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:310 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:146 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:145 msgid "Copy link" msgstr "複製連結" @@ -9065,7 +9040,7 @@ msgid "Couldn't change your billing cycle" msgstr "無法變更您的帳單週期" #. Modal title shown when a user-initiated update check fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:100 +#: src/features/updater/commands/UpdaterModalCommands.tsx:104 msgid "Couldn't check for updates" msgstr "無法檢查更新" @@ -9172,7 +9147,7 @@ msgid "Couldn't delete your messages" msgstr "無法刪除你的訊息" #. Modal title shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:108 +#: src/features/updater/commands/UpdaterModalCommands.tsx:112 msgid "Couldn't download the desktop update" msgstr "無法下載桌面版更新" @@ -9426,7 +9401,7 @@ msgid "Couldn't start the connection" msgstr "無法建立連線" #. Modal title shown when starting installation of a downloaded desktop update fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:117 +#: src/features/updater/commands/UpdaterModalCommands.tsx:121 msgid "Couldn't start the desktop update" msgstr "無法啟動桌面版更新" @@ -10302,7 +10277,7 @@ msgid "Danger button clicked." msgstr "已點擊「危險」按鈕。" #. Short label in the account security tab. Keep it concise. Keep the tone plain and specific. -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:350 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 #: src/features/user/components/modals/tabs/account_security_tab/AccountSecuritySections.tsx:39 #: src/features/user/components/modals/tabs/applications_tab/ApplicationDetail.tsx:697 msgid "Danger zone" @@ -10669,7 +10644,7 @@ msgstr "為節省電力與數據用量,行動裝置預設為關閉。" #: src/features/user/components/modals/tabs/account_security_tab/SecurityTab.tsx:399 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:116 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:272 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:239 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:238 #: src/features/user/components/modals/tabs/ExpressionPacksTab.tsx:49 #: src/features/user/components/settings_utils/search_index/AccountSecurityIndex.ts:154 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:190 @@ -10964,11 +10939,6 @@ msgstr "已刪除您的訊息。" msgid "Deleted." msgstr "已刪除。" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:14 -msgid "Delicate and light typography" -msgstr "精緻輕巧的字體排版" - #. Status chip for a denied macOS permission. #: src/features/permissions/system/components/modals/MacPermissionsModal.tsx:59 msgid "Denied" @@ -11145,12 +11115,12 @@ msgid "Desktop update available. Choose a Linux package." msgstr "有可用的桌面版更新。請選擇 Linux 套件。" #. Modal title shown when a desktop app update has finished downloading. -#: src/features/updater/commands/UpdaterModalCommands.tsx:83 +#: src/features/updater/commands/UpdaterModalCommands.tsx:87 msgid "Desktop update ready" msgstr "桌面版更新已就緒" #. Desktop updater modal body. The version placeholder is the downloaded app version; productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:87 +#: src/features/updater/commands/UpdaterModalCommands.tsx:91 msgid "Desktop version {version} has been downloaded. Restart {productName} to finish installing." msgstr "桌面版 {version} 已下載完成。重新啟動 {productName} 以完成安裝。" @@ -11753,11 +11723,9 @@ msgstr "關閉提及" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Short label in the chat settings tab. Keep it concise. #. Short label in the inline. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/guild_roles_tab/RoleEditor.tsx:175 #: src/features/user/components/modals/tabs/chat_settings_tab/ChatSettingsTabInline.tsx:14 #: src/features/user/components/modals/tabs/ChatSettingsTab.tsx:14 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:102 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:154 #: src/features/voice/components/modals/ScreenSharePickerModal.tsx:116 msgid "Display" @@ -12305,7 +12273,7 @@ msgid "Due to mature content laws in {regionName}, this media is not available f msgstr "由於 {regionName} 的成人內容法規,此媒體在您目前的地區無法使用。" #: src/features/theme_studio/sections/LibrarySection.tsx:503 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:221 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:220 msgid "Duplicate" msgstr "複製" @@ -12590,7 +12558,7 @@ msgid "Edit your profile bio" msgstr "編輯個人簡介" #. Button or menu action label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:40 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:39 msgid "Editable text" msgstr "可編輯文字" @@ -13001,7 +12969,7 @@ msgstr "啟用附件到期" msgid "Enable audio" msgstr "啟用音訊" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:172 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:171 msgid "Enable beta feature" msgstr "啟用測試功能" @@ -13038,7 +13006,7 @@ msgstr "啟用開發者模式" msgid "Enable email delivery" msgstr "啟用電子郵件遞送" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:158 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:157 msgid "Enable extra option" msgstr "啟用額外選項" @@ -13660,7 +13628,7 @@ msgstr "錯誤" msgid "error code {code}" msgstr "錯誤代碼 {code}" -#: src/features/messaging/components/markdown/index.tsx:39 +#: src/features/messaging/components/markdown/index.tsx:40 msgid "Error rendering content" msgstr "內容顯示錯誤" @@ -14095,11 +14063,6 @@ msgstr "外部連結可能會有危險,請小心。" msgid "Extra large" msgstr "特大" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:18 -msgid "Extra light" -msgstr "特細" - #. Report category label for a community organized around extremist content or ideology. #: src/features/moderation/components/report/OptionDescriptors.ts:90 msgid "Extremist community" @@ -14791,7 +14754,7 @@ msgstr "首次點擊" msgid "First click pass-through when unfocused" msgstr "未聚焦時首次點擊穿透" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "First option" msgstr "第一個選項" @@ -14917,10 +14880,6 @@ msgstr "跟隨主設定 • {effectiveValue}%" msgid "Font" msgstr "字體" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:344 -msgid "Font weights" -msgstr "字體粗細" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:9 msgid "Fonts" @@ -15364,7 +15323,7 @@ msgid "From {start}" msgstr "從 {start} 起" #. placeholder {0}: sourceGuild.name -#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:104 +#: src/features/channel/components/emoji_picker/EmojiPickerInspector.tsx:102 msgid "from <0>{0}" msgstr "來自 <0>{0}" @@ -15460,7 +15419,7 @@ msgstr "GDPR" msgid "General" msgstr "一般" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:325 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:331 msgid "Generate a shareable link or copy your combined custom CSS." msgstr "產生可分享的連結,或複製您合併的自訂 CSS。" @@ -15481,11 +15440,6 @@ msgstr "產生新代碼" msgid "Generating code…" msgstr "正在產生代碼…" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:22 -msgid "Gentle and airy text display" -msgstr "輕柔的文字顯示" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/DeveloperOptionLabels.ts:209 msgid "Geo block overlay" @@ -16267,11 +16221,6 @@ msgstr "他" msgid "Header" msgstr "標題" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:94 -msgid "Heading" -msgstr "標題" - #. Title in the markdown tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab.tsx:25 msgid "Headings" @@ -17429,7 +17378,7 @@ msgstr "正在建立頻道索引" msgid "Indicator" msgstr "指示器" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:334 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:333 msgid "Indicators & status" msgstr "提示與狀態" @@ -17557,7 +17506,7 @@ msgstr "輸入狀態" msgid "Input volume" msgstr "輸入音量" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:260 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:259 msgid "Inputs & text" msgstr "輸入與文字" @@ -17590,7 +17539,7 @@ msgid "Install sticker pack" msgstr "安裝貼圖包" #. Label for the installed desktop version in the Linux update modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:132 +#: src/features/updater/commands/UpdaterModalCommands.tsx:136 msgid "Installed" msgstr "已安裝" @@ -18094,15 +18043,6 @@ msgstr "目前很安靜..." msgid "Italian" msgstr "義大利文" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:114 -msgid "Italic" -msgstr "斜體" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:392 -msgid "Italic style demonstration" -msgstr "斜體樣式示範" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:167 msgid "Italy" @@ -18532,10 +18472,6 @@ msgstr "語言" msgid "Language settings" msgstr "語言設定" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:285 -msgid "Language support" -msgstr "語言支援" - #. Submenu label in the textarea spellcheck submenu listing manual language overrides. #. Subsection title for spellcheck language settings. Keep it concise. #: src/features/channel/components/textarea/TextareaContextMenu.tsx:86 @@ -18544,9 +18480,7 @@ msgid "Languages" msgstr "語言" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:53 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:86 msgid "Large" msgstr "大" @@ -18822,9 +18756,7 @@ msgid "Lifetime {premiumProductName}" msgstr "終身版 {premiumProductName}" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#. Short label in the typography tab. Keep it concise. #: src/features/expressions/components/modals/sticker_form/StickerPreview.tsx:48 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:26 #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:54 msgid "Light" msgstr "淺色" @@ -19012,7 +18944,7 @@ msgid "Linux default" msgstr "Linux 預設值" #. Select label for choosing the Linux desktop package format to download. -#: src/features/updater/commands/UpdaterModalCommands.tsx:148 +#: src/features/updater/commands/UpdaterModalCommands.tsx:152 msgid "Linux package" msgstr "Linux 套件" @@ -19613,7 +19545,7 @@ msgid "Mark top inbox channel as read" msgstr "將最上方的收件匣頻道標示為已讀" #. Settings search synonym. Used to match this term when the user types it in the settings search bar. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:372 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:364 #: src/features/user/components/settings_utils/section_registry/SharedDescriptors.ts:122 msgid "Markdown" msgstr "Markdown" @@ -19945,10 +19877,8 @@ msgstr "媒體大小" #. Member verification level option in the community moderation settings tab. Short standalone severity label. #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/guild/components/modals/guild_tabs/GuildModerationTab.tsx:65 #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:49 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:50 msgid "Medium" msgstr "中等" @@ -20820,7 +20750,7 @@ msgstr "更多" #. Short label in the index. Keep it concise. #. Short label in the user profile modal. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:48 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:47 #: src/features/user/components/modals/UserProfileModal.tsx:114 msgid "More actions" msgstr "更多操作" @@ -20993,10 +20923,6 @@ msgstr "多重認證" msgid "Multi-line" msgstr "Multi-line" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:497 -msgid "Multilingual content" -msgstr "多語言內容" - #. Discovery category dropdown option in the community Discovery settings tab. #: src/features/guild/components/modals/guild_tabs/GuildDiscoveryTab.tsx:79 msgid "Music" @@ -21653,7 +21579,7 @@ msgid "New users can't join right now. You can still create an account or sign i msgstr "新使用者目前無法加入。您仍然可以建立帳號或登入,然後稍後再試一次此連結。" #. Fallback version label when the available desktop version is unknown. -#: src/features/updater/commands/UpdaterModalCommands.tsx:144 +#: src/features/updater/commands/UpdaterModalCommands.tsx:148 msgid "New version" msgstr "新版本" @@ -21921,7 +21847,7 @@ msgid "No emojis found matching your search." msgstr "找不到符合搜尋條件的表情符號。" #. Empty-state text in the channel and chat emoji picker. -#: src/features/channel/components/EmojiPicker.tsx:43 +#: src/features/channel/components/EmojiPicker.tsx:41 msgid "No emojis match that search" msgstr "沒有符合搜尋條件的表情符號" @@ -22363,11 +22289,6 @@ msgstr "無" msgid "None (normal behavior)" msgstr "無(正常行為)" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:106 -msgid "Normal" -msgstr "一般" - #. Short label in the language and locale names. Keep it concise. #: src/features/user/utils/LocaleUtils.ts:100 msgid "Norwegian" @@ -22792,7 +22713,7 @@ msgid "Only you can see this message. <0>Dismiss" msgstr "只有您能看見此訊息。<0>關閉" #. Short label in the index. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:44 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:43 msgid "Opacity" msgstr "不透明度" @@ -22970,7 +22891,7 @@ msgid "Open date picker" msgstr "開啟日期選擇器" #. Button label that opens the Fluxer desktop downloads page in a browser. -#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +#: src/features/updater/commands/UpdaterModalCommands.tsx:83 msgid "Open desktop downloads" msgstr "開啟桌面版下載頁面" @@ -23165,6 +23086,11 @@ msgstr "開啟快速切換" msgid "Open settings" msgstr "開啟設定" +#. Button label that opens the software center via appstream protocol. +#: src/features/updater/commands/UpdaterModalCommands.tsx:79 +msgid "Open software center" +msgstr "開啟軟體市集" + #. Action that opens the sticker URL in an external browser. #: src/features/ui/action_menu/items/StickerContextMenuItems.tsx:40 msgid "Open sticker in browser" @@ -23311,11 +23237,6 @@ msgstr "作業系統" msgid "Opt into experimental per-community and per-channel unread badge controls" msgstr "啟用實驗性的社群和頻道未讀標記控制功能" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:46 -msgid "Optimized for longer reading passages" -msgstr "已針對長篇閱讀最佳化" - #: src/features/voice/components/modals/CameraPreviewModal.tsx:906 msgid "Optimizing camera..." msgstr "正在最佳化相機…" @@ -23483,7 +23404,7 @@ msgstr "已超出退款期限" msgid "Overlapping avatar groups showing multiple users with automatic overflow counts." msgstr "重疊的頭像群組,顯示多位使用者並自動計算溢出數量。" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:327 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:326 msgid "Overlays & menus" msgstr "浮層與選單" @@ -23886,11 +23807,6 @@ msgstr "個別音效音量" msgid "Per-window audio isn't available on this build of macOS." msgstr "此 macOS 版本不支援單一視窗音訊。" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:38 -msgid "Perfect for everyday content" -msgstr "適合日常內容" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:86 msgid "Performance" @@ -24417,11 +24333,6 @@ msgstr "職位" msgid "Power saving" msgstr "省電模式" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:70 -msgid "Powerful and attention-grabbing" -msgstr "強大且引人注目" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:111 msgid "Pre-upload attachments" @@ -24691,7 +24602,7 @@ msgstr "主要 (已停用)" msgid "Primary accent color" msgstr "主要強調色" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:351 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:350 msgid "Primary action" msgstr "主要動作" @@ -25724,11 +25635,6 @@ msgstr "註冊" msgid "Registration is currently closed. Use a registration link from an admin to create an account." msgstr "目前已關閉註冊。請使用管理員提供的註冊連結建立帳號。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:34 -msgid "Regular" -msgstr "一般" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:226 msgid "Regular button" msgstr "一般按鈕" @@ -26198,7 +26104,7 @@ msgstr "已移除使用者上限。" msgid "Removed timeout from {0}" msgstr "已將 {0} 的禁言解除" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:381 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:387 msgid "Removes every per-variable override but keeps your library and assets intact." msgstr "移除所有變數覆寫,但保留您的資料庫和資產。" @@ -26703,7 +26609,7 @@ msgstr "重設應用程式資料" msgid "Reset app data and restart" msgstr "重設應用程式資料並重新啟動" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:356 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:362 msgid "Reset custom theme data" msgstr "重設自訂主題資料" @@ -26714,7 +26620,7 @@ msgstr "要重設自訂主題資料嗎?" #. Button or menu action label in the theme studio settings section. Keep it concise. #: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:76 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:371 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:377 msgid "Reset data" msgstr "重設資料" @@ -26854,7 +26760,7 @@ msgid "Restart {appName}" msgstr "重新啟動 {appName}" #. Button label that restarts the app to apply a desktop update. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:96 +#: src/features/updater/commands/UpdaterModalCommands.tsx:100 msgid "Restart {productName}" msgstr "重新啟動 {productName}" @@ -28030,7 +27936,7 @@ msgstr "正在搜尋" msgid "Searching people..." msgstr "正在搜尋聯絡人…" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "Second option" msgstr "第二個選項" @@ -28047,7 +27953,7 @@ msgstr "次要 (已停用)" msgid "Secondary accent color" msgstr "輔助強調色" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:355 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:354 msgid "Secondary action" msgstr "次要動作" @@ -28339,7 +28245,7 @@ msgstr "選取範圍:{0}" msgid "Selection: {0} (max {1})" msgstr "選取範圍:{0} (上限 {1})" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:293 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:292 msgid "Selections" msgstr "選擇" @@ -28369,16 +28275,6 @@ msgstr "自託管模式覆寫" msgid "Self-serve refunds available within 3 days of payment, once every 30 days. Refunding a subscription cancels it. EU/EEA buyers waive the 14-day right of withdrawal at checkout to access content immediately. Use the in-app refund button instead of a chargeback. Chargebacks can permanently restrict your account. Stripe handles payment securely. We never see your full card number." msgstr "付款後 3 天內可自行申請退款,每 30 天限一次。訂閱退款後即會取消訂閱。歐盟/歐洲經濟區買家在結帳時放棄 14 天的撤銷權,以立即存取內容。請使用應用程式內的退款按鈕,而非申請退款。申請退款可能會永久限制您的帳戶。Stripe 會安全處理付款。我們絕不會看到您的完整卡號。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:58 -msgid "Semi bold" -msgstr "半粗體" - -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:126 -msgid "Semi-bold large" -msgstr "半粗體大字" - #. Button or menu action label in the share theme modal. Keep it concise. #. Send-message button label in the voice message composer modal. #: src/features/theme/components/modals/ShareThemeModal.tsx:42 @@ -28951,7 +28847,7 @@ msgstr "設定所有音效的音量。個別音效的設定會忽略此項。" #. Generic action label / section header that opens settings. #: src/features/i18n/utils/CommonMessageDescriptors.ts:262 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:264 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:126 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:125 msgid "Settings" msgstr "設定" @@ -28991,9 +28887,9 @@ msgid "Several people are typing..." msgstr "多人正在輸入中…" #: src/features/theme_studio/sections/QuickCssSection.tsx:225 -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:316 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabButtonsTab.tsx:279 -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:133 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:132 msgid "Share" msgstr "分享" @@ -29002,7 +28898,7 @@ msgstr "分享" msgid "Share action." msgstr "分享動作." -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:322 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:328 msgid "Share active custom theme" msgstr "分享目前使用中的自訂主題" @@ -29035,7 +28931,7 @@ msgstr "分享來源" msgid "Share the {premiumProductName} experience with your friends by purchasing a gift subscription." msgstr "購買禮物訂閱,與好友分享 {premiumProductName} 體驗。" -#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:341 +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:347 msgid "Share theme" msgstr "分享主題" @@ -29963,11 +29859,6 @@ msgstr "附帶步進值的滑桿" msgid "Sliders" msgstr "滑桿" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:54 -msgid "Slightly bolder emphasis" -msgstr "稍微粗一點的強調" - #. Country name. EU member state in the illegal-content report country dropdown. #: src/features/moderation/components/report/OptionDescriptors.ts:203 msgid "Slovakia" @@ -30076,9 +29967,7 @@ msgid "Slurs, dehumanizing language, or attacks on protected groups." msgstr "誹謗、非人化言論或攻擊受保護群體。" #. Short label in the selections tab. Keep it concise. -#. Short label in the typography tab. Keep it concise. #: src/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab.tsx:45 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:78 msgid "Small" msgstr "小" @@ -30161,11 +30050,6 @@ msgstr "以 5 為單位調整。" msgid "Social" msgstr "社群" -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:30 -msgid "Soft and easy reading experience" -msgstr "柔和、輕鬆的閱讀體驗" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/VoiceVideoIndex.ts:148 msgid "Software encoder" @@ -30877,7 +30761,7 @@ msgstr "狀態指示器" msgid "Status page" msgstr "狀態頁面" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:341 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:340 msgid "Status slate" msgstr "狀態" @@ -31291,15 +31175,6 @@ msgstr "Stripe 回報此卡片發行於 {countryName}。若要以當地貨幣付 msgid "Strong quality at moderate CPU cost. Good Chromium fallback for screen sharing." msgstr "畫質佳,CPU 耗用中等。Chromium 螢幕分享的理想備用方案。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:62 -msgid "Strong visual hierarchy" -msgstr "強烈的視覺層次" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:458 -msgid "Style variations" -msgstr "樣式變化" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/section_registry/AppearanceSections.ts:130 msgid "Styling" @@ -31346,11 +31221,6 @@ msgstr "訂閱情境" msgid "Subtext" msgstr "副標題" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:90 -msgid "Subtitle" -msgstr "副標題" - #. Developer tools debug menu label. Internal-only surface for developers; translators may keep this terse. #: src/features/channel/components/channel_header_components/developer_tools/OptionPresets.ts:71 #: src/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab.tsx:122 @@ -31935,10 +31805,8 @@ msgstr "測試網址展開和已呈現的嵌入內容" #. Channel type chip label for a text channel. #. Option label for a WebRTC content hint select. -#. Short label in the typography tab. Keep it concise. #: src/features/channel/utils/ChannelUtils.tsx:51 #: src/features/user/components/modals/tabs/advanced_settings_tab/AdvancedVideoControls.tsx:150 -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:42 msgid "Text" msgstr "文字" @@ -31973,6 +31841,10 @@ msgstr "文字頻道" msgid "Text formatting" msgstr "文字格式" +#: src/features/theme_studio/sections/ThemeStudioSettingsSection.tsx:308 +msgid "Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, so it will look softer." +msgstr "啟用透明度時,文字會以灰階反鋸齒而非 ClearType 呈現,因此看起來會比較柔和。" + #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/ChatSettingsIndex.ts:383 @@ -32161,17 +32033,17 @@ msgid "The community you're looking for may have been deleted or you may not hav msgstr "您要找的社群可能已被刪除,或是您沒有權限存取。" #. Modal body shown when a desktop update download fails. -#: src/features/updater/commands/UpdaterModalCommands.tsx:112 +#: src/features/updater/commands/UpdaterModalCommands.tsx:116 msgid "The desktop update could not be downloaded. Try again from the update button when your connection is stable." msgstr "無法下載桌面版更新。請在網路連線穩定後,從更新按鈕重試。" #. Desktop updater modal body when the downloaded version is unknown. productName is the app name. -#: src/features/updater/commands/UpdaterModalCommands.tsx:92 +#: src/features/updater/commands/UpdaterModalCommands.tsx:96 msgid "The desktop update has been downloaded. Restart {productName} to finish installing." msgstr "桌面更新已下載完成。重新啟動 {productName} 以完成安裝。" #. Help text below the Linux package format selector in the desktop updater modal. -#: src/features/updater/commands/UpdaterModalCommands.tsx:152 +#: src/features/updater/commands/UpdaterModalCommands.tsx:156 msgid "The downloaded file is saved to your computer. Install it with your normal package manager." msgstr "下載的檔案已儲存到您的電腦。請使用您慣用的套件管理員進行安裝。" @@ -32442,12 +32314,7 @@ msgstr "他們可能不接受您的訊息,或者您們已不再是共同社群 msgid "They're not accepting friend requests right now." msgstr "他們目前不接受交友邀請。" -#. Short label in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:10 -msgid "Thin" -msgstr "細" - -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "Third option" msgstr "第三個選項" @@ -32870,19 +32737,19 @@ msgid "This is one heavy message. Some reactions need to be removed before you c msgstr "這則訊息太熱門了。您必須先移除一些心情,才能再新增。" #. Description text in the index. -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:36 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:35 msgid "This is some example text in the textarea." msgstr "這是文字輸入區的範例文字。" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:111 msgid "This is the first option description" msgstr "這是第一個選項說明" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:112 msgid "This is the second option description" msgstr "這是第二個選項的說明" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:114 +#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:113 msgid "This is the third option description" msgstr "這是第三個選項的說明" @@ -33035,8 +32902,8 @@ msgid "This removes every custom shortcut and re-enables all built-in shortcuts. msgstr "這會移除所有自訂捷徑,並重新啟用所有內建捷徑。此動作無法復原。" #: src/features/auth/components/pages/ResetPasswordPage.tsx:114 -msgid "This reset link has expired. Reset links last 24 hours. Request a new one." -msgstr "此重設連結已過期。重設連結的有效期限為 24 小時。請申請一個新的連結。" +msgid "This reset link has expired. Reset links last 1 hour. Please request a new one." +msgstr "此重設連結已過期。重設連結有效時間為 1 小時。請重新申請一個。" #. Fallback role name in a mass-mention warning title. #: src/features/channel/components/MentionEveryonePopout.tsx:14 @@ -33063,36 +32930,6 @@ msgstr "此開關已停用,無法切換" msgid "This switch is disabled in the checked state" msgstr "此開關在勾選狀態下無法使用" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:138 -msgid "This text demonstrates bold heading styling" -msgstr "此文字示範粗體標題樣式" - -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:146 -msgid "This text demonstrates bold title styling" -msgstr "此文字為粗體標題樣式範例" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:118 -msgid "This text demonstrates italic styling" -msgstr "這段文字示範了斜體樣式" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:130 -msgid "This text demonstrates large semi-bold styling" -msgstr "此文字為大尺寸半粗體樣式" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:110 -msgid "This text demonstrates normal styling" -msgstr "此文字為一般樣式範例" - -#. Label in the typography tab. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:122 -msgid "This text demonstrates semi-bold styling" -msgstr "此文字為半粗體樣式範例" - #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:299 msgid "This textarea auto-expands between 4 and 12 rows as you type." msgstr "此文字區會隨著您的輸入自動展開,介於 4 到 12 行之間。" @@ -33417,11 +33254,6 @@ msgstr "時區" msgid "Tip" msgstr "提示" -#. Title in the typography tab. Keep it concise. -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:98 -msgid "Title" -msgstr "標題" - #. Settings search synonym. Used to match this term when the user types it in the settings search bar. #: src/features/user/components/settings_utils/search_index/DesktopSettingsIndex.ts:178 msgid "Title bar" @@ -34116,10 +33948,6 @@ msgstr "輸入顏色(十六進位、rgb()、hsl 或名稱),或使用選色 msgid "Type a color (hex, rgb(), hsl(), or name) or use the picker." msgstr "輸入顏色(十六進位、rgb()、hsl() 或名稱)或使用選取器。" -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:403 -msgid "Type scale" -msgstr "字體大小" - #. Label in the inputs tab. #: src/features/user/components/modals/tabs/component_gallery_tab/ComponentGalleryTabInputsTab.tsx:89 msgid "Type your message here…" @@ -34168,14 +33996,6 @@ msgstr "只顯示輸入狀態" msgid "Typing state" msgstr "輸入狀態" -#: src/features/user/components/modals/tabs/component_gallery_tab/index.tsx:365 -msgid "Typography" -msgstr "字體" - -#: src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx:447 -msgid "Typography scale demonstration" -msgstr "字體大小示範" - #. Developer options group for forcing UI component states. #: src/features/devtools/components/DeveloperOptionsToggleGroups.ts:57 msgid "UI components" @@ -34494,7 +34314,7 @@ msgstr "通用備用。畫質最低,但隨處可用。" #: src/features/i18n/utils/CommonMessageDescriptors.ts:755 #: src/features/invite/components/InviteListItem.tsx:34 #: src/features/moderation/components/modals/BanDetailsModal.tsx:114 -#: src/features/updater/commands/UpdaterModalCommands.tsx:140 +#: src/features/updater/commands/UpdaterModalCommands.tsx:144 msgid "Unknown" msgstr "不明" @@ -34649,8 +34469,8 @@ msgstr "無限表情符號" msgid "Unlimited stickers" msgstr "無限貼圖" -#: src/features/channel/components/EmojiPicker.tsx:163 -#: src/features/channel/components/MobileEmojiPicker.tsx:208 +#: src/features/channel/components/EmojiPicker.tsx:150 +#: src/features/channel/components/MobileEmojiPicker.tsx:195 msgid "Unlock {lockedEmojiCount, plural, one {# custom emoji} other {# custom emojis}} from {communityCount, plural, one {# community} other {# communities}} with {PREMIUM_PRODUCT_NAME}." msgstr "透過 {PREMIUM_PRODUCT_NAME} 解鎖來自 {communityCount, plural, one {# 個社群} other {# 個社群}} 的 {lockedEmojiCount, plural, one {# 個自訂表情符號} other {# 個自訂表情符號}}。" @@ -34796,7 +34616,7 @@ msgstr "未命名頻道" #. Fallback title in an invite embed for a group DM with no name set. #. Short label in the channel display name state. Keep it concise. #: src/features/channel/components/InviteEmbed.tsx:72 -#: src/features/channel/state/ChannelDisplayName.ts:17 +#: src/features/channel/state/ChannelDisplayName.ts:18 #: src/features/channel/utils/ChannelUtils.tsx:59 msgid "Unnamed group" msgstr "未命名群組" @@ -37333,7 +37153,7 @@ msgid "We've updated our policies. Review and accept them to continue." msgstr "我們已更新政策。請檢閱並接受以繼續使用。" #. Client info web build identifier shown after the desktop build when both are present. Example: "Web 2026.518.0". Preserve placeholder. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:28 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:27 msgid "Web {buildVersion}" msgstr "網頁版 {buildVersion}" @@ -37917,7 +37737,7 @@ msgid "You are editing your per-community profile. This profile will only be vis msgstr "您正在編輯您的社群專屬個人檔案。此檔案只會在此社群中顯示,並會覆寫您的全域個人檔案。" #. Body text in the settings dialog client info. -#: src/features/app/components/dialogs/components/ClientInfo.tsx:42 +#: src/features/app/components/dialogs/components/ClientInfo.tsx:41 msgid "You are now a developer!" msgstr "您現在是開發人員了!" diff --git a/fluxer_app/src/features/messaging/components/markdown/index.tsx b/fluxer_app/src/features/messaging/components/markdown/index.tsx index 42f096de4..84ae7d746 100644 --- a/fluxer_app/src/features/messaging/components/markdown/index.tsx +++ b/fluxer_app/src/features/messaging/components/markdown/index.tsx @@ -8,6 +8,7 @@ import { import {getParserFlagsForContext} from '@app/features/messaging/utils/markdown/MarkdownParserFlags'; import {WasmParser} from '@app/features/messaging/utils/markdown/parser/WasmParser'; import {Logger} from '@app/features/platform/utils/AppLogger'; +import {noteText} from '@app/features/theme/fonts/ScriptFontLoader'; import markupStyles from '@app/features/theme/styles/Markup.module.css'; import {useLingui} from '@lingui/react'; import {Trans} from '@lingui/react/macro'; @@ -48,6 +49,7 @@ function parseMarkdown( content: string, options: MarkdownParseOptions = {context: MarkdownContext.STANDARD_WITHOUT_JUMBO}, ): React.ReactNode { + noteText(content); try { const flags = getParserFlagsForContext(options.context); const parser = new WasmParser(content, flags); diff --git a/fluxer_app/src/features/messaging/components/modals/MediaModal.module.css b/fluxer_app/src/features/messaging/components/modals/MediaModal.module.css index 357ae94b0..df5677b49 100644 --- a/fluxer_app/src/features/messaging/components/modals/MediaModal.module.css +++ b/fluxer_app/src/features/messaging/components/modals/MediaModal.module.css @@ -338,8 +338,8 @@ background-color: var(--media-hud-surface-bg); border: 0.0625rem solid var(--media-hud-surface-border); box-shadow: var(--media-hud-shadow); - backdrop-filter: blur(2.25rem) saturate(160%); - -webkit-backdrop-filter: blur(2.25rem) saturate(160%); + backdrop-filter: blur(2.25rem); + -webkit-backdrop-filter: blur(2.25rem); pointer-events: auto; min-width: 0; max-width: calc(100% - 11.25rem); @@ -397,8 +397,8 @@ background-color: var(--media-hud-surface-bg); border: 0.0625rem solid var(--media-hud-surface-border); box-shadow: var(--media-hud-shadow); - backdrop-filter: blur(2.25rem) saturate(160%); - -webkit-backdrop-filter: blur(2.25rem) saturate(160%); + backdrop-filter: blur(2.25rem); + -webkit-backdrop-filter: blur(2.25rem); pointer-events: auto; height: 100%; box-sizing: border-box; @@ -412,8 +412,8 @@ background-color: var(--media-hud-surface-bg); border: 0.0625rem solid var(--media-hud-surface-border); box-shadow: var(--media-hud-shadow); - backdrop-filter: blur(2.25rem) saturate(160%); - -webkit-backdrop-filter: blur(2.25rem) saturate(160%); + backdrop-filter: blur(2.25rem); + -webkit-backdrop-filter: blur(2.25rem); pointer-events: auto; height: 100%; box-sizing: border-box; @@ -617,8 +617,8 @@ background-color: var(--media-hud-surface-bg); border: 0.0625rem solid var(--media-hud-surface-border); box-shadow: var(--media-hud-shadow); - backdrop-filter: blur(2.25rem) saturate(160%); - -webkit-backdrop-filter: blur(2.25rem) saturate(160%); + backdrop-filter: blur(2.25rem); + -webkit-backdrop-filter: blur(2.25rem); pointer-events: auto; } @@ -653,8 +653,8 @@ border: 0.0625rem solid var(--media-hud-surface-border); box-shadow: var(--media-hud-shadow); padding: var(--media-hud-surface-padding) 0.75rem; - backdrop-filter: blur(2.25rem) saturate(160%); - -webkit-backdrop-filter: blur(2.25rem) saturate(160%); + backdrop-filter: blur(2.25rem); + -webkit-backdrop-filter: blur(2.25rem); pointer-events: auto; } @@ -794,8 +794,8 @@ background-color: var(--media-hud-surface-bg); border: 0.0625rem solid var(--media-hud-surface-border); box-shadow: var(--media-hud-shadow); - backdrop-filter: blur(2.25rem) saturate(160%); - -webkit-backdrop-filter: blur(2.25rem) saturate(160%); + backdrop-filter: blur(2.25rem); + -webkit-backdrop-filter: blur(2.25rem); color: var(--media-hud-color-muted, rgb(255 255 255 / 0.72)); cursor: pointer; transition: @@ -840,8 +840,8 @@ background-color: var(--media-hud-surface-bg); border: 0.0625rem solid var(--media-hud-surface-border); box-shadow: var(--media-hud-shadow); - backdrop-filter: blur(2.25rem) saturate(160%); - -webkit-backdrop-filter: blur(2.25rem) saturate(160%); + backdrop-filter: blur(2.25rem); + -webkit-backdrop-filter: blur(2.25rem); pointer-events: none; } diff --git a/fluxer_app/src/features/relationship/utils/FriendsListUtils.module.css b/fluxer_app/src/features/relationship/utils/FriendsListUtils.module.css index e56cd2b8b..5b493ccfc 100644 --- a/fluxer_app/src/features/relationship/utils/FriendsListUtils.module.css +++ b/fluxer_app/src/features/relationship/utils/FriendsListUtils.module.css @@ -108,8 +108,7 @@ .friendItemStatus { font-size: 0.8125rem; line-height: 1rem; - color: var(--text-primary-muted); - opacity: 0.8; + color: color-mix(in srgb, var(--text-primary-muted) 80%, transparent); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; diff --git a/fluxer_app/src/features/search/components/bottomsheets/QuickSwitcherBottomSheet.module.css b/fluxer_app/src/features/search/components/bottomsheets/QuickSwitcherBottomSheet.module.css index 4665e229b..179ba72b1 100644 --- a/fluxer_app/src/features/search/components/bottomsheets/QuickSwitcherBottomSheet.module.css +++ b/fluxer_app/src/features/search/components/bottomsheets/QuickSwitcherBottomSheet.module.css @@ -148,8 +148,7 @@ .optionDescription { font-size: 0.8125rem; line-height: 1rem; - color: var(--text-primary-muted); - opacity: 0.8; + color: color-mix(in srgb, var(--text-primary-muted) 80%, transparent); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; diff --git a/fluxer_app/src/features/theme/fonts/ScriptFacesJP.ts b/fluxer_app/src/features/theme/fonts/ScriptFacesJP.ts new file mode 100644 index 000000000..3f20a514b --- /dev/null +++ b/fluxer_app/src/features/theme/fonts/ScriptFacesJP.ts @@ -0,0 +1,3 @@ +// SPDX-License-Identifier: AGPL-3.0-or-later + +import '@fluxer/fonts/css/script-jp.css'; diff --git a/fluxer_app/src/features/theme/fonts/ScriptFacesKR.ts b/fluxer_app/src/features/theme/fonts/ScriptFacesKR.ts new file mode 100644 index 000000000..948f48556 --- /dev/null +++ b/fluxer_app/src/features/theme/fonts/ScriptFacesKR.ts @@ -0,0 +1,3 @@ +// SPDX-License-Identifier: AGPL-3.0-or-later + +import '@fluxer/fonts/css/script-kr.css'; diff --git a/fluxer_app/src/features/theme/fonts/ScriptFacesNonLatin.ts b/fluxer_app/src/features/theme/fonts/ScriptFacesNonLatin.ts new file mode 100644 index 000000000..b28950af4 --- /dev/null +++ b/fluxer_app/src/features/theme/fonts/ScriptFacesNonLatin.ts @@ -0,0 +1,6 @@ +// SPDX-License-Identifier: AGPL-3.0-or-later + +import '@fluxer/fonts/css/script-arabic.css'; +import '@fluxer/fonts/css/script-devanagari.css'; +import '@fluxer/fonts/css/script-hebrew.css'; +import '@fluxer/fonts/css/script-thai-looped.css'; diff --git a/fluxer_app/src/features/theme/fonts/ScriptFacesSC.ts b/fluxer_app/src/features/theme/fonts/ScriptFacesSC.ts new file mode 100644 index 000000000..f8271e05a --- /dev/null +++ b/fluxer_app/src/features/theme/fonts/ScriptFacesSC.ts @@ -0,0 +1,3 @@ +// SPDX-License-Identifier: AGPL-3.0-or-later + +import '@fluxer/fonts/css/script-sc.css'; diff --git a/fluxer_app/src/features/theme/fonts/ScriptFacesTC.ts b/fluxer_app/src/features/theme/fonts/ScriptFacesTC.ts new file mode 100644 index 000000000..efcdd5876 --- /dev/null +++ b/fluxer_app/src/features/theme/fonts/ScriptFacesTC.ts @@ -0,0 +1,3 @@ +// SPDX-License-Identifier: AGPL-3.0-or-later + +import '@fluxer/fonts/css/script-tc.css'; diff --git a/fluxer_app/src/features/theme/fonts/ScriptFacesThaiLoopless.ts b/fluxer_app/src/features/theme/fonts/ScriptFacesThaiLoopless.ts new file mode 100644 index 000000000..4dbf9aa80 --- /dev/null +++ b/fluxer_app/src/features/theme/fonts/ScriptFacesThaiLoopless.ts @@ -0,0 +1,3 @@ +// SPDX-License-Identifier: AGPL-3.0-or-later + +import '@fluxer/fonts/css/script-thai.css'; diff --git a/fluxer_app/src/features/theme/fonts/ScriptFontLoader.test.ts b/fluxer_app/src/features/theme/fonts/ScriptFontLoader.test.ts new file mode 100644 index 000000000..10fc27480 --- /dev/null +++ b/fluxer_app/src/features/theme/fonts/ScriptFontLoader.test.ts @@ -0,0 +1,211 @@ +// @vitest-environment happy-dom +// SPDX-License-Identifier: AGPL-3.0-or-later + +import {readFileSync} from 'node:fs'; +import {join} from 'node:path'; +import { + hanChunkForLanguage, + noteLocale, + noteText, + requestedScriptChunks, + resetScriptFontLoaderForTests, + type ScriptChunk, + whenScriptChunksSettled, +} from '@app/features/theme/fonts/ScriptFontLoader'; +import {afterEach, beforeEach, describe, expect, it} from 'vitest'; + +const FONTS_CSS = join(process.cwd(), '..', 'packages', 'fonts', 'css'); + +function chunks(): Array { + return [...requestedScriptChunks()].sort(); +} + +beforeEach(() => { + resetScriptFontLoaderForTests(); + document.documentElement.lang = ''; +}); + +afterEach(async () => { + await whenScriptChunksSettled(); +}); + +describe('script font loading gate', () => { + it('requests nothing for text that is entirely Latin, which is the whole point of the split', () => { + noteText('Hello there, this is an ordinary English message with punctuation: 1, 2, 3!'); + noteText('Ça va? Grüße! Añadir — naïve café résumé'); + expect(chunks()).toEqual([]); + }); + + it('requests nothing for empty or absent text', () => { + noteText(''); + noteText(null); + noteText(undefined); + expect(chunks()).toEqual([]); + }); + + it('requests the JP chunk on kana, which no other bundled family covers', () => { + noteText('こんにちは'); + expect(chunks()).toEqual(['jp']); + }); + + it('requests the KR chunk on hangul', () => { + noteText('안녕하세요'); + expect(chunks()).toEqual(['kr']); + }); + + it('requests only the family the cascade would select for Han, not all three', () => { + noteText('你好世界'); + expect(chunks()).toEqual(['sc']); + }); + + it('breaks the Han tie with the document language, never with it deciding whether to load', () => { + document.documentElement.lang = 'ja'; + noteText('漢字'); + expect(chunks()).toEqual(['jp']); + + resetScriptFontLoaderForTests(); + document.documentElement.lang = 'zh-TW'; + noteText('漢字'); + expect(chunks()).toEqual(['tc']); + + resetScriptFontLoaderForTests(); + document.documentElement.lang = 'zh-CN'; + noteText('汉字'); + expect(chunks()).toEqual(['sc']); + }); + + it('serves mixed-script text from a Latin locale, which is what a locale gate would get wrong', () => { + document.documentElement.lang = 'en-US'; + noteText('Hey ソラ, did 김민준 see 你好?'); + expect(chunks()).toEqual(['jp', 'kr', 'sc']); + }); + + it('never withholds a chunk because of the locale: a Japanese UI still loads Korean text', () => { + document.documentElement.lang = 'ja'; + noteText('안녕하세요'); + expect(chunks()).toEqual(['kr']); + }); + + it('requests each chunk once, so a busy render path cannot storm the network', () => { + noteText('こんにちは'); + const first = requestedScriptChunks().size; + for (let i = 0; i < 100; i += 1) noteText('こんにちは'); + expect(requestedScriptChunks().size).toBe(first); + }); + + it('brings a CJK locale forward at activation without waiting for a codepoint', () => { + noteLocale('ko'); + expect(chunks()).toEqual(['kr']); + + resetScriptFontLoaderForTests(); + noteLocale('en-US'); + expect(chunks()).toEqual([]); + }); + + it('takes the tie-break on ideograph-adjacent text that is not itself an ideograph', () => { + for (const [label, text] of [ + ['iteration mark', '々'], + ['ideographic zero', '〇'], + ['kangxi radical', '⼀'], + ['ideographic full stop', '。'], + ['fullwidth exclamation', '!'], + ['ideographic space', ' '], + ] as const) { + resetScriptFontLoaderForTests(); + document.documentElement.lang = 'en-US'; + noteText(text); + expect(chunks(), `${label} announced no family`).toEqual(['sc']); + } + }); + + it('routes ideograph-adjacent text through the same tie-break as Han, not a fixed family', () => { + document.documentElement.lang = 'ja'; + noteText('。'); + expect(chunks()).toEqual(['jp']); + + resetScriptFontLoaderForTests(); + document.documentElement.lang = 'zh-TW'; + noteText('()'); + expect(chunks()).toEqual(['tc']); + }); + + it('keeps halfwidth katakana on JP alone rather than also taking the Han tie-break', () => { + document.documentElement.lang = 'en-US'; + noteText('ソラ'); + expect(chunks()).toEqual(['jp']); + }); + + it('still requests nothing for ordinary Latin punctuation, which shares no block with CJK', () => { + document.documentElement.lang = 'en-US'; + noteText('!?()[]{}<>@#$%^&*-_=+/\\|~`"\'.,;: 「」'); + resetScriptFontLoaderForTests(); + noteText('!?()[]{}<>@#$%^&*-_=+/\\|~`"\'.,;: '); + expect(chunks()).toEqual([]); + }); + + it('resolves the Han tie-break the same way the base --font-sans chain orders the families', () => { + expect(hanChunkForLanguage('ja')).toBe('jp'); + expect(hanChunkForLanguage('ja-JP')).toBe('jp'); + expect(hanChunkForLanguage('zh-TW')).toBe('tc'); + expect(hanChunkForLanguage('zh-HK')).toBe('tc'); + expect(hanChunkForLanguage('zh-Hant')).toBe('tc'); + expect(hanChunkForLanguage('zh-CN')).toBe('sc'); + expect(hanChunkForLanguage('zh')).toBe('sc'); + expect(hanChunkForLanguage('en-US')).toBe('sc'); + expect(hanChunkForLanguage(null)).toBe('sc'); + }); +}); + +describe('the ingest points that feed the gate', () => { + const SRC = join(process.cwd(), 'src'); + const INGEST: Array<[string, string]> = [ + ['features/guild/models/Guild.ts', 'guild names'], + ['features/guild/models/GuildRole.ts', 'role names'], + ['features/channel/models/Channel.ts', 'channel names'], + ['features/channel/state/ChannelDisplayName.ts', 'computed channel display names'], + ['features/user/utils/NicknameUtils.ts', 'display names and nicknames'], + ['features/messaging/components/markdown/index.tsx', 'message content'], + ]; + + for (const [path, what] of INGEST) { + it(`observes ${what} at ingest (${path})`, () => { + const source = readFileSync(join(SRC, path), 'utf8'); + expect(source).toContain("from '@app/features/theme/fonts/ScriptFontLoader'"); + expect(source).toMatch(/\bnoteText\(/); + }); + } +}); + +describe('the cascade the gate is computed from', () => { + const variables = readFileSync(join(FONTS_CSS, 'variables.css'), 'utf8'); + const fallbacks = readFileSync(join(FONTS_CSS, 'locale-fallbacks.css'), 'utf8'); + + it('names every gated family in the base --font-sans, or the gate could never select them', () => { + const chain = /--font-sans:([^;]*);/.exec(variables)?.[1] ?? ''; + for (const family of ['Fluxer Sans SC', 'Fluxer Sans TC', 'Fluxer Sans JP', 'Fluxer Sans KR']) { + expect(chain).toContain(family); + } + }); + + it('orders the base chain SC before TC before JP, which is the no-signal Han tie-break', () => { + const chain = /--font-sans:([^;]*);/.exec(variables)?.[1] ?? ''; + expect(chain.indexOf('Fluxer Sans SC')).toBeLessThan(chain.indexOf('Fluxer Sans TC')); + expect(chain.indexOf('Fluxer Sans TC')).toBeLessThan(chain.indexOf('Fluxer Sans JP')); + }); + + it('hoists the family hanChunkForLanguage picks, for every locale rule that exists', () => { + const expected: Record = { + ja: 'Fluxer Sans JP', + ko: 'Fluxer Sans KR', + 'zh-CN': 'Fluxer Sans SC', + 'zh-TW': 'Fluxer Sans TC', + }; + for (const [tag, family] of Object.entries(expected)) { + const rule = new RegExp(`:root:lang\\(${tag}\\)[^{]*\\{([^}]*)\\}`).exec(fallbacks); + expect(rule, `no :root:lang(${tag}) rule in locale-fallbacks.css`).not.toBeNull(); + const chain = rule![1]; + const hoisted = /'(Fluxer Sans (?:SC|TC|JP|KR))'/.exec(chain)?.[1]; + expect(hoisted, `:root:lang(${tag}) hoists the wrong family`).toBe(family); + } + }); +}); diff --git a/fluxer_app/src/features/theme/fonts/ScriptFontLoader.ts b/fluxer_app/src/features/theme/fonts/ScriptFontLoader.ts new file mode 100644 index 000000000..337cc915b --- /dev/null +++ b/fluxer_app/src/features/theme/fonts/ScriptFontLoader.ts @@ -0,0 +1,100 @@ +// SPDX-License-Identifier: AGPL-3.0-or-later + +import {Logger} from '@app/features/platform/utils/AppLogger'; +import {loadLazyModule} from '@app/features/platform/utils/LazyModuleLoader'; + +const logger = new Logger('ScriptFontLoader'); + +export type ScriptChunk = 'non-latin' | 'sc' | 'tc' | 'jp' | 'kr'; + +const CHUNK_IMPORTS: Record Promise> = { + 'non-latin': () => import('@app/features/theme/fonts/ScriptFacesNonLatin'), + sc: () => import('@app/features/theme/fonts/ScriptFacesSC'), + tc: () => import('@app/features/theme/fonts/ScriptFacesTC'), + jp: () => import('@app/features/theme/fonts/ScriptFacesJP'), + kr: () => import('@app/features/theme/fonts/ScriptFacesKR'), +}; + +const KANA = /[\u3040-\u30FF\u31F0-\u31FF\uFF66-\uFF9D]/; + +const HANGUL = /[\u1100-\u11FF\u3130-\u318F\uA960-\uA97F\uAC00-\uD7FF]/; + +const HAN = /[\u3400-\u4DBF\u4E00-\u9FFF\uF900-\uFAFF]|[\uD840-\uD87F][\uDC00-\uDFFF]/; + +const CJK_ADJACENT = /[\u2E80-\u2EFF\u2F00-\u2FDF\u2FF0-\u303F\u3190-\u31EF\u3200-\u33FF\uFF00-\uFF65\uFF9E-\uFFEF]/; + +const requested = new Set(); +const inFlight = new Set>(); + +function request(chunk: ScriptChunk): void { + if (requested.has(chunk)) return; + requested.add(chunk); + const load = loadLazyModule(CHUNK_IMPORTS[chunk]) + .then(() => undefined) + .catch((error: unknown) => { + logger.warn(`Failed to load the ${chunk} font faces; falling back to OS script fonts:`, error); + }) + .finally(() => { + inFlight.delete(load); + }); + inFlight.add(load); +} + +export function hanChunkForLanguage(language: string | null | undefined): ScriptChunk { + const tag = (language ?? '').toLowerCase(); + if (tag === 'ja' || tag.startsWith('ja-')) return 'jp'; + if (tag.startsWith('zh')) { + if (/(^|-)(tw|hk|mo|hant)(-|$)/.test(tag)) return 'tc'; + return 'sc'; + } + return 'sc'; +} + +function bootChunkForLanguage(language: string | null | undefined): ScriptChunk | null { + const tag = (language ?? '').toLowerCase(); + if (tag === 'ja' || tag.startsWith('ja-')) return 'jp'; + if (tag === 'ko' || tag.startsWith('ko-')) return 'kr'; + if (tag.startsWith('zh')) return hanChunkForLanguage(tag); + return null; +} + +function documentLanguage(): string | null { + if (typeof document === 'undefined') return null; + return document.documentElement.lang || null; +} + +export function noteText(text: string | null | undefined): void { + if (!text) return; + if (requested.has('jp') && requested.has('kr') && requested.has('sc') && requested.has('tc')) return; + if (KANA.test(text)) request('jp'); + if (HANGUL.test(text)) request('kr'); + if (HAN.test(text) || CJK_ADJACENT.test(text)) request(hanChunkForLanguage(documentLanguage())); +} + +export function noteLocale(language: string | null | undefined = documentLanguage()): void { + const chunk = bootChunkForLanguage(language); + if (chunk) request(chunk); +} + +export function scheduleNonLatinScriptFaces(): void { + const run = () => request('non-latin'); + if (typeof requestIdleCallback === 'function') { + requestIdleCallback(run, {timeout: 3000}); + return; + } + setTimeout(run, 1000); +} + +export function requestedScriptChunks(): ReadonlySet { + return requested; +} + +export function resetScriptFontLoaderForTests(): void { + requested.clear(); +} + +export async function whenScriptChunksSettled(): Promise { + while (inFlight.size > 0) { + await Promise.all([...inFlight]); + } +} diff --git a/fluxer_app/src/features/theme/styles/Message.module.css b/fluxer_app/src/features/theme/styles/Message.module.css index d34ad5249..b41d07ee1 100644 --- a/fluxer_app/src/features/theme/styles/Message.module.css +++ b/fluxer_app/src/features/theme/styles/Message.module.css @@ -509,7 +509,7 @@ display: inline; font-size: var(--message-timestamp-font-size); line-height: var(--message-line-height); - opacity: 0.6; + color: color-mix(in srgb, var(--message-timestamp-color) 60%, transparent); margin-inline-start: 0.15rem; white-space: nowrap; } @@ -947,9 +947,13 @@ max-width: 30%; vertical-align: baseline; font-weight: 500; - color: var(--text-primary); + color: color-mix( + in srgb, + var(--replied-username-color, var(--text-primary)) + clamp(0%, calc(var(--message-replied-username-opacity) * 100%), 100%), + transparent + ); line-height: inherit; - opacity: var(--message-replied-username-opacity); } @media (hover: hover) { @@ -1116,7 +1120,7 @@ margin-inline-start: 0.25rem; position: relative; top: -0.125rem; - color: var(--message-timestamp-color); + color: color-mix(in srgb, var(--message-timestamp-color) 60%, transparent); } .systemMessageContentWrapper { diff --git a/fluxer_app/src/features/theme/styles/TextRendering.test.ts b/fluxer_app/src/features/theme/styles/TextRendering.test.ts new file mode 100644 index 000000000..aed93b586 --- /dev/null +++ b/fluxer_app/src/features/theme/styles/TextRendering.test.ts @@ -0,0 +1,163 @@ +// SPDX-License-Identifier: AGPL-3.0-or-later + +import {readdirSync, readFileSync} from 'node:fs'; +import {join} from 'node:path'; +import {fileURLToPath} from 'node:url'; +import {describe, expect, it} from 'vitest'; + +const APP_SRC = fileURLToPath(new URL('../../../', import.meta.url)); + +const FORBIDDEN_SMOOTHING_PROPERTIES = ['-webkit-font-smoothing', 'font-smooth', 'text-rendering']; +const LAYER_PROMOTING_WILL_CHANGE = /transform|opacity|filter/; +const WILL_CHANGE = /will-change\s*:\s*([^;]*)/; + +const ANIMATION_STATE_SELECTOR = /\[data-(dragging|state|animating)|:hover|:active|Animating|Animated|Dragging/; + +const NON_TEXT_WILL_CHANGE_ALLOWLIST = new Set([ + 'features/channel/components/GifPicker.module.css .loadingSkeletonBlob', + 'features/channel/components/GuildMembersPage.module.css .progressBar', + 'features/channel/components/direct_message/DMChannelView.module.css .callParticipantAvatar', + 'features/messaging/components/modals/MediaModal.module.css .desktopViewerContent', + 'features/ui/components/form/FormSwitch.module.css .switchThumb', + 'features/ui/scroller/ScrollerTrack.module.css .thumb', + 'features/user/components/profile/UserProfileLoadingSkeleton.module.css .pulse', + 'features/voice/components/LiveRecordingWaveform.module.css .track', + 'features/voice/components/PiPOverlay.module.css .container', +]); + +function collectFiles(directory: string, extension: string, out: Array = []): Array { + for (const entry of readdirSync(directory, {withFileTypes: true})) { + const full = join(directory, entry.name); + if (entry.isDirectory()) { + collectFiles(full, extension, out); + } else if (entry.name.endsWith(extension)) { + out.push(full); + } + } + return out; +} + +function rules(css: string): Array<{selector: string; declarations: string}> { + const source = css.replace(/\/\*[\s\S]*?\*\//g, ''); + const out: Array<{selector: string; declarations: string}> = []; + const chain: Array = []; + let buffer = ''; + for (const char of source) { + if (char === '{') { + chain.push(buffer.split(/[;}]/).pop()?.trim().replace(/\s+/g, ' ') ?? ''); + buffer = ''; + } else if (char === '}') { + if (chain.length > 0) { + out.push({selector: chain.join(' '), declarations: buffer}); + chain.pop(); + } + buffer = ''; + } else { + buffer += char; + } + } + return out; +} + +function relative(file: string): string { + return file.slice(APP_SRC.length); +} + +describe('text rendering', () => { + const stylesheets = collectFiles(APP_SRC, '.css'); + + it('finds the authored stylesheets it is meant to guard', () => { + expect(stylesheets.length).toBeGreaterThan(100); + }); + + it('never overrides font smoothing, which would disable ClearType on Windows', () => { + const offenders: Array = []; + for (const file of stylesheets) { + const css = readFileSync(file, 'utf8'); + for (const property of FORBIDDEN_SMOOTHING_PROPERTIES) { + if (css.includes(property)) { + offenders.push(`${relative(file)}: ${property}`); + } + } + } + expect(offenders).toEqual([]); + }); + + it('only allows a layer-promoting will-change when it is animation-scoped or a reviewed non-text rule', () => { + const offenders: Array = []; + for (const file of stylesheets) { + for (const {selector, declarations} of rules(readFileSync(file, 'utf8'))) { + const willChange = WILL_CHANGE.exec(declarations); + if (willChange == null) continue; + if (!LAYER_PROMOTING_WILL_CHANGE.test(willChange[1]!)) continue; + if (ANIMATION_STATE_SELECTOR.test(selector)) continue; + if (NON_TEXT_WILL_CHANGE_ALLOWLIST.has(`${relative(file)} ${selector}`)) continue; + offenders.push(`${relative(file)} ${selector}: will-change:${willChange[1]!.trim()}`); + } + } + expect(offenders).toEqual([]); + }); + + it('never promotes a layer with an inline willChange style, which the stylesheet guard cannot see', () => { + const offenders: Array = []; + for (const file of collectFiles(APP_SRC, '.tsx')) { + if (readFileSync(file, 'utf8').includes('willChange')) { + offenders.push(relative(file)); + } + } + expect(offenders).toEqual([]); + }); +}); + +describe('popout text rendering', () => { + it('shadows popouts with box-shadow, since any filter disables subpixel antialiasing', () => { + const css = readFileSync(join(APP_SRC, 'features/ui/popover/PopoverPopout.module.css'), 'utf8'); + expect(css).toContain('box-shadow: 0 0.5rem 1rem var(--popout-shadow);'); + expect(css).not.toMatch(/(^|[\s;])filter\s*:/m); + expect(css).not.toContain('popoutStableText'); + }); +}); + +const FRACTIONAL_OPACITY = /(^|[;\s])opacity\s*:\s*(0?\.\d+)\s*(;|$)/; +const TEXT_DECLARATION = + /(^|[;\s])(color|font-size|font-weight|font-family|font-style|line-height|letter-spacing|text-transform|text-overflow|white-space)\s*:/; +const TRANSIENT_STATE_SELECTOR = + /:hover|:focus|:active|:disabled|::before|::after|\[data-|%|\bfrom\b|\bto\b|Animating|Animated|Dragging|Hover|Pressed|Selected/; + +const PERSISTENT_TEXT_OPACITY_ALLOWLIST = new Set([ + 'features/channel/components/ChannelDivider.module.css .unreadBadge', + 'features/theme/styles/AttachmentFile.module.css .statusBadge', + 'features/app/components/layout/sidebar_nav/GuildListDMItem.module.css .muted', + 'features/app/components/layout/NativeTitlebar.module.css .left', + 'features/app/components/layout/ChannelItem.module.css .channelItemMutedState', + 'features/app/components/layout/FavoritesChannelListContent.module.css .favoriteItemMuted', + 'features/channel/components/direct_message/DirectMessageList.module.css .dmItemMuted', + 'features/channel/components/direct_message/DirectMessageList.module.css .dmItemMobileMuted', + 'features/ui/action_menu/ContextMenu.module.css .item.disabled', + 'features/ui/action_menu/MenuItem.module.css .sliderItem.disabled', + 'features/app/components/dialogs/Modal.module.css .headerInner button', + 'features/channel/components/active_now/ActiveNowSidebar.module.css .emptyIcon', + 'features/channel/components/shared/MemberListUnavailableFallback.module.css .icon', + 'features/messaging/components/markdown/renderers/MessageJumpLink.module.css .divider', + 'features/search/components/search/SearchFilterChip.module.css .removeButton', + 'features/theme/styles/AttachmentGridItem.module.css .audioPlaceholder svg', + 'features/theme/styles/AttachmentMosaic.module.css .audioPlaceholder svg', + 'features/user/components/modals/UserProfileModal.module.css .emptyStateIcon', +]); + +describe('persistent text opacity', () => { + it('dims text through colour, not through a layer opacity that would kill subpixel antialiasing', () => { + const offenders: Array = []; + for (const file of collectFiles(APP_SRC, '.module.css')) { + for (const {selector, declarations} of rules(readFileSync(file, 'utf8'))) { + if (!FRACTIONAL_OPACITY.test(declarations)) continue; + if (!TEXT_DECLARATION.test(declarations)) continue; + if (TRANSIENT_STATE_SELECTOR.test(selector)) continue; + const key = `${relative(file)} ${selector}`; + if (PERSISTENT_TEXT_OPACITY_ALLOWLIST.has(key)) continue; + offenders.push(key); + } + } + expect(offenders).toEqual([]); + }); +}); diff --git a/fluxer_app/src/features/theme/variables/ThemeVariableManifest.ts b/fluxer_app/src/features/theme/variables/ThemeVariableManifest.ts index 456e463d2..0696b26c3 100644 --- a/fluxer_app/src/features/theme/variables/ThemeVariableManifest.ts +++ b/fluxer_app/src/features/theme/variables/ThemeVariableManifest.ts @@ -985,9 +985,9 @@ export const THEME_STUDIO_DARK_DEFAULT_VARIABLE_VALUES: Readonly { background instead of staying transparent. +
  • + + Text is rendered with grayscale antialiasing instead of ClearType while transparency is enabled, + so it will look softer. + +
  • ) : null} diff --git a/fluxer_app/src/features/ui/components/BaseAvatar.tsx b/fluxer_app/src/features/ui/components/BaseAvatar.tsx index 2e60cd351..64fe60609 100644 --- a/fluxer_app/src/features/ui/components/BaseAvatar.tsx +++ b/fluxer_app/src/features/ui/components/BaseAvatar.tsx @@ -191,7 +191,9 @@ export const BaseAvatar = React.forwardRef( const statusMaskId = shouldShowCustomStatusBadge ? (customStatusBadgeMaskId ?? 'svg-mask-status-online') : isMobileOnline - ? `svg-mask-status-online-mobile-${size}` + ? STATIC_AVATAR_MASK_SIZES.has(size) + ? `svg-mask-status-online-mobile-${size}` + : 'svg-mask-status-online-mobile' : `svg-mask-status-${renderableStatus}`; const avatarViewBox = getAvatarViewBox(size); const statusColor = shouldShowCustomStatusBadge diff --git a/fluxer_app/src/features/ui/components/SliderTooltip.module.css b/fluxer_app/src/features/ui/components/SliderTooltip.module.css index d465d08dd..f5643b2b6 100644 --- a/fluxer_app/src/features/ui/components/SliderTooltip.module.css +++ b/fluxer_app/src/features/ui/components/SliderTooltip.module.css @@ -10,7 +10,6 @@ position: relative; z-index: var(--z-index-tooltip); pointer-events: none; - will-change: opacity, transform; box-sizing: border-box; max-width: 11.875rem; border: var(--slider-tooltip-border-width) solid var(--slider-tooltip-border); diff --git a/fluxer_app/src/features/ui/components/form/DateTimePickerField.module.css b/fluxer_app/src/features/ui/components/form/DateTimePickerField.module.css index cc9ed60f7..22d52551b 100644 --- a/fluxer_app/src/features/ui/components/form/DateTimePickerField.module.css +++ b/fluxer_app/src/features/ui/components/form/DateTimePickerField.module.css @@ -289,8 +289,7 @@ } .rdpOutside .rdpDayButton { - color: var(--text-primary-muted); - opacity: 0.4; + color: color-mix(in srgb, var(--text-primary-muted) 40%, transparent); } .rdpDisabled .rdpDayButton { diff --git a/fluxer_app/src/features/ui/popover/PopoverPopout.module.css b/fluxer_app/src/features/ui/popover/PopoverPopout.module.css index 716aee76d..7bd66ee2e 100644 --- a/fluxer_app/src/features/ui/popover/PopoverPopout.module.css +++ b/fluxer_app/src/features/ui/popover/PopoverPopout.module.css @@ -6,11 +6,7 @@ pointer-events: auto; transition: none; -webkit-app-region: no-drag; - filter: drop-shadow(0 0.5rem 1rem var(--popout-shadow)); -} - -.popoutStableText { - filter: none; + border-radius: var(--popout-radius, 0.5rem); box-shadow: 0 0.5rem 1rem var(--popout-shadow); } diff --git a/fluxer_app/src/features/ui/popover/PopoverPopout.tsx b/fluxer_app/src/features/ui/popover/PopoverPopout.tsx index 1bdb7ae04..2448c8c8a 100644 --- a/fluxer_app/src/features/ui/popover/PopoverPopout.tsx +++ b/fluxer_app/src/features/ui/popover/PopoverPopout.tsx @@ -48,7 +48,6 @@ interface PopoutProps { animationType?: PopoutAnimationType; constrainHeight?: boolean; containerClass?: string; - stableTextRendering?: boolean; preventInvert?: boolean; hoverDelay?: number; hoverCloseDelay?: number; @@ -93,7 +92,6 @@ export const openPopout = (target: HTMLElement, props: OpenPopoutOptions, key: s constrainHeight: props.constrainHeight, clickPos, containerClass: props.containerClass, - stableTextRendering: props.stableTextRendering, preventInvert: props.preventInvert, onOpen: props.onOpen, onClose: props.onClose, diff --git a/fluxer_app/src/features/ui/popover/PopoverPopouts.tsx b/fluxer_app/src/features/ui/popover/PopoverPopouts.tsx index 0a57bc1d7..9d45fb1fb 100644 --- a/fluxer_app/src/features/ui/popover/PopoverPopouts.tsx +++ b/fluxer_app/src/features/ui/popover/PopoverPopouts.tsx @@ -166,7 +166,6 @@ const PopoutItem: React.FC = observer( animationType = 'smooth', constrainHeight = true, containerClass, - stableTextRendering, onCloseRequest, returnFocusRef, returnFocusOnClose = true, @@ -372,7 +371,7 @@ const PopoutItem: React.FC = observer( id={popoutKey} ref={mergedPopoutRef} role="group" - className={clsx(styles.popout, stableTextRendering && styles.popoutStableText, containerClass)} + className={clsx(styles.popout, containerClass)} tabIndex={-1} data-popout-key={popoutKey} onMouseEnter={handleMouseEnter} diff --git a/fluxer_app/src/features/ui/popover/index.ts b/fluxer_app/src/features/ui/popover/index.ts index a06505b18..4c10f3e1c 100644 --- a/fluxer_app/src/features/ui/popover/index.ts +++ b/fluxer_app/src/features/ui/popover/index.ts @@ -54,7 +54,6 @@ export interface Popout { animationType?: PopoutAnimationType; constrainHeight?: boolean; containerClass?: string; - stableTextRendering?: boolean; onOpen?: () => void; onClose?: () => void; onCloseRequest?: (event?: Event) => boolean; diff --git a/fluxer_app/src/features/ui/sheet/Sheet.module.css b/fluxer_app/src/features/ui/sheet/Sheet.module.css index b70f89a74..0e48ba389 100644 --- a/fluxer_app/src/features/ui/sheet/Sheet.module.css +++ b/fluxer_app/src/features/ui/sheet/Sheet.module.css @@ -52,12 +52,16 @@ pointer-events: auto; transform: translate3d(0, var(--sheet-y), 0); transition: transform var(--sheet-transition-duration) var(--sheet-transition-easing); - will-change: transform; touch-action: manipulation; outline: none; box-shadow: 0 -1rem 2.5rem rgb(0 0 0 / 0.24); } +.overlayRoot[data-dragging='true'] .container, +.overlayRoot[data-state='closing'] .container { + will-change: transform; +} + .overlayRoot[data-dragging='true'] .container { cursor: grabbing; transition-duration: 0ms; diff --git a/fluxer_app/src/features/ui/tooltip/Tooltip.module.css b/fluxer_app/src/features/ui/tooltip/Tooltip.module.css index cdc919af1..b3ca8acf9 100644 --- a/fluxer_app/src/features/ui/tooltip/Tooltip.module.css +++ b/fluxer_app/src/features/ui/tooltip/Tooltip.module.css @@ -26,7 +26,6 @@ position: relative; z-index: var(--z-index-tooltip); pointer-events: none; - will-change: opacity, transform; box-sizing: border-box; max-width: 11.875rem; border: var(--tooltip-border-width) solid var(--tooltip-active-border-color); diff --git a/fluxer_app/src/features/user/components/modals/NoteEditSheet.module.css b/fluxer_app/src/features/user/components/modals/NoteEditSheet.module.css index 9a3a1edc1..5f0068a0e 100644 --- a/fluxer_app/src/features/user/components/modals/NoteEditSheet.module.css +++ b/fluxer_app/src/features/user/components/modals/NoteEditSheet.module.css @@ -27,11 +27,6 @@ color: var(--brand-primary-light); } -.saveButtonDisabled { - color: var(--text-tertiary); - opacity: 0.5; -} - .content { flex: 1; padding: 1rem; diff --git a/fluxer_app/src/features/user/components/modals/tabs/BlockedUsersTab.module.css b/fluxer_app/src/features/user/components/modals/tabs/BlockedUsersTab.module.css index cb79ca401..a9a7bc223 100644 --- a/fluxer_app/src/features/user/components/modals/tabs/BlockedUsersTab.module.css +++ b/fluxer_app/src/features/user/components/modals/tabs/BlockedUsersTab.module.css @@ -94,10 +94,9 @@ .discriminator { font-weight: 600; - color: var(--text-primary); + color: color-mix(in srgb, var(--text-primary) 50%, transparent); font-size: 0.875rem; line-height: 1.25rem; - opacity: 0.5; } .actions { diff --git a/fluxer_app/src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx b/fluxer_app/src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx deleted file mode 100644 index acaecd9f9..000000000 --- a/fluxer_app/src/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.tsx +++ /dev/null @@ -1,603 +0,0 @@ -// SPDX-License-Identifier: AGPL-3.0-or-later - -import styles from '@app/features/user/components/modals/tabs/component_gallery_tab/TypographyTab.module.css'; -import type {MessageDescriptor} from '@lingui/core'; -import {msg} from '@lingui/core/macro'; -import {Trans, useLingui} from '@lingui/react/macro'; -import {observer} from 'mobx-react-lite'; -import type React from 'react'; - -const THIN_DESCRIPTOR = msg({ - message: 'Thin', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const DELICATE_AND_LIGHT_TYPOGRAPHY_DESCRIPTOR = msg({ - message: 'Delicate and light typography', - comment: 'Label in the typography tab.', -}); -const EXTRA_LIGHT_DESCRIPTOR = msg({ - message: 'Extra light', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const GENTLE_AND_AIRY_TEXT_DISPLAY_DESCRIPTOR = msg({ - message: 'Gentle and airy text display', - comment: 'Label in the typography tab.', -}); -const LIGHT_DESCRIPTOR = msg({ - message: 'Light', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const SOFT_AND_EASY_READING_EXPERIENCE_DESCRIPTOR = msg({ - message: 'Soft and easy reading experience', - comment: 'Label in the typography tab.', -}); -const REGULAR_DESCRIPTOR = msg({ - message: 'Regular', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const PERFECT_FOR_EVERYDAY_CONTENT_DESCRIPTOR = msg({ - message: 'Perfect for everyday content', - comment: 'Label in the typography tab.', -}); -const TEXT_DESCRIPTOR = msg({ - message: 'Text', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const OPTIMIZED_FOR_LONGER_READING_PASSAGES_DESCRIPTOR = msg({ - message: 'Optimized for longer reading passages', - comment: 'Label in the typography tab.', -}); -const MEDIUM_DESCRIPTOR = msg({ - message: 'Medium', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const SLIGHTLY_BOLDER_EMPHASIS_DESCRIPTOR = msg({ - message: 'Slightly bolder emphasis', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const SEMI_BOLD_DESCRIPTOR = msg({ - message: 'Semi bold', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const STRONG_VISUAL_HIERARCHY_DESCRIPTOR = msg({ - message: 'Strong visual hierarchy', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const BOLD_DESCRIPTOR = msg({ - message: 'Bold', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const POWERFUL_AND_ATTENTION_GRABBING_DESCRIPTOR = msg({ - message: 'Powerful and attention-grabbing', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const CAPTION_DESCRIPTOR = msg({ - message: 'Caption', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const SMALL_DESCRIPTOR = msg({ - message: 'Small', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const BODY_DESCRIPTOR = msg({ - message: 'Body', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const LARGE_DESCRIPTOR = msg({ - message: 'Large', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const SUBTITLE_DESCRIPTOR = msg({ - message: 'Subtitle', - comment: 'Title in the typography tab. Keep it concise.', -}); -const HEADING_DESCRIPTOR = msg({ - message: 'Heading', - comment: 'Title in the typography tab. Keep it concise.', -}); -const TITLE_DESCRIPTOR = msg({ - message: 'Title', - comment: 'Title in the typography tab. Keep it concise.', -}); -const DISPLAY_DESCRIPTOR = msg({ - message: 'Display', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const NORMAL_DESCRIPTOR = msg({ - message: 'Normal', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const THIS_TEXT_DEMONSTRATES_NORMAL_STYLING_DESCRIPTOR = msg({ - message: 'This text demonstrates normal styling', - comment: 'Label in the typography tab.', -}); -const ITALIC_DESCRIPTOR = msg({ - message: 'Italic', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const THIS_TEXT_DEMONSTRATES_ITALIC_STYLING_DESCRIPTOR = msg({ - message: 'This text demonstrates italic styling', - comment: 'Label in the typography tab.', -}); -const THIS_TEXT_DEMONSTRATES_SEMI_BOLD_STYLING_DESCRIPTOR = msg({ - message: 'This text demonstrates semi-bold styling', - comment: 'Label in the typography tab.', -}); -const SEMI_BOLD_LARGE_DESCRIPTOR = msg({ - message: 'Semi-bold large', - comment: 'Short label in the typography tab. Keep it concise.', -}); -const THIS_TEXT_DEMONSTRATES_LARGE_SEMI_BOLD_STYLING_DESCRIPTOR = msg({ - message: 'This text demonstrates large semi-bold styling', - comment: 'Label in the typography tab.', -}); -const BOLD_HEADING_DESCRIPTOR = msg({ - message: 'Bold heading', - comment: 'Title in the typography tab. Keep it concise.', -}); -const THIS_TEXT_DEMONSTRATES_BOLD_HEADING_STYLING_DESCRIPTOR = msg({ - message: 'This text demonstrates bold heading styling', - comment: 'Title in the typography tab. Keep it concise.', -}); -const BOLD_TITLE_DESCRIPTOR = msg({ - message: 'Bold title', - comment: 'Title in the typography tab. Keep it concise.', -}); -const THIS_TEXT_DEMONSTRATES_BOLD_TITLE_STYLING_DESCRIPTOR = msg({ - message: 'This text demonstrates bold title styling', - comment: 'Title in the typography tab. Keep it concise.', -}); -const fontSamples = [ - { - fontFamily: 'Fluxer Sans', - name: 'Fluxer Sans', - sample: 'The quick brown fox jumps over the lazy dog', - lang: 'en', - }, - { - fontFamily: 'IBM Plex Sans JP', - name: 'IBM Plex Sans Japanese', - sample: 'これは日本語のサンプルテキストです', - lang: 'ja', - }, - { - fontFamily: 'IBM Plex Sans KR', - name: 'IBM Plex Sans Korean', - sample: '이것은 한국어 샘플 텍스트입니다', - lang: 'ko', - }, - { - fontFamily: 'IBM Plex Sans SC', - name: 'IBM Plex Sans Simplified Chinese', - sample: '这是简体中文的示例文本', - lang: 'zh-CN', - }, - { - fontFamily: 'IBM Plex Sans TC', - name: 'IBM Plex Sans Traditional Chinese', - sample: '這是繁體中文的示例文本', - lang: 'zh-TW', - }, - { - fontFamily: 'Fluxer Sans Arabic', - name: 'Fluxer Sans Arabic', - sample: 'هذه عينة نصية باللغة العربية', - lang: 'ar', - rtl: true, - }, - { - fontFamily: 'Fluxer Sans Hebrew', - name: 'Fluxer Sans Hebrew', - sample: 'זוהי דוגמה לטקסט בעברית', - lang: 'he', - }, - { - fontFamily: 'Fluxer Sans Devanagari', - name: 'Fluxer Sans Devanagari', - sample: 'यह हिंदी का नमूना पाठ है', - lang: 'hi', - }, - { - fontFamily: 'Fluxer Sans Thai', - name: 'Fluxer Sans Thai', - sample: 'นี่คือข้อความตัวอย่างภาษาไทย', - lang: 'th', - }, - { - fontFamily: 'Fluxer Sans Thai Looped', - name: 'Fluxer Sans Thai Looped', - sample: 'นี่คือข้อความตัวอย่างภาษาไทยแบบ Loop', - lang: 'th', - }, -]; -const weightExamples: Array<{weight: number; label: MessageDescriptor; text: MessageDescriptor}> = [ - {weight: 100, label: THIN_DESCRIPTOR, text: DELICATE_AND_LIGHT_TYPOGRAPHY_DESCRIPTOR}, - {weight: 200, label: EXTRA_LIGHT_DESCRIPTOR, text: GENTLE_AND_AIRY_TEXT_DISPLAY_DESCRIPTOR}, - {weight: 300, label: LIGHT_DESCRIPTOR, text: SOFT_AND_EASY_READING_EXPERIENCE_DESCRIPTOR}, - {weight: 400, label: REGULAR_DESCRIPTOR, text: PERFECT_FOR_EVERYDAY_CONTENT_DESCRIPTOR}, - {weight: 450, label: TEXT_DESCRIPTOR, text: OPTIMIZED_FOR_LONGER_READING_PASSAGES_DESCRIPTOR}, - {weight: 500, label: MEDIUM_DESCRIPTOR, text: SLIGHTLY_BOLDER_EMPHASIS_DESCRIPTOR}, - {weight: 600, label: SEMI_BOLD_DESCRIPTOR, text: STRONG_VISUAL_HIERARCHY_DESCRIPTOR}, - {weight: 700, label: BOLD_DESCRIPTOR, text: POWERFUL_AND_ATTENTION_GRABBING_DESCRIPTOR}, -]; -const scaleExamples: Array<{size: string; label: MessageDescriptor; weight: number}> = [ - {size: '12px', label: CAPTION_DESCRIPTOR, weight: 400}, - {size: '14px', label: SMALL_DESCRIPTOR, weight: 400}, - {size: '16px', label: BODY_DESCRIPTOR, weight: 400}, - {size: '18px', label: LARGE_DESCRIPTOR, weight: 500}, - {size: '20px', label: SUBTITLE_DESCRIPTOR, weight: 500}, - {size: '24px', label: HEADING_DESCRIPTOR, weight: 600}, - {size: '30px', label: TITLE_DESCRIPTOR, weight: 700}, - {size: '36px', label: DISPLAY_DESCRIPTOR, weight: 700}, -]; -const contrastExamples: Array<{ - weight: number; - size: string; - style: MessageDescriptor; - description: MessageDescriptor; - italic?: boolean; -}> = [ - {weight: 400, size: '16px', style: NORMAL_DESCRIPTOR, description: THIS_TEXT_DEMONSTRATES_NORMAL_STYLING_DESCRIPTOR}, - { - weight: 400, - size: '16px', - style: ITALIC_DESCRIPTOR, - description: THIS_TEXT_DEMONSTRATES_ITALIC_STYLING_DESCRIPTOR, - italic: true, - }, - { - weight: 600, - size: '16px', - style: SEMI_BOLD_DESCRIPTOR, - description: THIS_TEXT_DEMONSTRATES_SEMI_BOLD_STYLING_DESCRIPTOR, - }, - { - weight: 600, - size: '18px', - style: SEMI_BOLD_LARGE_DESCRIPTOR, - description: THIS_TEXT_DEMONSTRATES_LARGE_SEMI_BOLD_STYLING_DESCRIPTOR, - }, - { - weight: 700, - size: '20px', - style: BOLD_HEADING_DESCRIPTOR, - description: THIS_TEXT_DEMONSTRATES_BOLD_HEADING_STYLING_DESCRIPTOR, - }, - { - weight: 700, - size: '24px', - style: BOLD_TITLE_DESCRIPTOR, - description: THIS_TEXT_DEMONSTRATES_BOLD_TITLE_STYLING_DESCRIPTOR, - }, -]; -export const TypographyTabContent: React.FC = observer(() => { - const {i18n} = useLingui(); - return ( -
    -
    -

    - Language support -

    -
    - {fontSamples.map((font) => ( -
    -
    -
    - - {font.name} - - - {font.lang.toUpperCase()} - -
    - - {font.fontFamily} - -
    -
    - {font.sample} -
    -
    - ))} -
    -
    -
    -

    - Font weights -

    -
    - {weightExamples.map((example) => ( -
    -
    - - {i18n._(example.label)} - - - {example.weight} - -
    -
    - {i18n._(example.text)} -
    -
    - Italic style demonstration -
    -
    - ))} -
    -
    -
    -

    - Type scale -

    -
    - {scaleExamples.map((example) => ( -
    -
    - - {example.size} - -
    -
    - - {i18n._(example.label)} - -
    -
    - Typography scale demonstration -
    -
    - ))} -
    -
    -
    -

    - Style variations -

    -
    - {contrastExamples.map((example, index) => ( -
    -
    - {i18n._(example.style)} -
    -
    - {i18n._(example.description)} -
    -
    - ))} -
    -
    -
    -

    - Multilingual content -

    -
    -
    -
    - - English: - {' '} - Welcome to Fluxer's typography showcase -
    -
    - - 日本語: - {' '} - フラクサーのタイポグラフィショーケースへようこそ -
    -
    - - 한국어: - {' '} - Fluxer의 타이포그래피 쇼케이스에 오신 것을 환영합니다 -
    -
    - - 简体中文: - {' '} - 欢迎来到 Fluxer 的字体展示 -
    -
    - - 繁體中文: - {' '} - 歡迎來到 Fluxer 的字體展示 -
    -
    - - العربية: - {' '} - مرحباً بك في عرض طباعة Fluxer -
    -
    - - עברית: - {' '} - ברוכים הבאים לתצוגת הטיפוגרפיה של Fluxer -
    -
    - - हिंदी: - {' '} - Fluxer के टाइपोग्राफी शोकेस में आपका स्वागत है -
    -
    - - ไทย: - {' '} - ยินดีต้อนรับสู่การจัดแสดงพิมพ์ของ Fluxer -
    -
    -
    -
    -
    - ); -}); diff --git a/fluxer_app/src/features/user/components/modals/tabs/component_gallery_tab/index.tsx b/fluxer_app/src/features/user/components/modals/tabs/component_gallery_tab/index.tsx index 4c0d7c634..fd374779e 100644 --- a/fluxer_app/src/features/user/components/modals/tabs/component_gallery_tab/index.tsx +++ b/fluxer_app/src/features/user/components/modals/tabs/component_gallery_tab/index.tsx @@ -18,7 +18,6 @@ import {IndicatorsTab} from '@app/features/user/components/modals/tabs/component import {MarkdownTab} from '@app/features/user/components/modals/tabs/component_gallery_tab/MarkdownTab'; import {OverlaysTab} from '@app/features/user/components/modals/tabs/component_gallery_tab/OverlaysTab'; import {SelectionsTab} from '@app/features/user/components/modals/tabs/component_gallery_tab/SelectionsTab'; -import {TypographyTabContent} from '@app/features/user/components/modals/tabs/component_gallery_tab/TypographyTab'; import {msg} from '@lingui/core/macro'; import {Trans, useLingui} from '@lingui/react/macro'; import { @@ -360,13 +359,6 @@ const ComponentGalleryTab: React.FC = () => { data-flx="user.component-gallery-tab.status-slate" /> - Typography} - data-flx="user.component-gallery-tab.typography" - > - - Markdown} diff --git a/fluxer_app/src/features/user/utils/NicknameUtils.ts b/fluxer_app/src/features/user/utils/NicknameUtils.ts index fabdeaa82..beb7509fa 100644 --- a/fluxer_app/src/features/user/utils/NicknameUtils.ts +++ b/fluxer_app/src/features/user/utils/NicknameUtils.ts @@ -5,6 +5,7 @@ import GuildMembers from '@app/features/member/state/GuildMembers'; import SelectedGuild from '@app/features/navigation/state/SelectedGuild'; import Relationships from '@app/features/relationship/state/Relationships'; import StreamerMode from '@app/features/streamer_mode/state/StreamerMode'; +import {noteText} from '@app/features/theme/fonts/ScriptFontLoader'; import type {User} from '@app/features/user/models/User'; export interface UserDisplayNameLike { @@ -33,7 +34,11 @@ export function formatUserTagForStreamerMode(user: Pick )} position="left-start" - stableTextRendering animationType="profile-slide" constrainHeight={false} freezePosition diff --git a/fluxer_app/src/features/voice/components/VoiceParticipantAvatarList.tsx b/fluxer_app/src/features/voice/components/VoiceParticipantAvatarList.tsx index 808eb5ab5..60a2e32d7 100644 --- a/fluxer_app/src/features/voice/components/VoiceParticipantAvatarList.tsx +++ b/fluxer_app/src/features/voice/components/VoiceParticipantAvatarList.tsx @@ -299,7 +299,6 @@ function VoiceParticipantPopoutRow({entry, guildId, channelId}: VoiceParticipant /> )} position="left-start" - stableTextRendering animationType="profile-slide" constrainHeight={false} freezePosition diff --git a/fluxer_app/src/features/voice/components/VoiceParticipantTile.module.css b/fluxer_app/src/features/voice/components/VoiceParticipantTile.module.css index 370926b07..6ceb7aaa4 100644 --- a/fluxer_app/src/features/voice/components/VoiceParticipantTile.module.css +++ b/fluxer_app/src/features/voice/components/VoiceParticipantTile.module.css @@ -656,7 +656,7 @@ display: inline; font-size: inherit; line-height: 1; - opacity: 0.76; + color: color-mix(in srgb, currentcolor 76%, transparent); } @container (max-width: 200px) { diff --git a/fluxer_app/src/features/voice/components/modals/CameraPreviewModal.module.css b/fluxer_app/src/features/voice/components/modals/CameraPreviewModal.module.css index a5d8631d2..2c2b23800 100644 --- a/fluxer_app/src/features/voice/components/modals/CameraPreviewModal.module.css +++ b/fluxer_app/src/features/voice/components/modals/CameraPreviewModal.module.css @@ -122,7 +122,7 @@ .errorDetail { font-size: 0.75rem; - opacity: 0.75; + color: color-mix(in srgb, currentcolor 75%, transparent); } .liveLabel { diff --git a/fluxer_app/src/features/voice/components/modals/MobileVideoViewer.module.css b/fluxer_app/src/features/voice/components/modals/MobileVideoViewer.module.css index 503882cce..8c8721e6f 100644 --- a/fluxer_app/src/features/voice/components/modals/MobileVideoViewer.module.css +++ b/fluxer_app/src/features/voice/components/modals/MobileVideoViewer.module.css @@ -54,8 +54,8 @@ background-color: rgb(0 0 0 / 0.56); border: 0.0625rem solid rgb(255 255 255 / 0.12); box-shadow: var(--mobile-video-hud-shadow); - backdrop-filter: blur(1.75rem) saturate(150%); - -webkit-backdrop-filter: blur(1.75rem) saturate(150%); + backdrop-filter: blur(1.75rem); + -webkit-backdrop-filter: blur(1.75rem); color: #fff; font-size: 1.125rem; font-weight: 700; @@ -101,8 +101,8 @@ background-color: var(--mobile-video-hud-bg); border: 0.0625rem solid var(--mobile-video-hud-border); box-shadow: var(--mobile-video-hud-shadow); - backdrop-filter: blur(2.25rem) saturate(160%); - -webkit-backdrop-filter: blur(2.25rem) saturate(160%); + backdrop-filter: blur(2.25rem); + -webkit-backdrop-filter: blur(2.25rem); color: #fff; cursor: pointer; transition: background-color 150ms ease; @@ -132,8 +132,8 @@ background-color: var(--mobile-video-hud-bg); border: 0.0625rem solid var(--mobile-video-hud-border); box-shadow: var(--mobile-video-hud-shadow); - backdrop-filter: blur(2.25rem) saturate(160%); - -webkit-backdrop-filter: blur(2.25rem) saturate(160%); + backdrop-filter: blur(2.25rem); + -webkit-backdrop-filter: blur(2.25rem); color: #fff; cursor: pointer; transition: background-color 150ms ease; @@ -151,8 +151,8 @@ border: 0.0625rem solid var(--mobile-video-hud-border); border-radius: 1.125rem; box-shadow: var(--mobile-video-hud-shadow); - backdrop-filter: blur(2.25rem) saturate(160%); - -webkit-backdrop-filter: blur(2.25rem) saturate(160%); + backdrop-filter: blur(2.25rem); + -webkit-backdrop-filter: blur(2.25rem); padding: 0.5rem 0.75rem; } diff --git a/fluxer_app/src/index.tsx b/fluxer_app/src/index.tsx index 1d1f0a8aa..168bde8a5 100644 --- a/fluxer_app/src/index.tsx +++ b/fluxer_app/src/index.tsx @@ -2,6 +2,10 @@ import {installBrowserStorageAccessProtection} from '@app/features/platform/state/ProtectedWebStorage'; import 'urlpattern-polyfill'; +import '@fluxer/fonts/css/fluxer-sans.css'; +import '@fluxer/fonts/css/fluxer-mono.css'; +import '@fluxer/fonts/css/variables.css'; +import '@fluxer/fonts/css/locale-fallbacks.css'; import '@app/app/globals.css'; import '@app/features/theme/styles/generated/color-system.css'; import '@app/features/theme/styles/generated/message-layout.css'; @@ -23,6 +27,7 @@ import { preloadClientInfo, } from '@app/features/platform/utils/ClientInfo'; import {loadLazyModule} from '@app/features/platform/utils/LazyModuleLoader'; +import {scheduleNonLatinScriptFaces} from '@app/features/theme/fonts/ScriptFontLoader'; import {initializeNativeVoiceEngineSelectionForStartup} from '@app/features/voice/engine/native_voice_engine/NativeVoiceEngineSelection'; import {i18n} from '@lingui/core'; import {I18nProvider} from '@lingui/react'; @@ -182,6 +187,7 @@ async function bootstrapApp(): Promise { } async function bootstrap(): Promise { + scheduleNonLatinScriptFaces(); await initI18n(); installLocaleSwitchWatchdog(); installSelfXssNotice(); diff --git a/fluxer_app_proxy/Dockerfile b/fluxer_app_proxy/Dockerfile index 63a32f658..3da09828d 100644 --- a/fluxer_app_proxy/Dockerfile +++ b/fluxer_app_proxy/Dockerfile @@ -3,6 +3,7 @@ ARG BUILD_VERSION="" ARG PUBLIC_ASSET_BASE_URL="" ARG FLUXER_APP_PROXY_TIME_FREEZE_ENABLED="true" +ARG BUNDLE_LOCAL_ASSETS="true" # ---------- Stage 1: Build the SPA (fluxer_app) ---------- FROM node:24-bookworm-slim AS app-build @@ -55,6 +56,9 @@ COPY packages/limits/ ./packages/limits/ COPY packages/schema/ ./packages/schema/ COPY packages/snowflake/ ./packages/snowflake/ COPY packages/voice_engine_v2/ ./packages/voice_engine_v2/ +COPY packages/fonts/css/ ./packages/fonts/css/ +COPY packages/fonts/files/ ./packages/fonts/files/ +COPY packages/fonts/NOTICE.md packages/fonts/LICENSE-IBM-PLEX.txt ./packages/fonts/ COPY packages/markdown_parser/rust/Cargo.toml ./packages/markdown_parser/rust/ COPY packages/markdown_parser/rust/.cargo/ ./packages/markdown_parser/rust/.cargo/ COPY packages/markdown_parser/rust/benches/parser.rs ./packages/markdown_parser/rust/benches/ @@ -77,7 +81,20 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \ # Extract the full SPA asset tree for local serving by the app proxy. FROM alpine:3.21 AS app-assets +ARG BUNDLE_LOCAL_ASSETS=true +ARG PUBLIC_ASSET_BASE_URL="" COPY --from=app-build /usr/src/app/fluxer_app/dist /assets +RUN if [ "${BUNDLE_LOCAL_ASSETS}" != "true" ]; then \ + case "${PUBLIC_ASSET_BASE_URL}" in \ + http://* | https://*) ;; \ + *) \ + echo "BUNDLE_LOCAL_ASSETS=false requires an absolute PUBLIC_ASSET_BASE_URL." >&2; \ + echo "Without one, index.html links same-origin /assets/* that this image would no longer contain." >&2; \ + exit 1 \ + ;; \ + esac; \ + find /assets/assets -type f ! -name 'fonts-*.txt' -delete; \ + fi # Stage for CI to extract the full dist (docker bake app-dist target) FROM alpine:3.21 AS app-dist diff --git a/fluxer_app_proxy/docker-bake.hcl b/fluxer_app_proxy/docker-bake.hcl index 615a1005a..85748ce29 100644 --- a/fluxer_app_proxy/docker-bake.hcl +++ b/fluxer_app_proxy/docker-bake.hcl @@ -2,6 +2,7 @@ variable "BUILD_VERSION" { default = "" } variable "PUBLIC_ASSET_BASE_URL" { default = "" } variable "FLUXER_APP_PROXY_TIME_FREEZE_ENABLED" { default = "true" } +variable "BUNDLE_LOCAL_ASSETS" { default = "true" } variable "IMAGE_REPO" { default = "" } variable "CACHE_FROM" { default = "" } variable "CACHE_TO" { default = "" } @@ -22,6 +23,7 @@ target "app-proxy" { BUILD_VERSION = BUILD_VERSION PUBLIC_ASSET_BASE_URL = PUBLIC_ASSET_BASE_URL FLUXER_APP_PROXY_TIME_FREEZE_ENABLED = FLUXER_APP_PROXY_TIME_FREEZE_ENABLED + BUNDLE_LOCAL_ASSETS = BUNDLE_LOCAL_ASSETS } } diff --git a/fluxer_app_proxy/src/bootstrap.rs b/fluxer_app_proxy/src/bootstrap.rs index 95cb69674..d2631108f 100644 --- a/fluxer_app_proxy/src/bootstrap.rs +++ b/fluxer_app_proxy/src/bootstrap.rs @@ -156,14 +156,14 @@ mod tests { #[test] fn inject_bootstrap_replaces_static_cdn_endpoint_placeholder() { - let html = r#"{{FLUXER_BOOTSTRAP}}"#; + let html = r#"{{FLUXER_BOOTSTRAP}}"#; let result = inject_bootstrap( html, "nonce", "", "https://cdn.example.test/", ); - assert!(result.contains(r#"href="https://cdn.example.test/fonts/app.css""#)); + assert!(result.contains(r#"href="https://cdn.example.test/web/favicon-32x32.png""#)); assert!(!result.contains("{{STATIC_CDN_ENDPOINT}}")); } diff --git a/fluxer_app_proxy/src/routes/assets_proxy.rs b/fluxer_app_proxy/src/routes/assets_proxy.rs index 67182895a..cff5f609a 100644 --- a/fluxer_app_proxy/src/routes/assets_proxy.rs +++ b/fluxer_app_proxy/src/routes/assets_proxy.rs @@ -11,7 +11,7 @@ use axum::{ use std::path::Path as FsPath; use std::time::Duration; -use super::spa_static::{guess_mime, is_hashed_asset}; +use super::spa_static::{CORS_ALLOW_ANY_VALUE, guess_mime, is_font_mime, is_hashed_asset}; const ASSET_REQUEST_TIMEOUT: Duration = Duration::from_secs(15); const MAX_ASSET_SIZE_BYTES: u64 = 100 * 1024 * 1024; @@ -109,6 +109,7 @@ pub async fn proxy_assets( response_headers.insert(name.clone(), value.clone()); } set_known_asset_content_type(&mut response_headers, &path); + set_font_cors(&mut response_headers); let asset_csp = build_asset_csp( &state.config.csp, @@ -160,9 +161,16 @@ async fn serve_local_asset(static_dir: &str, relative_path: &str) -> Response { }; let mut response = content.into_response(); - if let Ok(value) = HeaderValue::from_str(guess_mime(relative_path)) { + let mime_type = guess_mime(relative_path); + if let Ok(value) = HeaderValue::from_str(mime_type) { response.headers_mut().insert(header::CONTENT_TYPE, value); } + if is_font_mime(mime_type) { + response.headers_mut().insert( + header::ACCESS_CONTROL_ALLOW_ORIGIN, + HeaderValue::from_static(CORS_ALLOW_ANY_VALUE), + ); + } let cache_control = if is_hashed_asset(relative_path) { "public, max-age=31536000, immutable" } else { @@ -175,6 +183,20 @@ async fn serve_local_asset(static_dir: &str, relative_path: &str) -> Response { response } +fn set_font_cors(headers: &mut HeaderMap) { + let is_font = headers + .get(header::CONTENT_TYPE) + .and_then(|value| value.to_str().ok()) + .map(|value| value.split(';').next().unwrap_or(value).trim()) + .is_some_and(is_font_mime); + if is_font { + headers.insert( + header::ACCESS_CONTROL_ALLOW_ORIGIN, + HeaderValue::from_static(CORS_ALLOW_ANY_VALUE), + ); + } +} + fn set_known_asset_content_type(headers: &mut HeaderMap, path: &str) { let mime_type = guess_mime(path); if mime_type == "application/octet-stream" { @@ -225,6 +247,78 @@ mod tests { ); } + #[test] + fn proxied_font_gains_cors_when_upstream_omits_it() { + let mut headers = HeaderMap::new(); + headers.insert( + header::CONTENT_TYPE, + HeaderValue::from_static("application/octet-stream"), + ); + + set_known_asset_content_type(&mut headers, "0018072843a46dc4.woff2"); + set_font_cors(&mut headers); + + assert_eq!( + headers + .get(header::ACCESS_CONTROL_ALLOW_ORIGIN) + .and_then(|value| value.to_str().ok()), + Some("*") + ); + } + + #[test] + fn proxied_font_cors_overrides_a_narrower_upstream_value() { + let mut headers = HeaderMap::new(); + headers.insert(header::CONTENT_TYPE, HeaderValue::from_static("font/woff2")); + headers.insert( + header::ACCESS_CONTROL_ALLOW_ORIGIN, + HeaderValue::from_static("https://example.invalid"), + ); + + set_font_cors(&mut headers); + + assert_eq!( + headers + .get(header::ACCESS_CONTROL_ALLOW_ORIGIN) + .and_then(|value| value.to_str().ok()), + Some("*") + ); + } + + #[test] + fn proxied_font_cors_tolerates_a_content_type_parameter() { + let mut headers = HeaderMap::new(); + headers.insert( + header::CONTENT_TYPE, + HeaderValue::from_static("font/woff2; charset=binary"), + ); + + set_font_cors(&mut headers); + + assert_eq!( + headers + .get(header::ACCESS_CONTROL_ALLOW_ORIGIN) + .and_then(|value| value.to_str().ok()), + Some("*") + ); + } + + #[test] + fn proxied_non_font_keeps_upstream_cors_untouched() { + let mut headers = HeaderMap::new(); + headers.insert( + header::CONTENT_TYPE, + HeaderValue::from_static("application/javascript; charset=utf-8"), + ); + + set_font_cors(&mut headers); + + assert!( + headers.get(header::ACCESS_CONTROL_ALLOW_ORIGIN).is_none(), + "non-font assets are same-origin and must not gain a wildcard" + ); + } + #[test] fn unknown_asset_preserves_upstream_content_type() { let mut headers = HeaderMap::new(); diff --git a/fluxer_app_proxy/src/routes/mod.rs b/fluxer_app_proxy/src/routes/mod.rs index d13090048..d83c3a5f8 100644 --- a/fluxer_app_proxy/src/routes/mod.rs +++ b/fluxer_app_proxy/src/routes/mod.rs @@ -17,7 +17,13 @@ use axum::{ routing::get, }; use rand::RngExt; -use tower_http::{compression::CompressionLayer, trace::TraceLayer}; +use tower_http::{ + compression::{ + CompressionLayer, + predicate::{DefaultPredicate, NotForContentType, Predicate}, + }, + trace::TraceLayer, +}; const STRICT_TRANSPORT_SECURITY_VALUE: &str = "max-age=31536000; includeSubDomains; preload"; const REFERRER_POLICY_VALUE: &str = "strict-origin-when-cross-origin"; @@ -52,7 +58,10 @@ pub fn build_router(state: AppState) -> Router { state.clone(), security_headers_middleware, )) - .layer(CompressionLayer::new()) + .layer( + CompressionLayer::new() + .compress_when(DefaultPredicate::new().and(NotForContentType::const_new("font/"))), + ) .layer(TraceLayer::new_for_http()) .with_state(state) } diff --git a/fluxer_app_proxy/src/routes/spa_index.rs b/fluxer_app_proxy/src/routes/spa_index.rs index 0d8792b35..d9a1d2874 100644 --- a/fluxer_app_proxy/src/routes/spa_index.rs +++ b/fluxer_app_proxy/src/routes/spa_index.rs @@ -19,12 +19,13 @@ use axum::{ use std::path::Path; use std::time::{Duration, SystemTime, UNIX_EPOCH}; -use super::spa_static::{guess_mime, is_hashed_asset, is_static_asset}; +use super::spa_static::{ + CORS_ALLOW_ANY_VALUE, guess_mime, is_font_mime, is_hashed_asset, is_static_asset, +}; const ACCEPT_CH_VALUE: &str = "DPR, Sec-CH-DPR, Sec-CH-Width, Save-Data, ECT, Downlink"; const CRITICAL_CH_VALUE: &str = "Sec-CH-DPR, Sec-CH-Width, Save-Data"; const DEV_NO_STORE_CACHE_CONTROL: &str = "no-store, no-cache, must-revalidate, max-age=0"; -const CORS_ALLOW_ANY_VALUE: &str = "*"; pub async fn spa_catch_all( State(state): State, @@ -91,13 +92,6 @@ async fn serve_static_file(static_dir: &str, request_path: &str) -> Response { response } -fn is_font_mime(mime_type: &str) -> bool { - matches!( - mime_type, - "font/woff" | "font/woff2" | "font/ttf" | "font/otf" | "application/vnd.ms-fontobject" - ) -} - async fn serve_spa_index(state: &AppState, headers: &HeaderMap, request_path: &str) -> Response { let time_freeze = load_time_freeze_config_for_request(&state.config, headers); let debug_header = time_freeze_debug_header(&time_freeze); diff --git a/fluxer_app_proxy/src/routes/spa_static.rs b/fluxer_app_proxy/src/routes/spa_static.rs index b23f9acc5..819e40b0d 100644 --- a/fluxer_app_proxy/src/routes/spa_static.rs +++ b/fluxer_app_proxy/src/routes/spa_static.rs @@ -231,25 +231,37 @@ pub fn guess_mime(path: &str) -> &'static str { } } +pub const CORS_ALLOW_ANY_VALUE: &str = "*"; + +pub fn is_font_mime(mime_type: &str) -> bool { + matches!( + mime_type, + "font/woff" | "font/woff2" | "font/ttf" | "font/otf" | "application/vnd.ms-fontobject" + ) +} + pub fn is_static_asset(path: &str) -> bool { let filename = path.rsplit('/').next().unwrap_or(path); filename.contains('.') } pub fn is_hashed_asset(path: &str) -> bool { - let Some(last_dot) = path.rfind('.') else { + let filename = path.rsplit('/').next().unwrap_or(path); + let Some(last_dot) = filename.rfind('.') else { return false; }; - let prefix = &path[..last_dot]; - for sep in ['.', '-'] { - if let Some(sep_pos) = prefix.rfind(sep) { - let hash_part = &prefix[sep_pos + 1..]; - if hash_part.len() >= 8 && hash_part.chars().all(|c| c.is_ascii_hexdigit()) { - return true; - } - } + let stem = &filename[..last_dot]; + if is_content_hash(stem) { + return true; } - false + ['.', '-'].iter().any(|sep| { + stem.rfind(*sep) + .is_some_and(|sep_pos| is_content_hash(&stem[sep_pos + 1..])) + }) +} + +fn is_content_hash(value: &str) -> bool { + value.len() >= 8 && value.chars().all(|c| c.is_ascii_hexdigit()) } #[cfg(test)] @@ -343,9 +355,17 @@ mod tests { assert!(is_hashed_asset("style-abcdef01.css")); } + #[test] + fn hashed_asset_accepts_bare_contenthash_filenames() { + assert!(is_hashed_asset("assets/469e0b8f10c496a1.css")); + assert!(is_hashed_asset("assets/a79f1c3119cd700d.woff2")); + assert!(is_hashed_asset("/assets/488b87159423ca35.js")); + } + #[test] fn hashed_asset_negative() { assert!(!is_hashed_asset("app.js")); assert!(!is_hashed_asset("style.css")); + assert!(!is_hashed_asset("a79f1c3119cd700d/app.js")); } } diff --git a/fluxer_docs/docs/operator/get-started.md b/fluxer_docs/docs/operator/get-started.md index 541f7c129..c75b31849 100644 --- a/fluxer_docs/docs/operator/get-started.md +++ b/fluxer_docs/docs/operator/get-started.md @@ -2,23 +2,6 @@ Run your own Fluxer instance with Docker Compose. This guide takes you from a fresh server to a working self-hosted instance with the web app, API, gateway, admin dashboard, media uploads, search, storage, and voice signaling behind one public hostname. -## What you'll run - -The self-hosted stack is one Docker Compose project: - -- **Caddy** terminates public HTTP(S) or receives traffic from a Cloudflare Tunnel. -- **App proxy** serves the Fluxer web client and injects instance bootstrap data. -- **API** handles accounts, auth, communities, messages, uploads, admin APIs, and instance discovery. -- **Admin dashboard** is required and is served at `/admin`. -- **Gateway** handles WebSocket sessions, presence, dispatch, push fanout, and realtime events. -- **Messages service** builds message responses and serves message history. -- **Media proxy** handles attachment upload relay, media metadata, thumbnails, and object reads. -- **Static proxy** serves Fluxer fonts, icons, emoji, badges, default avatars, and voice client assets from the same hostname. -- **LiveKit** handles voice and video signaling and WebRTC media. -- **Postgres**, **Valkey**, **NATS**, **Meilisearch**, and **SeaweedFS** provide data, cache, events, search, and S3-compatible object storage. - -The app bundle is served by the self-host app-proxy image; shared static assets are served by the standalone `static-proxy` container. The stack does not depend on Fluxer's public static asset host. - ## Requirements - A Linux server or VM that can run Docker Engine. @@ -204,59 +187,7 @@ docker compose logs -f api The first start can take several minutes while images download and services initialize. `seaweedfs-init` exits after creating object-storage buckets; that is expected. -## Step 7: Verify the instance - -Set your domain in the shell: - -```bash -export FLUXER_DOMAIN=chat.example.com -``` - -Check every public HTTP entry point: - -```bash -for path in /_health /api/_health /gateway/_health /media/_health /admin/_health; do - curl -fsS -o /tmp/fluxer-check -w "$path %{http_code}\n" "https://$FLUXER_DOMAIN$path" -done -``` - -Expected result: - -```text -/_health 200 -/api/_health 200 -/gateway/_health 200 -/media/_health 200 -/admin/_health 200 -``` - -Check instance discovery: - -```bash -curl -fsS "https://$FLUXER_DOMAIN/api/.well-known/fluxer" | jq '.features.self_hosted, .endpoints.admin, .endpoints.gateway, .endpoints.media, .endpoints.static_cdn' -``` - -You should see `true`, an admin URL ending in `/admin`, a gateway URL ending in `/gateway`, a media URL ending in `/media`, and a static asset URL equal to the instance origin. - -Check the web app, admin login page, app bundle, and static asset container: - -```bash -curl -fsSI "https://$FLUXER_DOMAIN" | sed -n '1,8p' -curl -fsSI "https://$FLUXER_DOMAIN/admin/login" | sed -n '1,8p' - -asset=$(curl -fsS "https://$FLUXER_DOMAIN" | grep -o 'src="[^"]*/assets/[^"]*"' | head -n1 | cut -d'"' -f2) -case "$asset" in - http*) curl -fsSI "$asset" | sed -n '1,8p' ;; - /*) curl -fsSI "https://$FLUXER_DOMAIN$asset" | sed -n '1,8p' ;; -esac - -curl -fsSI "https://$FLUXER_DOMAIN/fonts/ibm-plex.css?v=3" | sed -n '1,8p' -curl -fsSI "https://$FLUXER_DOMAIN/web/favicon-32x32.png" | sed -n '1,8p' -``` - -If you are using Cloudflare Tunnel and see HTTP `530`, the tunnel connector is not currently connected or the public hostname route points at the wrong service. - -## Step 8: Create the owner account +## Step 7: Create the owner account Open the web app: diff --git a/fluxer_docs/docs/stylesheets/fluxer.css b/fluxer_docs/docs/stylesheets/fluxer.css index 8c83c611c..1e2de768d 100644 --- a/fluxer_docs/docs/stylesheets/fluxer.css +++ b/fluxer_docs/docs/stylesheets/fluxer.css @@ -1,8 +1,14 @@ -:root { - --md-text-font: 'Fluxer Sans'; - --md-code-font: 'Fluxer Mono'; - --fluxer-display: 'Bricolage Grotesque', var(--md-text-font-family); +body { + --md-text-font-family: + system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, + 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; + --md-code-font-family: + ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', 'Roboto Mono', 'Courier New', monospace; + --fluxer-display: var(--md-text-font-family); +} + +:root { --md-primary-fg-color: #4641d9; --md-primary-fg-color--light: #5b56e0; --md-primary-fg-color--dark: #3832b8; diff --git a/fluxer_docs/nginx.conf b/fluxer_docs/nginx.conf index 28738c874..2de7fd2fa 100644 --- a/fluxer_docs/nginx.conf +++ b/fluxer_docs/nginx.conf @@ -22,12 +22,18 @@ server { internal; } - location ~* \.(?:css|js|mjs|svg|png|jpg|jpeg|gif|webp|avif|ico|woff2?)$ { + location ^~ /assets/ { try_files $uri =404; include /etc/nginx/conf.d/security-headers.conf; add_header Cache-Control "public, max-age=31536000, immutable" always; } + location ~* \.(?:css|js|mjs|svg|png|jpg|jpeg|gif|webp|avif|ico)$ { + try_files $uri =404; + include /etc/nginx/conf.d/security-headers.conf; + add_header Cache-Control "public, max-age=3600, must-revalidate" always; + } + location / { try_files $uri $uri/ =404; } diff --git a/fluxer_docs/scripts/write_csp_header.py b/fluxer_docs/scripts/write_csp_header.py index a47b9b3cf..2b14ee7ec 100644 --- a/fluxer_docs/scripts/write_csp_header.py +++ b/fluxer_docs/scripts/write_csp_header.py @@ -16,9 +16,7 @@ class InlineScriptParser(html.parser.HTMLParser): self._parts: list[str] = [] self.scripts: list[str] = [] - def handle_starttag( - self, tag: str, attrs: list[tuple[str, str | None]] - ) -> None: + def handle_starttag(self, tag: str, attrs: list[tuple[str, str | None]]) -> None: if tag.lower() != "script": return if any(name.lower() == "src" for name, _ in attrs): @@ -63,9 +61,9 @@ def main() -> None: [ "default-src 'self'", f"script-src 'self' {script_sources}", - "style-src 'self' 'unsafe-inline' https://fluxerstatic.com", + "style-src 'self' 'unsafe-inline'", "img-src 'self' data:", - "font-src 'self' data: https://fluxerstatic.com", + "font-src 'none'", "connect-src 'self' https://api.github.com", "worker-src 'self'", "frame-src 'none'", diff --git a/fluxer_docs/zensical.toml b/fluxer_docs/zensical.toml index 215ee66e4..2f6754350 100644 --- a/fluxer_docs/zensical.toml +++ b/fluxer_docs/zensical.toml @@ -105,8 +105,6 @@ nav = [ # Read more: https://zensical.org/docs/customization/#additional-css # extra_css = [ - "https://fluxerstatic.com/fonts/ibm-plex.css?v=3", - "https://fluxerstatic.com/fonts/bricolage.css?v=3", "stylesheets/fluxer.css", ] @@ -145,6 +143,7 @@ extra_css = [ # - https://developer.mozilla.org/en-US/docs/Glossary/Favicon # favicon = "assets/favicon.svg" + font = false # Zensical supports more than 60 different languages. This means that the diff --git a/fluxer_marketing/Cargo.toml b/fluxer_marketing/Cargo.toml index 234d4029b..29d2f71c6 100644 --- a/fluxer_marketing/Cargo.toml +++ b/fluxer_marketing/Cargo.toml @@ -36,6 +36,8 @@ urlencoding = "2.1.3" [build-dependencies] polib = "0.3.0" +serde_json = "1.0.150" +sha2 = "0.11.0" syn = { version = "2.0.117", features = ["full", "visit"] } [dev-dependencies] diff --git a/fluxer_marketing/Dockerfile b/fluxer_marketing/Dockerfile index fb1951a3d..a5e20c305 100644 --- a/fluxer_marketing/Dockerfile +++ b/fluxer_marketing/Dockerfile @@ -20,6 +20,12 @@ RUN pnpm install --frozen-lockfile --filter fluxer_marketing --config.block-exot COPY Cargo.lock Cargo.lock COPY fluxer_common fluxer_common COPY fluxer_marketing fluxer_marketing +COPY packages/fonts/manifest.json packages/fonts/manifest.json +COPY packages/fonts/NOTICE.md packages/fonts/NOTICE.md +COPY packages/fonts/LICENSE-IBM-PLEX.txt packages/fonts/LICENSE-IBM-PLEX.txt +COPY packages/fonts/css/locale-fallbacks.css packages/fonts/css/locale-fallbacks.css +COPY packages/fonts/files/FluxerSans packages/fonts/files/FluxerSans +COPY packages/fonts/files/FluxerMono packages/fonts/files/FluxerMono RUN printf '%s\n' \ '[workspace]' \ 'members = ["fluxer_common", "fluxer_marketing"]' \ diff --git a/fluxer_marketing/build.rs b/fluxer_marketing/build.rs index e1dd8a2f4..696a3b38b 100644 --- a/fluxer_marketing/build.rs +++ b/fluxer_marketing/build.rs @@ -1,5 +1,6 @@ // SPDX-License-Identifier: AGPL-3.0-or-later +use sha2::{Digest, Sha256}; use std::collections::{BTreeMap, BTreeSet}; use std::env; use std::fs; @@ -219,6 +220,7 @@ fn main() { let descriptors = parse_descriptors(&descriptors_path); validate_gettext_catalogs(&locale_dir, &generated_dir, &descriptors); write_generated_i18n(&generated_dir.join("generated.rs")); + build_fonts(&manifest_dir, &out_dir); build_tailwind(&manifest_dir, &out_dir); } @@ -708,6 +710,239 @@ fn write_generated_i18n(path: &Path) { fs::write(path, output).expect("failed to write generated i18n Rust"); } +const BUNDLED_FAMILIES: &[&str] = &["FluxerSans", "FluxerMono"]; + +const BUNDLED_WEIGHTS: &[u64] = &[400, 500, 600, 700]; + +const EXPECTED_FACE_COUNT: usize = 16; + +struct Face { + css_family: String, + weight: u64, + style: String, + source: String, +} + +struct Asset { + name: String, + content_type: &'static str, +} + +fn build_fonts(manifest_dir: &Path, out_dir: &Path) { + println!("cargo:rerun-if-changed=../packages/fonts/manifest.json"); + println!("cargo:rerun-if-changed=../packages/fonts/css/locale-fallbacks.css"); + println!("cargo:rerun-if-changed=../packages/fonts/files/FluxerSans"); + println!("cargo:rerun-if-changed=../packages/fonts/files/FluxerMono"); + println!("cargo:rerun-if-changed=../packages/fonts/NOTICE.md"); + println!("cargo:rerun-if-changed=../packages/fonts/LICENSE-IBM-PLEX.txt"); + + let package_dir = manifest_dir.join("../packages/fonts"); + let fonts_dir = out_dir.join("static").join("fonts"); + let _ = fs::remove_dir_all(&fonts_dir); + fs::create_dir_all(&fonts_dir).expect("failed to create generated font dir"); + + let mut assets = Vec::new(); + let notice = emit_asset( + &fonts_dir, + &package_dir.join("NOTICE.md"), + "text/plain; charset=utf-8", + &mut assets, + ); + let plex_license = emit_asset( + &fonts_dir, + &package_dir.join("LICENSE-IBM-PLEX.txt"), + "text/plain; charset=utf-8", + &mut assets, + ); + + let faces = select_faces(&package_dir); + assert_eq!( + faces.len(), + EXPECTED_FACE_COUNT, + "packages/fonts no longer offers the {} Latin-core faces fluxer_marketing renders; \ + reconcile BUNDLED_FAMILIES/BUNDLED_WEIGHTS with the manifest", + EXPECTED_FACE_COUNT + ); + + let mut stylesheet = String::from("/* SPDX-License-Identifier: AGPL-3.0-or-later */\n"); + stylesheet.push_str( + "/* @generated by fluxer_marketing/build.rs from packages/fonts. Do not edit by hand. */\n\n", + ); + stylesheet.push_str(&format!( + "/*\n\ + \x20* IBM Plex is licensed under the SIL Open Font License 1.1.\n\ + \x20* The IBM Plex faces below are Modified Versions renamed to \"Fluxer Sans\", so OFL\n\ + \x20* clause 3 requires the disclosure to travel with them. It is served beside them:\n\ + \x20* ./{notice}\n\ + \x20* ./{plex_license}\n\ + \x20*\n\ + \x20* Every url() below is relative, so it resolves against this stylesheet's own\n\ + \x20* directory. That keeps the sheet correct under any FLUXER_MARKETING_BASE_PATH\n\ + \x20* without the build having to know the runtime base path.\n\ + \x20*/\n" + )); + for face in &faces { + let source = package_dir.join("files").join(&face.source); + let file = emit_asset(&fonts_dir, &source, "font/woff2", &mut assets); + stylesheet.push_str(&format!( + "@font-face {{\n\ + \tfont-family: '{}';\n\ + \tsrc: url('{file}') format('woff2');\n\ + \tfont-weight: {};\n\ + \tfont-style: {};\n\ + \tfont-display: swap;\n\ + }}\n", + face.css_family, face.weight, face.style + )); + } + + let fallbacks_path = package_dir.join("css").join("locale-fallbacks.css"); + let fallbacks = fs::read_to_string(&fallbacks_path) + .unwrap_or_else(|err| panic!("failed to read {}: {err}", fallbacks_path.display())); + stylesheet.push('\n'); + stylesheet.push_str(strip_generated_banner(&fallbacks)); + + let stylesheet_name = write_hashed( + &fonts_dir, + "fonts.css", + stylesheet.as_bytes(), + "text/css; charset=utf-8", + &mut assets, + ); + + write_font_asset_table(out_dir, &stylesheet_name, &assets); +} + +fn strip_generated_banner(css: &str) -> &str { + let mut rest = css; + while let Some(line_end) = rest.find('\n') { + let line = rest[..line_end].trim(); + if line.is_empty() || (line.starts_with("/*") && line.ends_with("*/")) { + rest = &rest[line_end + 1..]; + } else { + break; + } + } + rest +} + +fn select_faces(package_dir: &Path) -> Vec { + let manifest_path = package_dir.join("manifest.json"); + let raw = fs::read_to_string(&manifest_path).unwrap_or_else(|err| { + panic!( + "failed to read {}: {err}. packages/fonts is generated by \ + `python3 tools/fonts/build_fonts.py`.", + manifest_path.display() + ) + }); + let manifest: serde_json::Value = + serde_json::from_str(&raw).expect("failed to parse packages/fonts/manifest.json"); + let families = manifest["families"] + .as_array() + .expect("packages/fonts/manifest.json has no families array"); + + let mut faces = Vec::new(); + for wanted in BUNDLED_FAMILIES { + let family = families + .iter() + .find(|family| family["id"].as_str() == Some(wanted)) + .unwrap_or_else(|| panic!("packages/fonts/manifest.json has no family {wanted}")); + assert_eq!( + family["latinCore"].as_bool(), + Some(true), + "{wanted} is no longer a Latin-core family; it would need unicode-range gating" + ); + let css_family = family["cssFamily"] + .as_str() + .unwrap_or_else(|| panic!("{wanted} has no cssFamily")) + .to_owned(); + for face in family["faces"] + .as_array() + .unwrap_or_else(|| panic!("{wanted} has no faces array")) + { + let weight = face["weight"].as_u64().expect("face has no weight"); + if !BUNDLED_WEIGHTS.contains(&weight) { + continue; + } + assert!( + face["unicodeRange"].is_null(), + "{wanted} face {} carries a unicode-range; Latin-core faces must not", + face["file"] + ); + faces.push(Face { + css_family: css_family.clone(), + weight, + style: face["style"] + .as_str() + .expect("face has no style") + .to_owned(), + source: face["file"].as_str().expect("face has no file").to_owned(), + }); + } + } + faces +} + +fn emit_asset( + fonts_dir: &Path, + source: &Path, + content_type: &'static str, + assets: &mut Vec, +) -> String { + let bytes = + fs::read(source).unwrap_or_else(|err| panic!("failed to read {}: {err}", source.display())); + let file_name = source + .file_name() + .and_then(|name| name.to_str()) + .unwrap_or_else(|| panic!("{} has no file name", source.display())); + write_hashed(fonts_dir, file_name, &bytes, content_type, assets) +} + +fn write_hashed( + fonts_dir: &Path, + file_name: &str, + bytes: &[u8], + content_type: &'static str, + assets: &mut Vec, +) -> String { + let (stem, extension) = file_name + .rsplit_once('.') + .unwrap_or_else(|| panic!("{file_name} has no extension to hash around")); + let digest = Sha256::digest(bytes); + let hash: String = digest + .iter() + .take(8) + .map(|byte| format!("{byte:02x}")) + .collect(); + let name = format!("{stem}.{hash}.{extension}"); + fs::write(fonts_dir.join(&name), bytes) + .unwrap_or_else(|err| panic!("failed to write {name}: {err}")); + assets.push(Asset { + name: name.clone(), + content_type, + }); + name +} + +fn write_font_asset_table(out_dir: &Path, stylesheet_name: &str, assets: &[Asset]) { + let mut generated = String::from( + "// @generated by fluxer_marketing/build.rs from packages/fonts. Do not edit by hand.\n\n", + ); + generated.push_str(&format!( + "/// File name of the content-hashed `@font-face` stylesheet, relative to `/static/fonts/`.\npub const STYLESHEET_FILE_NAME: &str = {stylesheet_name:?};\n\n" + )); + generated.push_str("/// `(file name, content type, bytes)` for everything served under `/static/fonts/`.\npub static ASSETS: &[(&str, &str, &[u8])] = &[\n"); + for asset in assets { + generated.push_str(&format!( + " ({:?}, {:?}, include_bytes!(concat!(env!(\"OUT_DIR\"), \"/static/fonts/{}\"))),\n", + asset.name, asset.content_type, asset.name + )); + } + generated.push_str("];\n"); + fs::write(out_dir.join("static").join("fonts.rs"), generated) + .expect("failed to write generated font asset table"); +} + fn build_tailwind(manifest_dir: &Path, out_dir: &Path) { let output_dir = out_dir.join("static"); fs::create_dir_all(&output_dir).expect("failed to create generated static dir"); diff --git a/fluxer_marketing/src/fonts.rs b/fluxer_marketing/src/fonts.rs new file mode 100644 index 000000000..c15edf5ce --- /dev/null +++ b/fluxer_marketing/src/fonts.rs @@ -0,0 +1,93 @@ +// SPDX-License-Identifier: AGPL-3.0-or-later + +include!(concat!(env!("OUT_DIR"), "/static/fonts.rs")); + +pub fn asset(file_name: &str) -> Option<(&'static str, &'static [u8])> { + ASSETS + .iter() + .find(|(name, _, _)| *name == file_name) + .map(|(_, content_type, bytes)| (*content_type, *bytes)) +} + +#[cfg(test)] +mod tests { + use super::*; + + fn stylesheet() -> &'static str { + let (content_type, bytes) = + asset(STYLESHEET_FILE_NAME).expect("the generated stylesheet must be servable"); + assert_eq!(content_type, "text/css; charset=utf-8"); + std::str::from_utf8(bytes).expect("stylesheet must be UTF-8") + } + + #[test] + fn stylesheet_is_served_and_content_hashed() { + let css = stylesheet(); + assert!(css.contains("font-family: 'Fluxer Sans'")); + assert!(css.contains("font-family: 'Fluxer Mono'")); + assert!( + !css.contains("?v="), + "content hashing replaces cache-bust tokens" + ); + assert!( + !css.contains("fluxerstatic"), + "fonts must not be fetched from the static CDN" + ); + assert!( + STYLESHEET_FILE_NAME.starts_with("fonts.") && STYLESHEET_FILE_NAME.ends_with(".css"), + "unexpected stylesheet name {STYLESHEET_FILE_NAME}" + ); + } + + #[test] + fn every_face_the_stylesheet_references_is_served() { + let css = stylesheet(); + let mut referenced = 0; + for fragment in css.split("url('").skip(1) { + let file_name = fragment.split('\'').next().expect("unterminated url()"); + let (content_type, _) = asset(file_name) + .unwrap_or_else(|| panic!("stylesheet references unserved font {file_name}")); + assert_eq!(content_type, "font/woff2"); + referenced += 1; + } + assert_eq!(referenced, 16, "expected the 16 bundled Latin-core faces"); + } + + #[test] + fn non_latin_locales_keep_a_real_fallback_face() { + let css = stylesheet(); + for (selector, os_face) in [ + (":root:lang(ja)", "'Yu Gothic'"), + (":root:lang(ko)", "'Malgun Gothic'"), + (":root:lang(zh-CN)", "'Microsoft YaHei'"), + (":root:lang(zh-TW)", "'Microsoft JhengHei'"), + (":root:lang(ar)", "'Geeza Pro'"), + (":root:lang(he)", "'Arial Hebrew'"), + (":root:lang(hi)", "'Nirmala UI'"), + (":root:lang(th)", "'Leelawadee UI'"), + ] { + assert!(css.contains(selector), "missing fallback chain {selector}"); + assert!(css.contains(os_face), "missing OS fallback face {os_face}"); + } + } + + #[test] + fn ofl_attribution_ships_with_the_binaries() { + let notice = ASSETS + .iter() + .find(|(name, _, _)| name.starts_with("NOTICE.") && name.ends_with(".md")) + .expect("the OFL modification disclosure must ship with the modified fonts"); + assert!(!notice.2.is_empty()); + assert!( + ASSETS + .iter() + .any(|(name, _, _)| name.starts_with("LICENSE-IBM-PLEX.")) + ); + } + + #[test] + fn unknown_files_are_not_served() { + assert!(asset("fonts.css").is_none()); + assert!(asset("../../../etc/passwd").is_none()); + } +} diff --git a/fluxer_marketing/src/lib.rs b/fluxer_marketing/src/lib.rs index 1fc89f78f..c494bda99 100644 --- a/fluxer_marketing/src/lib.rs +++ b/fluxer_marketing/src/lib.rs @@ -3,6 +3,7 @@ pub mod config; pub mod content; pub mod downloads; +pub mod fonts; pub mod geoip; pub mod i18n; pub mod invariant_text; diff --git a/fluxer_marketing/src/routes.rs b/fluxer_marketing/src/routes.rs index d4a175d00..0c5cefede 100644 --- a/fluxer_marketing/src/routes.rs +++ b/fluxer_marketing/src/routes.rs @@ -35,7 +35,13 @@ use time::{ OffsetDateTime, format_description::well_known::{Rfc2822, Rfc3339}, }; -use tower_http::{compression::CompressionLayer, trace::TraceLayer}; +use tower_http::{ + compression::{ + CompressionLayer, + predicate::{DefaultPredicate, NotForContentType, Predicate}, + }, + trace::TraceLayer, +}; const APP_CSS: &str = include_str!(concat!(env!("OUT_DIR"), "/static/app.css")); const HTMX_JS: &str = include_str!("../static/htmx.min.js"); @@ -57,6 +63,7 @@ const STRICT_TRANSPORT_SECURITY_VALUE: &str = "max-age=31536000; includeSubDomai const REFERRER_POLICY_VALUE: &str = "strict-origin-when-cross-origin"; const PERMISSIONS_POLICY_VALUE: &str = "accelerometer=(), camera=(), geolocation=(), gyroscope=(), magnetometer=(), microphone=(), payment=(), usb=()"; const X_FRAME_OPTIONS_VALUE: &str = "DENY"; +const IMMUTABLE_CACHE_CONTROL: &str = "public, max-age=31536000, immutable"; #[derive(Deserialize)] struct LocaleForm { @@ -162,6 +169,7 @@ pub fn build_router(config: MarketingConfig) -> Router { .route("/_donations/checkout", post(donation_checkout)) .route("/_donations/request-link", post(donation_request_link)) .route("/static/app.css", get(app_css)) + .route("/static/fonts/{file_name}", get(font_asset)) .route("/static/htmx.min.js", get(htmx_js)) .route("/static/world-map-equirectangular.svg", get(world_map_svg)) .route( @@ -239,7 +247,10 @@ pub fn build_router(config: MarketingConfig) -> Router { state.clone(), security_headers_middleware, )) - .layer(CompressionLayer::new()) + .layer( + CompressionLayer::new() + .compress_when(DefaultPredicate::new().and(NotForContentType::const_new("font/"))), + ) .layer(TraceLayer::new_for_http()) .with_state(state) } @@ -295,9 +306,9 @@ fn build_marketing_content_security_policy(config: &MarketingConfig) -> String { [ "default-src 'self'".to_owned(), format!("script-src 'self' {}", inline_script_csp_source()), - format!("style-src 'self' 'unsafe-inline' {static_cdn}"), + "style-src 'self' 'unsafe-inline'".to_owned(), format!("img-src 'self' data: blob: {static_cdn}"), - format!("font-src 'self' data: {static_cdn}"), + "font-src 'self'".to_owned(), format!("media-src 'self' {static_cdn}"), "connect-src 'self'".to_owned(), "frame-src 'none'".to_owned(), @@ -1002,6 +1013,20 @@ async fn app_css() -> impl IntoResponse { ([(header::CONTENT_TYPE, "text/css; charset=utf-8")], APP_CSS) } +async fn font_asset(Path(file_name): Path) -> Response { + match crate::fonts::asset(&file_name) { + Some((content_type, bytes)) => ( + [ + (header::CONTENT_TYPE, content_type), + (header::CACHE_CONTROL, IMMUTABLE_CACHE_CONTROL), + ], + bytes, + ) + .into_response(), + None => StatusCode::NOT_FOUND.into_response(), + } +} + async fn htmx_js() -> impl IntoResponse { ( [( diff --git a/fluxer_marketing/src/styles/app.css b/fluxer_marketing/src/styles/app.css index 89e0b9e8f..ec7eba234 100644 --- a/fluxer_marketing/src/styles/app.css +++ b/fluxer_marketing/src/styles/app.css @@ -5,8 +5,8 @@ @theme { --font-sans: "Fluxer Sans", ui-sans-serif, system-ui, sans-serif; - --font-display: "Bricolage Grotesque", "Fluxer Sans", ui-sans-serif, system-ui, sans-serif; - --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + --font-display: "Fluxer Sans", ui-sans-serif, system-ui, sans-serif; + --font-mono: "Fluxer Mono", ui-monospace, SFMono-Regular, Menlo, monospace; --color-fluxer: #4641d9; --color-fluxer-dark: #3832b8; --color-primary: #4641d9; diff --git a/fluxer_marketing/src/templates/mod.rs b/fluxer_marketing/src/templates/mod.rs index 90451d236..88f32e3e3 100644 --- a/fluxer_marketing/src/templates/mod.rs +++ b/fluxer_marketing/src/templates/mod.rs @@ -988,8 +988,7 @@ fn base_document( } title { (page_title.as_str()) } link rel="preconnect" href=(cdn); - link rel="stylesheet" href=(format!("{cdn}/fonts/ibm-plex.css?v=3")); - link rel="stylesheet" href=(format!("{cdn}/fonts/bricolage.css?v=3")); + link rel="stylesheet" href=(format!("{}/static/fonts/{}", ctx.base_path, crate::fonts::STYLESHEET_FILE_NAME)); link rel="stylesheet" href=(format!("{}/static/app.css?v={}", ctx.base_path, ctx.asset_version)); link rel="icon" type="image/x-icon" sizes="256x256" href=(format!("{cdn}/web/favicon.ico")); link rel="apple-touch-icon" href=(format!("{cdn}/web/apple-touch-icon.png")); diff --git a/fluxer_marketing/tests/routes.rs b/fluxer_marketing/tests/routes.rs index c939cfabb..6782aeefd 100644 --- a/fluxer_marketing/tests/routes.rs +++ b/fluxer_marketing/tests/routes.rs @@ -1856,3 +1856,102 @@ fn attribute_values(html: &str, name: &str) -> Vec { } values } + +#[tokio::test] +async fn fonts_are_served_locally_content_hashed_and_immutable() { + let app = build_router(test_config()); + + let stylesheet_path = format!( + "/static/fonts/{}", + fluxer_marketing::fonts::STYLESHEET_FILE_NAME + ); + let response = app + .clone() + .oneshot( + Request::builder() + .uri(stylesheet_path.as_str()) + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(response.status(), StatusCode::OK); + assert_eq!( + response.headers().get(header::CACHE_CONTROL).unwrap(), + "public, max-age=31536000, immutable" + ); + let body = response.into_body().collect().await.unwrap().to_bytes(); + let css = String::from_utf8(body.to_vec()).unwrap(); + + for fragment in css.split("url('").skip(1) { + let file_name = fragment.split('\'').next().unwrap(); + let response = app + .clone() + .oneshot( + Request::builder() + .uri(format!("/static/fonts/{file_name}").as_str()) + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!( + response.status(), + StatusCode::OK, + "missing font {file_name}" + ); + assert_eq!( + response.headers().get(header::CONTENT_TYPE).unwrap(), + "font/woff2" + ); + assert_eq!( + response.headers().get(header::CACHE_CONTROL).unwrap(), + "public, max-age=31536000, immutable" + ); + } + + let response = app + .oneshot( + Request::builder() + .uri("/static/fonts/does-not-exist.woff2") + .body(Body::empty()) + .unwrap(), + ) + .await + .unwrap(); + assert_eq!(response.status(), StatusCode::NOT_FOUND); +} + +#[tokio::test] +async fn pages_never_reference_the_static_cdn_for_fonts() { + let app = build_router(test_config()); + + for path in ["/", "/download", "/blog", "/missing"] { + let html = render_path(app.clone(), path).await; + assert!( + !html.contains("/fonts/ibm-plex.css"), + "{path} still links the CDN font stylesheets" + ); + assert!( + html.contains("/static/fonts/"), + "{path} does not link the bundled font stylesheet" + ); + } + + let response = app + .oneshot(Request::builder().uri("/").body(Body::empty()).unwrap()) + .await + .unwrap(); + let csp = response + .headers() + .get(header::CONTENT_SECURITY_POLICY) + .unwrap() + .to_str() + .unwrap() + .to_owned(); + assert!(csp.contains("font-src 'self';"), "font-src was {csp}"); + assert!( + csp.contains("style-src 'self' 'unsafe-inline';"), + "style-src was {csp}" + ); +} diff --git a/fluxer_static/Dockerfile b/fluxer_static/Dockerfile index 378cefe43..c5e342f67 100644 --- a/fluxer_static/Dockerfile +++ b/fluxer_static/Dockerfile @@ -18,7 +18,6 @@ COPY --chown=65532:65532 fluxer_static/badges /srv/fluxer-static/badges COPY --chown=65532:65532 fluxer_static/desktop /srv/fluxer-static/desktop COPY --chown=65532:65532 fluxer_static/embeds /srv/fluxer-static/embeds COPY --chown=65532:65532 fluxer_static/emoji /srv/fluxer-static/emoji -COPY --chown=65532:65532 fluxer_static/fonts /srv/fluxer-static/fonts COPY --chown=65532:65532 fluxer_static/libs /srv/fluxer-static/libs COPY --chown=65532:65532 fluxer_static/web /srv/fluxer-static/web diff --git a/fluxer_static/THIRD_PARTY_LICENSES.md b/fluxer_static/THIRD_PARTY_LICENSES.md index a3aa84533..f2f1dbe04 100644 --- a/fluxer_static/THIRD_PARTY_LICENSES.md +++ b/fluxer_static/THIRD_PARTY_LICENSES.md @@ -9,8 +9,12 @@ licenses and attribution requirements. | `desktop/spellcheck/dictionaries/` | Hunspell dictionaries packaged as exact `dictionary-*` npm package versions | Varies by language; each dictionary directory includes its own `LICENSE`, and the package summary is in `desktop/spellcheck/dictionaries/NOTICE.md`. | | `emoji/` | Twemoji graphics from `jdecked/twemoji` | CC-BY-4.0; see `emoji/LICENSE` and `emoji/NOTICE.md`. | | `marketing/flags/` | Twemoji flag graphics from `jdecked/twemoji` | CC-BY-4.0; see `marketing/flags/LICENSE` and `marketing/flags/NOTICE.md`. | -| `fonts/` | IBM Plex and Bricolage Grotesque font files | OFL-1.1; see `fonts/LICENSE-IBM-PLEX.txt`, `fonts/LICENSE-BRICOLAGE-GROTESQUE.txt`, and `fonts/NOTICE.md`. | | `libs/deepfilternet3/` | DeepFilterNet3 WASM/model assets | MIT or Apache-2.0; see the license files and `libs/deepfilternet3/NOTICE.md`. | | `embeds/icons/hn.webp` | Hacker News brand icon | Third-party brand asset; see `embeds/icons/NOTICE.md`. | +Fonts used to be mirrored here under `fonts/`. They are now bundled by each app +that uses them, and their OFL-1.1 licenses and modification disclosure live with +the binaries in `packages/fonts/` (`LICENSE-IBM-PLEX.txt`, +`NOTICE.md`). + No Fluxer license notice grants rights to third-party trademarks or brand names. diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Bold.otf b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Bold.otf deleted file mode 100644 index 84e04ee04..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Bold.woff2 b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Bold.woff2 deleted file mode 100644 index 3ea0e8927..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-ExtraBold.otf b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-ExtraBold.otf deleted file mode 100644 index 880e0a4c1..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-ExtraBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-ExtraBold.woff2 b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-ExtraBold.woff2 deleted file mode 100644 index a2a827cab..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-ExtraBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-ExtraLight.otf b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-ExtraLight.otf deleted file mode 100644 index d00429354..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-ExtraLight.woff2 b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-ExtraLight.woff2 deleted file mode 100644 index b5b735080..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Light.otf b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Light.otf deleted file mode 100644 index 51a409322..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Light.woff2 b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Light.woff2 deleted file mode 100644 index ee1aac6a1..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Medium.otf b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Medium.otf deleted file mode 100644 index 0a31cea6a..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Medium.woff2 b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Medium.woff2 deleted file mode 100644 index 071954a93..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Regular.otf b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Regular.otf deleted file mode 100644 index a532d509b..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Regular.woff2 b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Regular.woff2 deleted file mode 100644 index a6483e246..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-SemiBold.otf b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-SemiBold.otf deleted file mode 100644 index 74b97eec8..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-SemiBold.woff2 b/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-SemiBold.woff2 deleted file mode 100644 index 7606331c3..000000000 Binary files a/fluxer_static/fonts/BricolageGrotesque/BricolageGrotesque-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Bold.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Bold.otf deleted file mode 100644 index dbf773434..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Bold.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Bold.woff2 deleted file mode 100644 index 1e17b840c..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-BoldItalic.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-BoldItalic.otf deleted file mode 100644 index 68cf33af7..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-BoldItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-BoldItalic.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-BoldItalic.woff2 deleted file mode 100644 index 3e1309b42..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-BoldItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ExtraLight.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ExtraLight.otf deleted file mode 100644 index 3cc88210a..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ExtraLight.woff2 deleted file mode 100644 index ae39f54dc..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ExtraLightItalic.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ExtraLightItalic.otf deleted file mode 100644 index 820cd4049..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ExtraLightItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ExtraLightItalic.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ExtraLightItalic.woff2 deleted file mode 100644 index 1d3a56f04..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ExtraLightItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Italic.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Italic.otf deleted file mode 100644 index ef591c84d..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Italic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Italic.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Italic.woff2 deleted file mode 100644 index 323fff464..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Italic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Light.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Light.otf deleted file mode 100644 index af3d9456f..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 deleted file mode 100644 index a84e87ff1..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-LightItalic.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-LightItalic.otf deleted file mode 100644 index 0a3b2484a..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-LightItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-LightItalic.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-LightItalic.woff2 deleted file mode 100644 index ea42ada47..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-LightItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Medium.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Medium.otf deleted file mode 100644 index f99385d31..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 deleted file mode 100644 index fe7a80937..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-MediumItalic.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-MediumItalic.otf deleted file mode 100644 index 22c4dddd5..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-MediumItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-MediumItalic.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-MediumItalic.woff2 deleted file mode 100644 index 2cb9267de..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-MediumItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Regular.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Regular.otf deleted file mode 100644 index e5b6bfed7..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 deleted file mode 100644 index f951c6f62..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.otf deleted file mode 100644 index 67f1c72b0..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 deleted file mode 100644 index 3cfd8fe77..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-SemiBoldItalic.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-SemiBoldItalic.otf deleted file mode 100644 index a3fee0928..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-SemiBoldItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-SemiBoldItalic.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-SemiBoldItalic.woff2 deleted file mode 100644 index d6cc73539..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-SemiBoldItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Text.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Text.otf deleted file mode 100644 index 30964569c..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Text.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Text.woff2 deleted file mode 100644 index 90ce9e421..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-TextItalic.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-TextItalic.otf deleted file mode 100644 index 39cf20284..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-TextItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-TextItalic.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-TextItalic.woff2 deleted file mode 100644 index 9f0789a81..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-TextItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Thin.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Thin.otf deleted file mode 100644 index 44f74b182..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Thin.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Thin.woff2 deleted file mode 100644 index 93916d2ee..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ThinItalic.otf b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ThinItalic.otf deleted file mode 100644 index 5e84b2368..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ThinItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ThinItalic.woff2 b/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ThinItalic.woff2 deleted file mode 100644 index 642b8d3fb..000000000 Binary files a/fluxer_static/fonts/IBMPlexMono/IBMPlexMono-ThinItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Bold.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Bold.otf deleted file mode 100644 index 5ae505768..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Bold.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Bold.woff2 deleted file mode 100644 index 93a6f8e2a..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-BoldItalic.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-BoldItalic.otf deleted file mode 100644 index 3e37d5cdd..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-BoldItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-BoldItalic.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-BoldItalic.woff2 deleted file mode 100644 index 80435e4b6..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-BoldItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ExtraLight.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ExtraLight.otf deleted file mode 100644 index e2fcec5c2..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ExtraLight.woff2 deleted file mode 100644 index cd422869f..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ExtraLightItalic.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ExtraLightItalic.otf deleted file mode 100644 index f1da88ba6..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ExtraLightItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ExtraLightItalic.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ExtraLightItalic.woff2 deleted file mode 100644 index 62d117cec..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ExtraLightItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Italic.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Italic.otf deleted file mode 100644 index c36951afc..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Italic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Italic.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Italic.woff2 deleted file mode 100644 index a6eaf6121..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Italic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Light.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Light.otf deleted file mode 100644 index 10fec520e..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Light.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Light.woff2 deleted file mode 100644 index 0d04f5d2f..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-LightItalic.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-LightItalic.otf deleted file mode 100644 index 21969b038..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-LightItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-LightItalic.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-LightItalic.woff2 deleted file mode 100644 index 0f70cbd3f..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-LightItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Medium.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Medium.otf deleted file mode 100644 index 02bb79248..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Medium.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Medium.woff2 deleted file mode 100644 index ba800e248..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-MediumItalic.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-MediumItalic.otf deleted file mode 100644 index 120fb2c26..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-MediumItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-MediumItalic.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-MediumItalic.woff2 deleted file mode 100644 index 3a95259a1..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-MediumItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Regular.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Regular.otf deleted file mode 100644 index 51b38a267..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Regular.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Regular.woff2 deleted file mode 100644 index a8d37da25..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-SemiBold.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-SemiBold.otf deleted file mode 100644 index 23e973406..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-SemiBold.woff2 deleted file mode 100644 index 5f0357e8f..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-SemiBoldItalic.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-SemiBoldItalic.otf deleted file mode 100644 index 422cb0ff1..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-SemiBoldItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-SemiBoldItalic.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-SemiBoldItalic.woff2 deleted file mode 100644 index ead492e26..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-SemiBoldItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Text.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Text.otf deleted file mode 100644 index 31de21261..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Text.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Text.woff2 deleted file mode 100644 index 2cd3a52b9..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-TextItalic.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-TextItalic.otf deleted file mode 100644 index 41bf42f95..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-TextItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-TextItalic.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-TextItalic.woff2 deleted file mode 100644 index c54bc6f54..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-TextItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Thin.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Thin.otf deleted file mode 100644 index f50f55342..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Thin.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Thin.woff2 deleted file mode 100644 index 608075e91..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ThinItalic.otf b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ThinItalic.otf deleted file mode 100644 index cd2f301bb..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ThinItalic.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ThinItalic.woff2 b/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ThinItalic.woff2 deleted file mode 100644 index 86ac0fb6a..000000000 Binary files a/fluxer_static/fonts/IBMPlexSans/IBMPlexSans-ThinItalic.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Bold.otf b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Bold.otf deleted file mode 100644 index 0194c3dcf..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Bold.woff2 b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Bold.woff2 deleted file mode 100644 index 1f4de5802..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-ExtraLight.otf b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-ExtraLight.otf deleted file mode 100644 index 2e81c3f84..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-ExtraLight.woff2 deleted file mode 100644 index 85c213c02..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Light.otf b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Light.otf deleted file mode 100644 index 80aeb9e8f..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Light.woff2 b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Light.woff2 deleted file mode 100644 index 9de64c6e8..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Medium.otf b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Medium.otf deleted file mode 100644 index 8c99b9131..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Medium.woff2 b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Medium.woff2 deleted file mode 100644 index e944f7c73..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Regular.otf b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Regular.otf deleted file mode 100644 index 4e7433c30..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Regular.woff2 b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Regular.woff2 deleted file mode 100644 index aafb5b2e6..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-SemiBold.otf b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-SemiBold.otf deleted file mode 100644 index 189893293..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-SemiBold.woff2 deleted file mode 100644 index b820ecacb..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Text.otf b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Text.otf deleted file mode 100644 index 545495a57..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Text.woff2 b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Text.woff2 deleted file mode 100644 index abdf104f2..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Thin.otf b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Thin.otf deleted file mode 100644 index b52b402ca..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Thin.woff2 b/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Thin.woff2 deleted file mode 100644 index 2fec17fca..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansArabic/IBMPlexSansArabic-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Bold.otf b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Bold.otf deleted file mode 100644 index f357db1f0..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Bold.woff2 b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Bold.woff2 deleted file mode 100644 index c78acf5e6..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-ExtraLight.otf b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-ExtraLight.otf deleted file mode 100644 index 9981288f4..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-ExtraLight.woff2 deleted file mode 100644 index d33377eaa..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Light.otf b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Light.otf deleted file mode 100644 index e848bd0c9..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Light.woff2 b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Light.woff2 deleted file mode 100644 index 72196e8d1..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Medium.otf b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Medium.otf deleted file mode 100644 index db282b154..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Medium.woff2 b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Medium.woff2 deleted file mode 100644 index e8897d48d..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Regular.otf b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Regular.otf deleted file mode 100644 index 8277aae1f..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Regular.woff2 b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Regular.woff2 deleted file mode 100644 index d413b6467..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-SemiBold.otf b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-SemiBold.otf deleted file mode 100644 index 86fd045a0..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-SemiBold.woff2 deleted file mode 100644 index 59ac99120..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Text.otf b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Text.otf deleted file mode 100644 index 7bb1f478e..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Text.woff2 b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Text.woff2 deleted file mode 100644 index 5ea37d712..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Thin.otf b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Thin.otf deleted file mode 100644 index dfacde844..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Thin.woff2 b/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Thin.woff2 deleted file mode 100644 index f0d999b30..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansDevanagari/IBMPlexSansDevanagari-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Bold.otf b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Bold.otf deleted file mode 100644 index b6a5c2644..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Bold.woff2 b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Bold.woff2 deleted file mode 100644 index 55a767ea1..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-ExtraLight.otf b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-ExtraLight.otf deleted file mode 100644 index 1f034d506..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-ExtraLight.woff2 deleted file mode 100644 index a590e147d..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Light.otf b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Light.otf deleted file mode 100644 index 2fd8ab32f..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Light.woff2 b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Light.woff2 deleted file mode 100644 index 9366a06b4..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Medium.otf b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Medium.otf deleted file mode 100644 index fab59fb7c..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Medium.woff2 b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Medium.woff2 deleted file mode 100644 index 357851636..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Regular.otf b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Regular.otf deleted file mode 100644 index 6665a751a..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Regular.woff2 b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Regular.woff2 deleted file mode 100644 index 25c0775ed..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-SemiBold.otf b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-SemiBold.otf deleted file mode 100644 index 4d5928c8f..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-SemiBold.woff2 deleted file mode 100644 index 655c3cf67..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Text.otf b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Text.otf deleted file mode 100644 index 330b66b98..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Text.woff2 b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Text.woff2 deleted file mode 100644 index bdbde432b..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Thin.otf b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Thin.otf deleted file mode 100644 index 97a72a02b..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Thin.woff2 b/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Thin.woff2 deleted file mode 100644 index c8118292c..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansHebrew/IBMPlexSansHebrew-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Bold.otf b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Bold.otf deleted file mode 100644 index 380df5374..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Bold.woff2 b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Bold.woff2 deleted file mode 100644 index 7445970da..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-ExtraLight.otf b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-ExtraLight.otf deleted file mode 100644 index ab5137d27..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-ExtraLight.woff2 deleted file mode 100644 index 9d4df96e9..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Light.otf b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Light.otf deleted file mode 100644 index 2d5127cc5..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Light.woff2 b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Light.woff2 deleted file mode 100644 index 01f3612a1..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Medium.otf b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Medium.otf deleted file mode 100644 index bc27c3423..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Medium.woff2 b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Medium.woff2 deleted file mode 100644 index 169aabbb7..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Regular.otf b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Regular.otf deleted file mode 100644 index 1e6b13eed..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Regular.woff2 b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Regular.woff2 deleted file mode 100644 index d46aeca4c..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-SemiBold.otf b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-SemiBold.otf deleted file mode 100644 index fb69ff8c9..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-SemiBold.woff2 deleted file mode 100644 index 6b5290c3e..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Text.otf b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Text.otf deleted file mode 100644 index 99942c913..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Text.woff2 b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Text.woff2 deleted file mode 100644 index 14e626641..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Thin.otf b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Thin.otf deleted file mode 100644 index f96a283c6..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Thin.woff2 b/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Thin.woff2 deleted file mode 100644 index 36d2e2d99..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/hinted/IBMPlexSansJP-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Bold.otf b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Bold.otf deleted file mode 100644 index 997cd45a5..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Bold.woff2 b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Bold.woff2 deleted file mode 100644 index 7445970da..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-ExtraLight.otf b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-ExtraLight.otf deleted file mode 100644 index 0b1ddddb6..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-ExtraLight.woff2 deleted file mode 100644 index 9d4df96e9..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Light.otf b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Light.otf deleted file mode 100644 index 8ecaa8914..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Light.woff2 b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Light.woff2 deleted file mode 100644 index 01f3612a1..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Medium.otf b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Medium.otf deleted file mode 100644 index d46d75d58..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Medium.woff2 b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Medium.woff2 deleted file mode 100644 index 169aabbb7..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Regular.otf b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Regular.otf deleted file mode 100644 index 227c60777..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Regular.woff2 b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Regular.woff2 deleted file mode 100644 index d46aeca4c..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-SemiBold.otf b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-SemiBold.otf deleted file mode 100644 index e1873df4e..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-SemiBold.woff2 deleted file mode 100644 index 6b5290c3e..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Text.otf b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Text.otf deleted file mode 100644 index 578e79394..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Text.woff2 b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Text.woff2 deleted file mode 100644 index 14e626641..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Thin.otf b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Thin.otf deleted file mode 100644 index 30849eec7..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Thin.woff2 b/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Thin.woff2 deleted file mode 100644 index 36d2e2d99..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansJP/unhinted/IBMPlexSansJP-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Bold.otf b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Bold.otf deleted file mode 100644 index 15d3ac45d..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Bold.woff2 b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Bold.woff2 deleted file mode 100644 index ca72e851b..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-ExtraLight.otf b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-ExtraLight.otf deleted file mode 100644 index 78adf6568..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-ExtraLight.woff2 deleted file mode 100644 index c1b05c8fe..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Light.otf b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Light.otf deleted file mode 100644 index 4d539ce02..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Light.woff2 b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Light.woff2 deleted file mode 100644 index db324702c..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Medium.otf b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Medium.otf deleted file mode 100644 index 2e6686846..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Medium.woff2 b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Medium.woff2 deleted file mode 100644 index 289bb2363..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Regular.otf b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Regular.otf deleted file mode 100644 index 72cccbf28..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Regular.woff2 b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Regular.woff2 deleted file mode 100644 index 9d9830af7..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-SemiBold.otf b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-SemiBold.otf deleted file mode 100644 index 6fd26fbf5..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-SemiBold.woff2 deleted file mode 100644 index d8395197f..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Text.otf b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Text.otf deleted file mode 100644 index f53cb3bb9..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Text.woff2 b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Text.woff2 deleted file mode 100644 index b2cb54d48..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Thin.otf b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Thin.otf deleted file mode 100644 index e21fb4884..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Thin.woff2 b/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Thin.woff2 deleted file mode 100644 index 6932b79a4..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansKR/IBMPlexSansKR-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Bold.otf b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Bold.otf deleted file mode 100644 index 24bc263b8..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Bold.woff2 b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Bold.woff2 deleted file mode 100644 index 89c4a2fc6..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-ExtraLight.otf b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-ExtraLight.otf deleted file mode 100644 index 2a283b966..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-ExtraLight.woff2 deleted file mode 100644 index 53696c753..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Light.otf b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Light.otf deleted file mode 100644 index 7d01a5fd2..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Light.woff2 b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Light.woff2 deleted file mode 100644 index c00f35fae..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Medium.otf b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Medium.otf deleted file mode 100644 index 37d91cd9b..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Medium.woff2 b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Medium.woff2 deleted file mode 100644 index 70a85ee1c..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Regular.otf b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Regular.otf deleted file mode 100644 index 1154023e8..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Regular.woff2 b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Regular.woff2 deleted file mode 100644 index 67da9922c..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-SemiBold.otf b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-SemiBold.otf deleted file mode 100644 index 7a808849a..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-SemiBold.woff2 deleted file mode 100644 index 236ed3d80..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Text.otf b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Text.otf deleted file mode 100644 index 2203328f0..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Text.woff2 b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Text.woff2 deleted file mode 100644 index efc93c8fb..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Thin.otf b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Thin.otf deleted file mode 100644 index 743ba185a..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Thin.woff2 b/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Thin.woff2 deleted file mode 100644 index 5e364cab0..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/hinted/IBMPlexSansSC-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Bold.otf b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Bold.otf deleted file mode 100644 index d25175de0..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Bold.woff2 b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Bold.woff2 deleted file mode 100644 index 89c4a2fc6..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-ExtraLight.otf b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-ExtraLight.otf deleted file mode 100644 index 2e5d4fa77..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-ExtraLight.woff2 deleted file mode 100644 index 53696c753..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Light.otf b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Light.otf deleted file mode 100644 index f69e7df7f..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Light.woff2 b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Light.woff2 deleted file mode 100644 index c00f35fae..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Medium.otf b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Medium.otf deleted file mode 100644 index d5db87a69..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Medium.woff2 b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Medium.woff2 deleted file mode 100644 index 70a85ee1c..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Regular.otf b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Regular.otf deleted file mode 100644 index 7389facaf..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Regular.woff2 b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Regular.woff2 deleted file mode 100644 index 67da9922c..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-SemiBold.otf b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-SemiBold.otf deleted file mode 100644 index 5f2fc8239..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-SemiBold.woff2 deleted file mode 100644 index 236ed3d80..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Text.otf b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Text.otf deleted file mode 100644 index f8fda8b11..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Text.woff2 b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Text.woff2 deleted file mode 100644 index efc93c8fb..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Thin.otf b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Thin.otf deleted file mode 100644 index 29212e7cd..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Thin.woff2 b/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Thin.woff2 deleted file mode 100644 index 5e364cab0..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansSC/unhinted/IBMPlexSansSC-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Bold.otf b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Bold.otf deleted file mode 100644 index bb1a2ae05..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Bold.woff2 b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Bold.woff2 deleted file mode 100644 index 5234b5f8c..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-ExtraLight.otf b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-ExtraLight.otf deleted file mode 100644 index 8b505b94d..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-ExtraLight.woff2 deleted file mode 100644 index 9903601b4..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Light.otf b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Light.otf deleted file mode 100644 index ab5040a83..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Light.woff2 b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Light.woff2 deleted file mode 100644 index 0fad9c4a4..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Medium.otf b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Medium.otf deleted file mode 100644 index caece96bb..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Medium.woff2 b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Medium.woff2 deleted file mode 100644 index d595070e7..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Regular.otf b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Regular.otf deleted file mode 100644 index 21830536c..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Regular.woff2 b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Regular.woff2 deleted file mode 100644 index a4970b966..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-SemiBold.otf b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-SemiBold.otf deleted file mode 100644 index f658c769e..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-SemiBold.woff2 deleted file mode 100644 index 46e8122c3..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Text.otf b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Text.otf deleted file mode 100644 index 37e33387e..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Text.woff2 b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Text.woff2 deleted file mode 100644 index 56fe3334a..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Thin.otf b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Thin.otf deleted file mode 100644 index cfa2261cd..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Thin.woff2 b/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Thin.woff2 deleted file mode 100644 index 06bea0ee4..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/hinted/IBMPlexSansTC-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Bold.otf b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Bold.otf deleted file mode 100644 index fc999d6d6..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Bold.woff2 b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Bold.woff2 deleted file mode 100644 index 5234b5f8c..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-ExtraLight.otf b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-ExtraLight.otf deleted file mode 100644 index 33f3a4f2b..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-ExtraLight.woff2 deleted file mode 100644 index 9903601b4..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Light.otf b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Light.otf deleted file mode 100644 index b11aa3168..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Light.woff2 b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Light.woff2 deleted file mode 100644 index 0fad9c4a4..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Medium.otf b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Medium.otf deleted file mode 100644 index ef52116b2..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Medium.woff2 b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Medium.woff2 deleted file mode 100644 index d595070e7..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Regular.otf b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Regular.otf deleted file mode 100644 index fbe3bd0b8..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Regular.woff2 b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Regular.woff2 deleted file mode 100644 index a4970b966..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-SemiBold.otf b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-SemiBold.otf deleted file mode 100644 index 859a52770..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-SemiBold.woff2 deleted file mode 100644 index 46e8122c3..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Text.otf b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Text.otf deleted file mode 100644 index 102b00eea..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Text.woff2 b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Text.woff2 deleted file mode 100644 index 56fe3334a..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Thin.otf b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Thin.otf deleted file mode 100644 index ee132905d..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Thin.woff2 b/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Thin.woff2 deleted file mode 100644 index 06bea0ee4..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansTC/unhinted/IBMPlexSansTC-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Bold.otf b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Bold.otf deleted file mode 100644 index 11929b685..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Bold.woff2 b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Bold.woff2 deleted file mode 100644 index bd70e835d..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-ExtraLight.otf b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-ExtraLight.otf deleted file mode 100644 index 25329494c..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-ExtraLight.woff2 deleted file mode 100644 index 3661444f1..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Light.otf b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Light.otf deleted file mode 100644 index 8cae92bd2..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Light.woff2 b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Light.woff2 deleted file mode 100644 index d0e8c9194..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Medium.otf b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Medium.otf deleted file mode 100644 index 9d2e46e14..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Medium.woff2 b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Medium.woff2 deleted file mode 100644 index 7ba2b6f04..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Regular.otf b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Regular.otf deleted file mode 100644 index faa9b1723..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Regular.woff2 b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Regular.woff2 deleted file mode 100644 index d3185305e..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-SemiBold.otf b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-SemiBold.otf deleted file mode 100644 index c3c30a99e..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-SemiBold.woff2 deleted file mode 100644 index 2fc1d7728..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Text.otf b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Text.otf deleted file mode 100644 index fb18ff7b8..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Text.woff2 b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Text.woff2 deleted file mode 100644 index cb88be5ff..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Thin.otf b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Thin.otf deleted file mode 100644 index d8dd9b67e..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Thin.woff2 b/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Thin.woff2 deleted file mode 100644 index f8b13d434..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThai/IBMPlexSansThai-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Bold.otf b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Bold.otf deleted file mode 100644 index 5229fd13a..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Bold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Bold.woff2 b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Bold.woff2 deleted file mode 100644 index dda6ce157..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Bold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-ExtraLight.otf b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-ExtraLight.otf deleted file mode 100644 index 00bf2ea38..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-ExtraLight.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-ExtraLight.woff2 b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-ExtraLight.woff2 deleted file mode 100644 index 13861902e..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-ExtraLight.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Light.otf b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Light.otf deleted file mode 100644 index 5c117a1ca..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Light.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Light.woff2 b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Light.woff2 deleted file mode 100644 index 4b656ea48..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Light.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Medium.otf b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Medium.otf deleted file mode 100644 index 2c966ea21..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Medium.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Medium.woff2 b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Medium.woff2 deleted file mode 100644 index 228212322..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Medium.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Regular.otf b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Regular.otf deleted file mode 100644 index 848512cc6..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Regular.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Regular.woff2 b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Regular.woff2 deleted file mode 100644 index 1135a1a10..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Regular.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-SemiBold.otf b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-SemiBold.otf deleted file mode 100644 index 282408234..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-SemiBold.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-SemiBold.woff2 b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-SemiBold.woff2 deleted file mode 100644 index 5db783cf9..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-SemiBold.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Text.otf b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Text.otf deleted file mode 100644 index d8e9e8f77..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Text.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Text.woff2 b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Text.woff2 deleted file mode 100644 index f536ff451..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Text.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Thin.otf b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Thin.otf deleted file mode 100644 index 09f0ff8b5..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Thin.otf and /dev/null differ diff --git a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Thin.woff2 b/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Thin.woff2 deleted file mode 100644 index e34c41751..000000000 Binary files a/fluxer_static/fonts/IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Thin.woff2 and /dev/null differ diff --git a/fluxer_static/fonts/LICENSE-BRICOLAGE-GROTESQUE.txt b/fluxer_static/fonts/LICENSE-BRICOLAGE-GROTESQUE.txt deleted file mode 100644 index 49135ef7a..000000000 --- a/fluxer_static/fonts/LICENSE-BRICOLAGE-GROTESQUE.txt +++ /dev/null @@ -1,93 +0,0 @@ -Copyright 2022 The Bricolage Grotesque Project Authors (https://github.com/ateliertriay/bricolage) - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/fluxer_static/fonts/NOTICE.md b/fluxer_static/fonts/NOTICE.md deleted file mode 100644 index 17934a346..000000000 --- a/fluxer_static/fonts/NOTICE.md +++ /dev/null @@ -1,84 +0,0 @@ -# Font licenses - -The font files in this directory are third-party font software. The CSS files -(`ibm-plex.css`, `bricolage.css`) are Fluxer-authored configuration for serving -those fonts. - -## IBM Plex - -IBM Plex is licensed under the SIL Open Font License 1.1, copied in -`LICENSE-IBM-PLEX.txt`. Its copyright line declares Reserved Font Name "Plex". - -The served WOFF2 files are sourced from the latest per-family npm packages: - -- **`@ibm/plex-sans@1.1.0`** (`IBMPlexSans/`) -- **`@ibm/plex-mono@2.5.0`** (`IBMPlexMono/`) -- **`@ibm/plex-sans-arabic@1.1.0`** (`IBMPlexSansArabic/`) -- **`@ibm/plex-sans-devanagari@1.1.0`** (`IBMPlexSansDevanagari/`) -- **`@ibm/plex-sans-hebrew@1.1.0`** (`IBMPlexSansHebrew/`) -- **`@ibm/plex-sans-thai@1.1.0`** (`IBMPlexSansThai/`) -- **`@ibm/plex-sans-thai-looped@1.1.0`** (`IBMPlexSansThaiLooped/`) -- **`@ibm/plex-sans-jp@3.0.0`** (`IBMPlexSansJP/`) -- **`@ibm/plex-sans-kr@1.1.0`** (`IBMPlexSansKR/`) -- **`@ibm/plex-sans-sc@1.1.0`** (`IBMPlexSansSC/`) -- **`@ibm/plex-sans-tc@1.1.1`** (`IBMPlexSansTC/`) - -### Fluxer modifications - -The upstream static WOFF2 files ship a staged `gasp` table -(`{8: 10, 16: 7 or 5, 65535: 15}`) that withholds symmetric smoothing (and, for -some scripts, grayscale) between 9 and 16 ppem. Browsers that honor `gasp`, -notably Firefox and Windows DirectWrite, then render the affected weights with -harsh, aliased edges at typical UI sizes, while macOS and Chrome look fine. There -is no CSS-level override for `gasp`, so the table is corrected in the font binary. - -Each served WOFF2 in the families listed below has its `gasp` table normalized to -`{8: 10, 65535: 15}` (grid-fit plus grayscale plus symmetric smoothing from 9 ppem -up). Outlines, hand-hinting (`fpgm`, `prep`, `cvt`), glyph coverage, and vertical -metrics are unchanged. - -Because the OFL reserves the name "Plex", a Modified Version may not present that -name to users. The modified font binaries are therefore renamed in their identity -name records (family, full, PostScript, and typographic-family fields): - -- **IBM Plex Sans** to **Fluxer Sans** -- **IBM Plex Mono** to **Fluxer Mono** -- **IBM Plex Sans Arabic** to **Fluxer Sans Arabic** -- **IBM Plex Sans Devanagari** to **Fluxer Sans Devanagari** -- **IBM Plex Sans Hebrew** to **Fluxer Sans Hebrew** -- **IBM Plex Sans Thai** to **Fluxer Sans Thai** -- **IBM Plex Sans Thai Looped** to **Fluxer Sans Thai Looped** - -The copyright, license, trademark, manufacturer, designer, and vendor name records -inside every font are preserved unchanged; only the `gasp` table and the identity -name records were altered. File and directory names keep their upstream form -(`IBMPlexSans/IBMPlexSans-Regular.woff2`), since OFL clause 3 concerns the font -name presented to users, not file paths. - -### Backward-compatibility aliases - -`ibm-plex.css` declares each modified family under both its new **Fluxer** name -(canonical) and its legacy **IBM Plex** name, with both `@font-face` entries -pointing at the same corrected WOFF2 files. This keeps any existing references to -the old names (cached app shells, saved user themes, external surfaces) working, -and they receive the same rendering fix. The redistributed font software itself -carries only the compliant Fluxer name; the legacy name exists solely as CSS -configuration, not as a font name baked into a distributed binary. - -### Unmodified families - -These keep the at-small-sizes behavior already fixed upstream (CJK ships -`{…, 65535: 15}` from 8 ppem, Korean ships no `gasp`), so they are served -unmodified and retain their original IBM Plex names: - -- **IBM Plex Sans JP**, **IBM Plex Sans KR**, **IBM Plex Sans SC**, **IBM Plex Sans TC** - -The `.otf` files in each family directory are the unmodified upstream originals and -are not referenced by any CSS; only the `.woff2` files are served. - -## Bricolage Grotesque - -`@fontsource/bricolage-grotesque@5.2.10` (`BricolageGrotesque/`), licensed under -the SIL Open Font License 1.1, copied in `LICENSE-BRICOLAGE-GROTESQUE.txt`. It has -no reserved font name, already ships a smooth `gasp` table (`{65535: 15}`), and is -served unmodified. diff --git a/fluxer_static/fonts/bricolage.css b/fluxer_static/fonts/bricolage.css deleted file mode 100644 index a993f1755..000000000 --- a/fluxer_static/fonts/bricolage.css +++ /dev/null @@ -1,54 +0,0 @@ -/* SPDX-License-Identifier: AGPL-3.0-or-later */ - -@font-face { - font-family: 'Bricolage Grotesque'; - src: url('./BricolageGrotesque/BricolageGrotesque-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Bricolage Grotesque'; - src: url('./BricolageGrotesque/BricolageGrotesque-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Bricolage Grotesque'; - src: url('./BricolageGrotesque/BricolageGrotesque-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Bricolage Grotesque'; - src: url('./BricolageGrotesque/BricolageGrotesque-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Bricolage Grotesque'; - src: url('./BricolageGrotesque/BricolageGrotesque-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Bricolage Grotesque'; - src: url('./BricolageGrotesque/BricolageGrotesque-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Bricolage Grotesque'; - src: url('./BricolageGrotesque/BricolageGrotesque-ExtraBold.woff2?v=3') format('woff2'); - font-weight: 800; - font-style: normal; - font-display: swap; -} -:root { - --font-bricolage: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; -} diff --git a/fluxer_static/fonts/ibm-plex.css b/fluxer_static/fonts/ibm-plex.css deleted file mode 100644 index 3dae2973b..000000000 --- a/fluxer_static/fonts/ibm-plex.css +++ /dev/null @@ -1,1287 +0,0 @@ -/* SPDX-License-Identifier: AGPL-3.0-or-later */ - -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-ThinItalic.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-ExtraLightItalic.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-LightItalic.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Italic.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-TextItalic.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-MediumItalic.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-SemiBoldItalic.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans'; - src: url('./IBMPlexSans/IBMPlexSans-BoldItalic.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-ThinItalic.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-ExtraLightItalic.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-LightItalic.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Italic.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-TextItalic.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-MediumItalic.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-SemiBoldItalic.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans'; - src: url('./IBMPlexSans/IBMPlexSans-BoldItalic.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-ThinItalic.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-ExtraLightItalic.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-LightItalic.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Italic.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-TextItalic.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-MediumItalic.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-SemiBoldItalic.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Mono'; - src: url('./IBMPlexMono/IBMPlexMono-BoldItalic.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-ThinItalic.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-ExtraLightItalic.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-LightItalic.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Italic.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-TextItalic.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-MediumItalic.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-SemiBoldItalic.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Mono'; - src: url('./IBMPlexMono/IBMPlexMono-BoldItalic.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: italic; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Arabic'; - src: url('./IBMPlexSansArabic/IBMPlexSansArabic-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Devanagari'; - src: url('./IBMPlexSansDevanagari/IBMPlexSansDevanagari-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Hebrew'; - src: url('./IBMPlexSansHebrew/IBMPlexSansHebrew-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai'; - src: url('./IBMPlexSansThai/IBMPlexSansThai-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'Fluxer Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans Thai Looped'; - src: url('./IBMPlexSansThaiLooped/IBMPlexSansThaiLooped-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans JP'; - src: url('./IBMPlexSansJP/hinted/IBMPlexSansJP-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans JP'; - src: url('./IBMPlexSansJP/hinted/IBMPlexSansJP-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans JP'; - src: url('./IBMPlexSansJP/hinted/IBMPlexSansJP-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans JP'; - src: url('./IBMPlexSansJP/hinted/IBMPlexSansJP-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans JP'; - src: url('./IBMPlexSansJP/hinted/IBMPlexSansJP-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans JP'; - src: url('./IBMPlexSansJP/hinted/IBMPlexSansJP-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans JP'; - src: url('./IBMPlexSansJP/hinted/IBMPlexSansJP-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans JP'; - src: url('./IBMPlexSansJP/hinted/IBMPlexSansJP-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans KR'; - src: url('./IBMPlexSansKR/IBMPlexSansKR-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans KR'; - src: url('./IBMPlexSansKR/IBMPlexSansKR-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans KR'; - src: url('./IBMPlexSansKR/IBMPlexSansKR-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans KR'; - src: url('./IBMPlexSansKR/IBMPlexSansKR-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans KR'; - src: url('./IBMPlexSansKR/IBMPlexSansKR-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans KR'; - src: url('./IBMPlexSansKR/IBMPlexSansKR-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans KR'; - src: url('./IBMPlexSansKR/IBMPlexSansKR-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans KR'; - src: url('./IBMPlexSansKR/IBMPlexSansKR-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans SC'; - src: url('./IBMPlexSansSC/hinted/IBMPlexSansSC-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans SC'; - src: url('./IBMPlexSansSC/hinted/IBMPlexSansSC-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans SC'; - src: url('./IBMPlexSansSC/hinted/IBMPlexSansSC-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans SC'; - src: url('./IBMPlexSansSC/hinted/IBMPlexSansSC-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans SC'; - src: url('./IBMPlexSansSC/hinted/IBMPlexSansSC-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans SC'; - src: url('./IBMPlexSansSC/hinted/IBMPlexSansSC-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans SC'; - src: url('./IBMPlexSansSC/hinted/IBMPlexSansSC-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans SC'; - src: url('./IBMPlexSansSC/hinted/IBMPlexSansSC-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans TC'; - src: url('./IBMPlexSansTC/hinted/IBMPlexSansTC-Thin.woff2?v=3') format('woff2'); - font-weight: 100; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans TC'; - src: url('./IBMPlexSansTC/hinted/IBMPlexSansTC-ExtraLight.woff2?v=3') format('woff2'); - font-weight: 200; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans TC'; - src: url('./IBMPlexSansTC/hinted/IBMPlexSansTC-Light.woff2?v=3') format('woff2'); - font-weight: 300; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans TC'; - src: url('./IBMPlexSansTC/hinted/IBMPlexSansTC-Regular.woff2?v=3') format('woff2'); - font-weight: 400; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans TC'; - src: url('./IBMPlexSansTC/hinted/IBMPlexSansTC-Text.woff2?v=3') format('woff2'); - font-weight: 450; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans TC'; - src: url('./IBMPlexSansTC/hinted/IBMPlexSansTC-Medium.woff2?v=3') format('woff2'); - font-weight: 500; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans TC'; - src: url('./IBMPlexSansTC/hinted/IBMPlexSansTC-SemiBold.woff2?v=3') format('woff2'); - font-weight: 600; - font-style: normal; - font-display: swap; -} -@font-face { - font-family: 'IBM Plex Sans TC'; - src: url('./IBMPlexSansTC/hinted/IBMPlexSansTC-Bold.woff2?v=3') format('woff2'); - font-weight: 700; - font-style: normal; - font-display: swap; -} -:root { - --font-sans: 'Fluxer Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; - --font-mono: 'Fluxer Mono', 'Menlo', 'Monaco', 'Courier New', monospace; -} -:root:lang(ja) { - --font-sans: - 'IBM Plex Sans JP', 'Fluxer Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Hiragino Sans', - 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif; -} -:root:lang(ko) { - --font-sans: - 'IBM Plex Sans KR', 'Fluxer Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Malgun Gothic', - 'Apple SD Gothic Neo', sans-serif; -} -:root:lang(zh-CN), -:root:lang(zh-Hans) { - --font-sans: - 'IBM Plex Sans SC', 'Fluxer Sans', system-ui, -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', - sans-serif; -} -:root:lang(zh-Hant-TW), -:root:lang(zh-TW) { - --font-sans: - 'IBM Plex Sans TC', 'Fluxer Sans', system-ui, -apple-system, BlinkMacSystemFont, 'PingFang TC', - 'Microsoft JhengHei', sans-serif; -} -:root:lang(zh-HK), -:root:lang(zh-Hant-HK) { - --font-sans: - 'IBM Plex Sans TC', 'Fluxer Sans', system-ui, -apple-system, BlinkMacSystemFont, 'PingFang HK', - 'Microsoft JhengHei', sans-serif; -} -:root:lang(ar) { - --font-sans: - 'Fluxer Sans Arabic', 'Fluxer Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Geeza Pro', - 'Arabic Typesetting', sans-serif; -} -:root:lang(he) { - --font-sans: - 'Fluxer Sans Hebrew', 'Fluxer Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Arial Hebrew', sans-serif; -} -:root:lang(hi), -:root:lang(mr), -:root:lang(ne), -:root:lang(sa) { - --font-sans: - 'Fluxer Sans Devanagari', 'Fluxer Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Noto Sans Devanagari', - sans-serif; -} -:root:lang(th) { - --font-sans: - 'Fluxer Sans Thai Looped', 'Fluxer Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Thonburi', sans-serif; -} diff --git a/fluxer_static/fonts/LICENSE-IBM-PLEX.txt b/packages/fonts/LICENSE-IBM-PLEX.txt similarity index 97% rename from fluxer_static/fonts/LICENSE-IBM-PLEX.txt rename to packages/fonts/LICENSE-IBM-PLEX.txt index c35c4c618..01497cc60 100644 --- a/fluxer_static/fonts/LICENSE-IBM-PLEX.txt +++ b/packages/fonts/LICENSE-IBM-PLEX.txt @@ -1,93 +1,93 @@ -Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" - -This Font Software is licensed under the SIL Open Font License, Version 1.1. - -This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. +Copyright © 2017 IBM Corp. with Reserved Font Name "Plex" + +This Font Software is licensed under the SIL Open Font License, Version 1.1. + +This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/packages/fonts/NOTICE.md b/packages/fonts/NOTICE.md new file mode 100644 index 000000000..ac2b094ea --- /dev/null +++ b/packages/fonts/NOTICE.md @@ -0,0 +1,32 @@ +# Font licences + +The WOFF2 files in `files/` are Modified Versions of IBM Plex. + +Copyright © 2017 IBM Corp. with Reserved Font Name "Plex". + +IBM Plex is licensed under the SIL Open Font License, Version 1.1, reproduced in +`LICENSE-IBM-PLEX.txt`. That licence accompanies these files and applies to them. + +## Modifications + +Clause 3 of the licence reserves the name "Plex", so these Modified Versions do +not present it. The family, full, PostScript and typographic-family name records +were changed: + +| Original | Modified Version | +| --- | --- | +| IBM Plex Sans | Fluxer Sans | +| IBM Plex Mono | Fluxer Mono | +| IBM Plex Sans Arabic | Fluxer Sans Arabic | +| IBM Plex Sans Devanagari | Fluxer Sans Devanagari | +| IBM Plex Sans Hebrew | Fluxer Sans Hebrew | +| IBM Plex Sans Thai | Fluxer Sans Thai | +| IBM Plex Sans Thai Looped | Fluxer Sans Thai Looped | +| IBM Plex Sans JP | Fluxer Sans JP | +| IBM Plex Sans KR | Fluxer Sans KR | +| IBM Plex Sans SC | Fluxer Sans SC | +| IBM Plex Sans TC | Fluxer Sans TC | + +The `gasp` table was normalised, and the JP, KR, SC and TC families were split +into subsets. The copyright, licence, trademark, manufacturer, designer and +vendor name records are unchanged. diff --git a/packages/fonts/css/fluxer-mono.css b/packages/fonts/css/fluxer-mono.css new file mode 100644 index 000000000..3f8f9a070 --- /dev/null +++ b/packages/fonts/css/fluxer-mono.css @@ -0,0 +1,115 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ +/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */ + +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-Thin.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-ExtraLight.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-Light.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-Regular.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-Text.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-Medium.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-SemiBold.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-Bold.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-ThinItalic.woff2') format('woff2'); + font-weight: 100; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-ExtraLightItalic.woff2') format('woff2'); + font-weight: 200; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-LightItalic.woff2') format('woff2'); + font-weight: 300; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-Italic.woff2') format('woff2'); + font-weight: 400; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-TextItalic.woff2') format('woff2'); + font-weight: 450; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-MediumItalic.woff2') format('woff2'); + font-weight: 500; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-SemiBoldItalic.woff2') format('woff2'); + font-weight: 600; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Mono'; + src: url('../files/FluxerMono/FluxerMono-BoldItalic.woff2') format('woff2'); + font-weight: 700; + font-style: italic; + font-display: swap; +} diff --git a/packages/fonts/css/fluxer-sans.css b/packages/fonts/css/fluxer-sans.css new file mode 100644 index 000000000..d5aeb0353 --- /dev/null +++ b/packages/fonts/css/fluxer-sans.css @@ -0,0 +1,115 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ +/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */ + +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-Thin.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-ExtraLight.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-Light.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-Regular.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-Text.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-Medium.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-SemiBold.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-Bold.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-ThinItalic.woff2') format('woff2'); + font-weight: 100; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-ExtraLightItalic.woff2') format('woff2'); + font-weight: 200; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-LightItalic.woff2') format('woff2'); + font-weight: 300; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-Italic.woff2') format('woff2'); + font-weight: 400; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-TextItalic.woff2') format('woff2'); + font-weight: 450; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-MediumItalic.woff2') format('woff2'); + font-weight: 500; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-SemiBoldItalic.woff2') format('woff2'); + font-weight: 600; + font-style: italic; + font-display: swap; +} +@font-face { + font-family: 'Fluxer Sans'; + src: url('../files/FluxerSans/FluxerSans-BoldItalic.woff2') format('woff2'); + font-weight: 700; + font-style: italic; + font-display: swap; +} diff --git a/packages/fonts/css/locale-fallbacks.css b/packages/fonts/css/locale-fallbacks.css new file mode 100644 index 000000000..7fd1aca40 --- /dev/null +++ b/packages/fonts/css/locale-fallbacks.css @@ -0,0 +1,64 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ +/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */ + + +:root:lang(ja) { + --font-sans: + 'Fluxer Sans', 'Fluxer Sans JP', 'Fluxer Sans Arabic', 'Fluxer Sans Hebrew', 'Fluxer Sans Devanagari', + 'Fluxer Sans Thai Looped', 'Fluxer Sans SC', 'Fluxer Sans TC', 'Fluxer Sans KR', system-ui, -apple-system, + BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif; +} +:root:lang(ko) { + --font-sans: + 'Fluxer Sans', 'Fluxer Sans KR', 'Fluxer Sans Arabic', 'Fluxer Sans Hebrew', 'Fluxer Sans Devanagari', + 'Fluxer Sans Thai Looped', 'Fluxer Sans SC', 'Fluxer Sans TC', 'Fluxer Sans JP', system-ui, -apple-system, + BlinkMacSystemFont, 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif; +} +:root:lang(zh-CN), +:root:lang(zh-Hans) { + --font-sans: + 'Fluxer Sans', 'Fluxer Sans SC', 'Fluxer Sans Arabic', 'Fluxer Sans Hebrew', 'Fluxer Sans Devanagari', + 'Fluxer Sans Thai Looped', 'Fluxer Sans TC', 'Fluxer Sans JP', 'Fluxer Sans KR', system-ui, -apple-system, + BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif; +} +:root:lang(zh-Hant-TW), +:root:lang(zh-TW) { + --font-sans: + 'Fluxer Sans', 'Fluxer Sans TC', 'Fluxer Sans Arabic', 'Fluxer Sans Hebrew', 'Fluxer Sans Devanagari', + 'Fluxer Sans Thai Looped', 'Fluxer Sans SC', 'Fluxer Sans JP', 'Fluxer Sans KR', system-ui, -apple-system, + BlinkMacSystemFont, 'PingFang TC', 'Microsoft JhengHei', sans-serif; +} +:root:lang(zh-HK), +:root:lang(zh-Hant-HK) { + --font-sans: + 'Fluxer Sans', 'Fluxer Sans TC', 'Fluxer Sans Arabic', 'Fluxer Sans Hebrew', 'Fluxer Sans Devanagari', + 'Fluxer Sans Thai Looped', 'Fluxer Sans SC', 'Fluxer Sans JP', 'Fluxer Sans KR', system-ui, -apple-system, + BlinkMacSystemFont, 'PingFang HK', 'Microsoft JhengHei', sans-serif; +} +:root:lang(ar) { + --font-sans: + 'Fluxer Sans', 'Fluxer Sans Arabic', 'Fluxer Sans Hebrew', 'Fluxer Sans Devanagari', 'Fluxer Sans Thai Looped', + 'Fluxer Sans SC', 'Fluxer Sans TC', 'Fluxer Sans JP', 'Fluxer Sans KR', system-ui, -apple-system, + BlinkMacSystemFont, 'Segoe UI', 'Geeza Pro', 'Arabic Typesetting', sans-serif; +} +:root:lang(he) { + --font-sans: + 'Fluxer Sans', 'Fluxer Sans Hebrew', 'Fluxer Sans Arabic', 'Fluxer Sans Devanagari', 'Fluxer Sans Thai Looped', + 'Fluxer Sans SC', 'Fluxer Sans TC', 'Fluxer Sans JP', 'Fluxer Sans KR', system-ui, -apple-system, + BlinkMacSystemFont, 'Segoe UI', 'Arial Hebrew', sans-serif; +} +:root:lang(hi), +:root:lang(mr), +:root:lang(ne), +:root:lang(sa) { + --font-sans: + 'Fluxer Sans', 'Fluxer Sans Devanagari', 'Fluxer Sans Arabic', 'Fluxer Sans Hebrew', 'Fluxer Sans Thai Looped', + 'Fluxer Sans SC', 'Fluxer Sans TC', 'Fluxer Sans JP', 'Fluxer Sans KR', system-ui, -apple-system, + BlinkMacSystemFont, 'Nirmala UI', 'Noto Sans Devanagari', sans-serif; +} +:root:lang(th) { + --font-sans: + 'Fluxer Sans', 'Fluxer Sans Thai Looped', 'Fluxer Sans Arabic', 'Fluxer Sans Hebrew', 'Fluxer Sans Devanagari', + 'Fluxer Sans SC', 'Fluxer Sans TC', 'Fluxer Sans JP', 'Fluxer Sans KR', system-ui, -apple-system, + BlinkMacSystemFont, 'Leelawadee UI', 'Thonburi', sans-serif; +} diff --git a/packages/fonts/css/script-arabic.css b/packages/fonts/css/script-arabic.css new file mode 100644 index 000000000..02c892953 --- /dev/null +++ b/packages/fonts/css/script-arabic.css @@ -0,0 +1,67 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ +/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */ + +@font-face { + font-family: 'Fluxer Sans Arabic'; + src: url('../files/FluxerSansArabic/FluxerSansArabic-Thin.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC; +} +@font-face { + font-family: 'Fluxer Sans Arabic'; + src: url('../files/FluxerSansArabic/FluxerSansArabic-ExtraLight.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC; +} +@font-face { + font-family: 'Fluxer Sans Arabic'; + src: url('../files/FluxerSansArabic/FluxerSansArabic-Light.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC; +} +@font-face { + font-family: 'Fluxer Sans Arabic'; + src: url('../files/FluxerSansArabic/FluxerSansArabic-Regular.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC; +} +@font-face { + font-family: 'Fluxer Sans Arabic'; + src: url('../files/FluxerSansArabic/FluxerSansArabic-Text.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC; +} +@font-face { + font-family: 'Fluxer Sans Arabic'; + src: url('../files/FluxerSansArabic/FluxerSansArabic-Medium.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC; +} +@font-face { + font-family: 'Fluxer Sans Arabic'; + src: url('../files/FluxerSansArabic/FluxerSansArabic-SemiBold.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC; +} +@font-face { + font-family: 'Fluxer Sans Arabic'; + src: url('../files/FluxerSansArabic/FluxerSansArabic-Bold.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC; +} diff --git a/packages/fonts/css/script-devanagari.css b/packages/fonts/css/script-devanagari.css new file mode 100644 index 000000000..388a7aff4 --- /dev/null +++ b/packages/fonts/css/script-devanagari.css @@ -0,0 +1,67 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ +/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */ + +@font-face { + font-family: 'Fluxer Sans Devanagari'; + src: url('../files/FluxerSansDevanagari/FluxerSansDevanagari-Thin.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Devanagari'; + src: url('../files/FluxerSansDevanagari/FluxerSansDevanagari-ExtraLight.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Devanagari'; + src: url('../files/FluxerSansDevanagari/FluxerSansDevanagari-Light.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Devanagari'; + src: url('../files/FluxerSansDevanagari/FluxerSansDevanagari-Regular.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Devanagari'; + src: url('../files/FluxerSansDevanagari/FluxerSansDevanagari-Text.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Devanagari'; + src: url('../files/FluxerSansDevanagari/FluxerSansDevanagari-Medium.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Devanagari'; + src: url('../files/FluxerSansDevanagari/FluxerSansDevanagari-SemiBold.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Devanagari'; + src: url('../files/FluxerSansDevanagari/FluxerSansDevanagari-Bold.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02; +} diff --git a/packages/fonts/css/script-hebrew.css b/packages/fonts/css/script-hebrew.css new file mode 100644 index 000000000..531758acb --- /dev/null +++ b/packages/fonts/css/script-hebrew.css @@ -0,0 +1,67 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ +/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */ + +@font-face { + font-family: 'Fluxer Sans Hebrew'; + src: url('../files/FluxerSansHebrew/FluxerSansHebrew-Thin.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F; +} +@font-face { + font-family: 'Fluxer Sans Hebrew'; + src: url('../files/FluxerSansHebrew/FluxerSansHebrew-ExtraLight.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F; +} +@font-face { + font-family: 'Fluxer Sans Hebrew'; + src: url('../files/FluxerSansHebrew/FluxerSansHebrew-Light.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F; +} +@font-face { + font-family: 'Fluxer Sans Hebrew'; + src: url('../files/FluxerSansHebrew/FluxerSansHebrew-Regular.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F; +} +@font-face { + font-family: 'Fluxer Sans Hebrew'; + src: url('../files/FluxerSansHebrew/FluxerSansHebrew-Text.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F; +} +@font-face { + font-family: 'Fluxer Sans Hebrew'; + src: url('../files/FluxerSansHebrew/FluxerSansHebrew-Medium.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F; +} +@font-face { + font-family: 'Fluxer Sans Hebrew'; + src: url('../files/FluxerSansHebrew/FluxerSansHebrew-SemiBold.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F; +} +@font-face { + font-family: 'Fluxer Sans Hebrew'; + src: url('../files/FluxerSansHebrew/FluxerSansHebrew-Bold.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F; +} diff --git a/packages/fonts/css/script-jp.css b/packages/fonts/css/script-jp.css new file mode 100644 index 000000000..989bfb762 --- /dev/null +++ b/packages/fonts/css/script-jp.css @@ -0,0 +1,2883 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ +/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */ + +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.000.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.000.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.000.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.000.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.000.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.000.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.000.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.000.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.001.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.001.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.001.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.001.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.001.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.001.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.001.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.001.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.002.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.002.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.002.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.002.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.002.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.002.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.002.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.002.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.003.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.003.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.003.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.003.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.003.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.003.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.003.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.003.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.004.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.004.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.004.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.004.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.004.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.004.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.004.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.004.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.005.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.005.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.005.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.005.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.005.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.005.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.005.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.005.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.006.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.006.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.006.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.006.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.006.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.006.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.006.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.006.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.007.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.007.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.007.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.007.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.007.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.007.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.007.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.007.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.008.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.008.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.008.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.008.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.008.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.008.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.008.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.008.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.009.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.009.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.009.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.009.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.009.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.009.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.009.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.009.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.010.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.010.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.010.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.010.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.010.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.010.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.010.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.010.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.011.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.011.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.011.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.011.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.011.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.011.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.011.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.011.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.012.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.012.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.012.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.012.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.012.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.012.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.012.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.012.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.013.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.013.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.013.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.013.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.013.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.013.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.013.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.013.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.014.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.014.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.014.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.014.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.014.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.014.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.014.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.014.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.015.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.015.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.015.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.015.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.015.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.015.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.015.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.015.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.016.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.016.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.016.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.016.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.016.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.016.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.016.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.016.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.017.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.017.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.017.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.017.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.017.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.017.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.017.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.017.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.018.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.018.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.018.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.018.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.018.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.018.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.018.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.018.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.019.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.019.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.019.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.019.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.019.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.019.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.019.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.019.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.020.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.020.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.020.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.020.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.020.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.020.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.020.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.020.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.021.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.021.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.021.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.021.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.021.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.021.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.021.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.021.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.022.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.022.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.022.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.022.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.022.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.022.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.022.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.022.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.023.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.023.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.023.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.023.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.023.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.023.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.023.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.023.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.024.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.024.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.024.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.024.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.024.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.024.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.024.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.024.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.025.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.025.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.025.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.025.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.025.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.025.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.025.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.025.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.026.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.026.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.026.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.026.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.026.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.026.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.026.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.026.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.027.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.027.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.027.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.027.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.027.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.027.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.027.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.027.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.028.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.028.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.028.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.028.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.028.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.028.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.028.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.028.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.029.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.029.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.029.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.029.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.029.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.029.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.029.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.029.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.030.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.030.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.030.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.030.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.030.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.030.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.030.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.030.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.031.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.031.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.031.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.031.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.031.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.031.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.031.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.031.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.032.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.032.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.032.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.032.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.032.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.032.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.032.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.032.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.033.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.033.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.033.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.033.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.033.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.033.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.033.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.033.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.034.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.034.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.034.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.034.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.034.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.034.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.034.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.034.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.035.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.035.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.035.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.035.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.035.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.035.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.035.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.035.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.036.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.036.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.036.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.036.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.036.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.036.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.036.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.036.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.037.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.037.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.037.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.037.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.037.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.037.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.037.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.037.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.038.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.038.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.038.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.038.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.038.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.038.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.038.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.038.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.039.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.039.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.039.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.039.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.039.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.039.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.039.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.039.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.040.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.040.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.040.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.040.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.040.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.040.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.040.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.040.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.041.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.041.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.041.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.041.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.041.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.041.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.041.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.041.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.042.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.042.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.042.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.042.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.042.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.042.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.042.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.042.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.043.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.043.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.043.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.043.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.043.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.043.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.043.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.043.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Thin.044.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-ExtraLight.044.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Light.044.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Regular.044.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Text.044.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Medium.044.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-SemiBold.044.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4; +} +@font-face { + font-family: 'Fluxer Sans JP'; + src: url('../files/FluxerSansJP/FluxerSansJP-Bold.044.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4; +} diff --git a/packages/fonts/css/script-kr.css b/packages/fonts/css/script-kr.css new file mode 100644 index 000000000..5ee978351 --- /dev/null +++ b/packages/fonts/css/script-kr.css @@ -0,0 +1,643 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ +/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */ + +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Thin.000.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-ExtraLight.000.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Light.000.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Regular.000.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Text.000.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Medium.000.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-SemiBold.000.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Bold.000.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Thin.001.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+AC00-B174; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-ExtraLight.001.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+AC00-B174; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Light.001.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+AC00-B174; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Regular.001.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+AC00-B174; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Text.001.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+AC00-B174; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Medium.001.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+AC00-B174; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-SemiBold.001.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+AC00-B174; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Bold.001.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+AC00-B174; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Thin.002.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+B175-B6E9; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-ExtraLight.002.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+B175-B6E9; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Light.002.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+B175-B6E9; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Regular.002.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+B175-B6E9; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Text.002.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+B175-B6E9; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Medium.002.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+B175-B6E9; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-SemiBold.002.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+B175-B6E9; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Bold.002.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+B175-B6E9; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Thin.003.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+B6EA-BC5E; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-ExtraLight.003.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+B6EA-BC5E; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Light.003.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+B6EA-BC5E; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Regular.003.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+B6EA-BC5E; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Text.003.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+B6EA-BC5E; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Medium.003.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+B6EA-BC5E; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-SemiBold.003.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+B6EA-BC5E; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Bold.003.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+B6EA-BC5E; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Thin.004.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+BC5F-C1D3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-ExtraLight.004.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+BC5F-C1D3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Light.004.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+BC5F-C1D3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Regular.004.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+BC5F-C1D3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Text.004.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+BC5F-C1D3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Medium.004.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+BC5F-C1D3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-SemiBold.004.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+BC5F-C1D3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Bold.004.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+BC5F-C1D3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Thin.005.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+C1D4-C748; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-ExtraLight.005.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+C1D4-C748; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Light.005.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+C1D4-C748; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Regular.005.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+C1D4-C748; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Text.005.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+C1D4-C748; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Medium.005.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+C1D4-C748; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-SemiBold.005.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+C1D4-C748; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Bold.005.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+C1D4-C748; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Thin.006.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+C749-CCBD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-ExtraLight.006.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+C749-CCBD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Light.006.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+C749-CCBD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Regular.006.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+C749-CCBD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Text.006.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+C749-CCBD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Medium.006.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+C749-CCBD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-SemiBold.006.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+C749-CCBD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Bold.006.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+C749-CCBD; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Thin.007.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+CCBE-D232; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-ExtraLight.007.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+CCBE-D232; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Light.007.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+CCBE-D232; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Regular.007.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+CCBE-D232; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Text.007.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+CCBE-D232; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Medium.007.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+CCBE-D232; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-SemiBold.007.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+CCBE-D232; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Bold.007.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+CCBE-D232; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Thin.008.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+D233-D7A3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-ExtraLight.008.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+D233-D7A3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Light.008.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+D233-D7A3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Regular.008.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+D233-D7A3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Text.008.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+D233-D7A3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Medium.008.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+D233-D7A3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-SemiBold.008.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+D233-D7A3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Bold.008.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+D233-D7A3; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Thin.009.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-ExtraLight.009.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Light.009.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Regular.009.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Text.009.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Medium.009.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-SemiBold.009.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129; +} +@font-face { + font-family: 'Fluxer Sans KR'; + src: url('../files/FluxerSansKR/FluxerSansKR-Bold.009.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129; +} diff --git a/packages/fonts/css/script-sc.css b/packages/fonts/css/script-sc.css new file mode 100644 index 000000000..12f86149f --- /dev/null +++ b/packages/fonts/css/script-sc.css @@ -0,0 +1,4419 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ +/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */ + +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.000.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.000.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.000.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.000.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.000.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.000.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.000.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.000.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.001.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.001.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.001.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.001.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.001.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.001.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.001.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.001.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.002.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.002.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.002.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.002.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.002.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.002.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.002.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.002.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.003.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+3400-359B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.003.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+3400-359B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.003.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+3400-359B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.003.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+3400-359B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.003.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+3400-359B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.003.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+3400-359B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.003.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+3400-359B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.003.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+3400-359B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.004.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+359C-3737; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.004.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+359C-3737; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.004.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+359C-3737; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.004.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+359C-3737; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.004.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+359C-3737; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.004.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+359C-3737; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.004.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+359C-3737; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.004.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+359C-3737; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.005.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+3738-38D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.005.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+3738-38D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.005.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+3738-38D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.005.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+3738-38D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.005.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+3738-38D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.005.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+3738-38D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.005.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+3738-38D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.005.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+3738-38D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.006.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+38D4-3A6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.006.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+38D4-3A6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.006.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+38D4-3A6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.006.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+38D4-3A6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.006.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+38D4-3A6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.006.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+38D4-3A6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.006.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+38D4-3A6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.006.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+38D4-3A6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.007.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+3A70-3C0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.007.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+3A70-3C0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.007.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+3A70-3C0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.007.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+3A70-3C0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.007.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+3A70-3C0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.007.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+3A70-3C0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.007.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+3A70-3C0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.007.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+3A70-3C0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.008.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+3C0C-3DA7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.008.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+3C0C-3DA7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.008.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+3C0C-3DA7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.008.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+3C0C-3DA7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.008.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+3C0C-3DA7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.008.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+3C0C-3DA7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.008.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+3C0C-3DA7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.008.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+3C0C-3DA7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.009.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+3DA8-3F43; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.009.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+3DA8-3F43; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.009.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+3DA8-3F43; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.009.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+3DA8-3F43; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.009.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+3DA8-3F43; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.009.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+3DA8-3F43; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.009.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+3DA8-3F43; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.009.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+3DA8-3F43; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.010.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+3F44-40DF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.010.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+3F44-40DF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.010.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+3F44-40DF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.010.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+3F44-40DF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.010.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+3F44-40DF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.010.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+3F44-40DF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.010.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+3F44-40DF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.010.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+3F44-40DF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.011.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+40E0-427B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.011.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+40E0-427B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.011.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+40E0-427B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.011.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+40E0-427B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.011.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+40E0-427B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.011.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+40E0-427B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.011.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+40E0-427B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.011.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+40E0-427B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.012.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+427C-4417; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.012.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+427C-4417; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.012.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+427C-4417; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.012.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+427C-4417; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.012.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+427C-4417; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.012.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+427C-4417; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.012.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+427C-4417; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.012.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+427C-4417; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.013.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+4418-45B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.013.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+4418-45B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.013.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+4418-45B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.013.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+4418-45B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.013.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+4418-45B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.013.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+4418-45B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.013.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+4418-45B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.013.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+4418-45B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.014.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+45B4-474F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.014.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+45B4-474F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.014.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+45B4-474F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.014.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+45B4-474F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.014.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+45B4-474F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.014.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+45B4-474F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.014.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+45B4-474F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.014.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+45B4-474F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.015.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+4750-48EB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.015.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+4750-48EB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.015.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+4750-48EB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.015.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+4750-48EB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.015.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+4750-48EB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.015.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+4750-48EB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.015.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+4750-48EB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.015.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+4750-48EB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.016.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+48EC-4A87; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.016.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+48EC-4A87; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.016.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+48EC-4A87; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.016.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+48EC-4A87; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.016.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+48EC-4A87; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.016.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+48EC-4A87; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.016.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+48EC-4A87; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.016.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+48EC-4A87; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.017.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+4A88-4C23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.017.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+4A88-4C23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.017.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+4A88-4C23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.017.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+4A88-4C23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.017.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+4A88-4C23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.017.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+4A88-4C23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.017.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+4A88-4C23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.017.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+4A88-4C23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.018.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+4C24-4DBF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.018.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+4C24-4DBF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.018.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+4C24-4DBF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.018.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+4C24-4DBF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.018.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+4C24-4DBF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.018.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+4C24-4DBF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.018.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+4C24-4DBF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.018.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+4C24-4DBF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.019.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4FAB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.019.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4FAB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.019.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4FAB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.019.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4FAB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.019.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4FAB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.019.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4FAB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.019.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4FAB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.019.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4FAB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.020.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+4FAC-5157; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.020.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+4FAC-5157; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.020.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+4FAC-5157; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.020.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+4FAC-5157; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.020.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+4FAC-5157; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.020.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+4FAC-5157; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.020.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+4FAC-5157; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.020.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+4FAC-5157; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.021.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+5158-5303; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.021.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+5158-5303; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.021.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+5158-5303; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.021.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+5158-5303; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.021.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+5158-5303; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.021.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+5158-5303; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.021.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+5158-5303; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.021.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+5158-5303; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.022.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+5304-54AF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.022.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+5304-54AF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.022.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+5304-54AF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.022.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+5304-54AF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.022.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+5304-54AF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.022.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+5304-54AF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.022.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+5304-54AF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.022.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+5304-54AF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.023.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+54B0-565B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.023.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+54B0-565B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.023.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+54B0-565B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.023.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+54B0-565B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.023.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+54B0-565B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.023.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+54B0-565B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.023.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+54B0-565B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.023.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+54B0-565B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.024.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+565C-5807; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.024.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+565C-5807; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.024.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+565C-5807; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.024.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+565C-5807; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.024.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+565C-5807; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.024.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+565C-5807; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.024.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+565C-5807; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.024.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+565C-5807; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.025.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+5808-59B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.025.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+5808-59B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.025.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+5808-59B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.025.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+5808-59B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.025.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+5808-59B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.025.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+5808-59B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.025.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+5808-59B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.025.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+5808-59B3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.026.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+59B4-5B5F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.026.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+59B4-5B5F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.026.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+59B4-5B5F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.026.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+59B4-5B5F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.026.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+59B4-5B5F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.026.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+59B4-5B5F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.026.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+59B4-5B5F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.026.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+59B4-5B5F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.027.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+5B60-5D0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.027.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+5B60-5D0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.027.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+5B60-5D0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.027.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+5B60-5D0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.027.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+5B60-5D0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.027.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+5B60-5D0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.027.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+5B60-5D0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.027.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+5B60-5D0B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.028.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+5D0C-5EB7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.028.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+5D0C-5EB7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.028.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+5D0C-5EB7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.028.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+5D0C-5EB7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.028.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+5D0C-5EB7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.028.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+5D0C-5EB7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.028.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+5D0C-5EB7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.028.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+5D0C-5EB7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.029.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+5EB8-6063; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.029.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+5EB8-6063; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.029.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+5EB8-6063; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.029.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+5EB8-6063; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.029.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+5EB8-6063; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.029.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+5EB8-6063; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.029.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+5EB8-6063; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.029.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+5EB8-6063; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.030.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6064-620F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.030.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6064-620F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.030.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6064-620F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.030.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6064-620F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.030.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6064-620F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.030.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6064-620F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.030.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6064-620F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.030.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6064-620F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.031.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6210-63BB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.031.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6210-63BB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.031.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6210-63BB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.031.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6210-63BB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.031.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6210-63BB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.031.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6210-63BB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.031.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6210-63BB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.031.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6210-63BB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.032.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+63BC-6567; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.032.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+63BC-6567; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.032.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+63BC-6567; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.032.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+63BC-6567; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.032.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+63BC-6567; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.032.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+63BC-6567; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.032.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+63BC-6567; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.032.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+63BC-6567; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.033.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6568-6713; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.033.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6568-6713; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.033.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6568-6713; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.033.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6568-6713; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.033.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6568-6713; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.033.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6568-6713; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.033.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6568-6713; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.033.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6568-6713; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.034.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6714-68BF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.034.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6714-68BF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.034.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6714-68BF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.034.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6714-68BF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.034.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6714-68BF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.034.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6714-68BF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.034.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6714-68BF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.034.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6714-68BF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.035.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+68C0-6A6B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.035.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+68C0-6A6B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.035.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+68C0-6A6B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.035.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+68C0-6A6B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.035.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+68C0-6A6B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.035.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+68C0-6A6B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.035.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+68C0-6A6B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.035.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+68C0-6A6B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.036.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6A6C-6C17; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.036.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6A6C-6C17; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.036.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6A6C-6C17; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.036.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6A6C-6C17; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.036.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6A6C-6C17; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.036.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6A6C-6C17; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.036.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6A6C-6C17; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.036.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6A6C-6C17; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.037.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6C18-6DC3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.037.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6C18-6DC3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.037.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6C18-6DC3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.037.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6C18-6DC3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.037.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6C18-6DC3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.037.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6C18-6DC3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.037.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6C18-6DC3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.037.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6C18-6DC3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.038.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6DC4-6F6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.038.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6DC4-6F6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.038.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6DC4-6F6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.038.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6DC4-6F6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.038.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6DC4-6F6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.038.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6DC4-6F6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.038.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6DC4-6F6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.038.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6DC4-6F6F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.039.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6F70-711B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.039.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6F70-711B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.039.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6F70-711B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.039.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6F70-711B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.039.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6F70-711B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.039.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6F70-711B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.039.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6F70-711B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.039.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6F70-711B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.040.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+711C-72C7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.040.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+711C-72C7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.040.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+711C-72C7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.040.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+711C-72C7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.040.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+711C-72C7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.040.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+711C-72C7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.040.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+711C-72C7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.040.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+711C-72C7; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.041.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+72C8-7473; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.041.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+72C8-7473; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.041.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+72C8-7473; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.041.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+72C8-7473; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.041.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+72C8-7473; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.041.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+72C8-7473; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.041.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+72C8-7473; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.041.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+72C8-7473; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.042.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7474-761F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.042.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7474-761F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.042.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7474-761F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.042.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7474-761F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.042.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7474-761F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.042.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7474-761F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.042.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7474-761F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.042.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7474-761F; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.043.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7620-77CB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.043.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7620-77CB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.043.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7620-77CB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.043.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7620-77CB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.043.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7620-77CB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.043.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7620-77CB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.043.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7620-77CB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.043.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7620-77CB; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.044.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+77CC-7977; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.044.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+77CC-7977; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.044.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+77CC-7977; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.044.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+77CC-7977; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.044.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+77CC-7977; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.044.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+77CC-7977; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.044.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+77CC-7977; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.044.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+77CC-7977; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.045.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7978-7B23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.045.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7978-7B23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.045.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7978-7B23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.045.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7978-7B23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.045.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7978-7B23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.045.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7978-7B23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.045.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7978-7B23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.045.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7978-7B23; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.046.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7B24-7CCF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.046.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7B24-7CCF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.046.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7B24-7CCF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.046.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7B24-7CCF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.046.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7B24-7CCF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.046.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7B24-7CCF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.046.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7B24-7CCF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.046.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7B24-7CCF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.047.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7CD0-7E7B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.047.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7CD0-7E7B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.047.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7CD0-7E7B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.047.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7CD0-7E7B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.047.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7CD0-7E7B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.047.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7CD0-7E7B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.047.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7CD0-7E7B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.047.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7CD0-7E7B; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.048.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-8027; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.048.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-8027; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.048.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-8027; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.048.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-8027; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.048.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-8027; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.048.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-8027; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.048.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-8027; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.048.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-8027; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.049.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8028-81D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.049.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8028-81D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.049.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8028-81D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.049.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8028-81D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.049.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8028-81D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.049.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8028-81D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.049.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8028-81D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.049.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8028-81D3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.050.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+81D4-8277, U+8279-8380; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.050.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+81D4-8277, U+8279-8380; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.050.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+81D4-8277, U+8279-8380; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.050.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+81D4-8277, U+8279-8380; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.050.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+81D4-8277, U+8279-8380; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.050.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+81D4-8277, U+8279-8380; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.050.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+81D4-8277, U+8279-8380; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.050.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+81D4-8277, U+8279-8380; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.051.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8381-852C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.051.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8381-852C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.051.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8381-852C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.051.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8381-852C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.051.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8381-852C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.051.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8381-852C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.051.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8381-852C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.051.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8381-852C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.052.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+852D-86D8; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.052.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+852D-86D8; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.052.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+852D-86D8; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.052.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+852D-86D8; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.052.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+852D-86D8; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.052.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+852D-86D8; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.052.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+852D-86D8; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.052.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+852D-86D8; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.053.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+86D9-8884; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.053.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+86D9-8884; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.053.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+86D9-8884; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.053.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+86D9-8884; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.053.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+86D9-8884; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.053.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+86D9-8884; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.053.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+86D9-8884; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.053.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+86D9-8884; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.054.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8885-898A, U+898C-8A31; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.054.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8885-898A, U+898C-8A31; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.054.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8885-898A, U+898C-8A31; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.054.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8885-898A, U+898C-8A31; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.054.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8885-898A, U+898C-8A31; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.054.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8885-898A, U+898C-8A31; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.054.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8885-898A, U+898C-8A31; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.054.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8885-898A, U+898C-8A31; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.055.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8A32-8BDD; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.055.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8A32-8BDD; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.055.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8A32-8BDD; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.055.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8A32-8BDD; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.055.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8A32-8BDD; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.055.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8A32-8BDD; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.055.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8A32-8BDD; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.055.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8A32-8BDD; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.056.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8BDE-8C9C, U+8C9E-8D8A; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.056.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8BDE-8C9C, U+8C9E-8D8A; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.056.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8BDE-8C9C, U+8C9E-8D8A; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.056.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8BDE-8C9C, U+8C9E-8D8A; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.056.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8BDE-8C9C, U+8C9E-8D8A; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.056.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8BDE-8C9C, U+8C9E-8D8A; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.056.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8BDE-8C9C, U+8C9E-8D8A; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.056.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8BDE-8C9C, U+8C9E-8D8A; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.057.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8D8B-8EC9, U+8ECB-8F37; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.057.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8D8B-8EC9, U+8ECB-8F37; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.057.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8D8B-8EC9, U+8ECB-8F37; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.057.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8D8B-8EC9, U+8ECB-8F37; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.057.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8D8B-8EC9, U+8ECB-8F37; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.057.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8D8B-8EC9, U+8ECB-8F37; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.057.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8D8B-8EC9, U+8ECB-8F37; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.057.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8D8B-8EC9, U+8ECB-8F37; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.058.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8F38-90E3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.058.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8F38-90E3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.058.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8F38-90E3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.058.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8F38-90E3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.058.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8F38-90E3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.058.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8F38-90E3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.058.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8F38-90E3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.058.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8F38-90E3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.059.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+90E4-91C5, U+91C7-9290; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.059.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+90E4-91C5, U+91C7-9290; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.059.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+90E4-91C5, U+91C7-9290; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.059.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+90E4-91C5, U+91C7-9290; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.059.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+90E4-91C5, U+91C7-9290; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.059.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+90E4-91C5, U+91C7-9290; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.059.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+90E4-91C5, U+91C7-9290; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.059.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+90E4-91C5, U+91C7-9290; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.060.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+9291-943C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.060.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+9291-943C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.060.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+9291-943C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.060.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+9291-943C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.060.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+9291-943C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.060.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+9291-943C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.060.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+9291-943C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.060.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+9291-943C; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.061.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+943D-9576, U+9578-957F, U+9581-95EA; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.061.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+943D-9576, U+9578-957F, U+9581-95EA; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.061.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+943D-9576, U+9578-957F, U+9581-95EA; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.061.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+943D-9576, U+9578-957F, U+9581-95EA; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.061.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+943D-9576, U+9578-957F, U+9581-95EA; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.061.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+943D-9576, U+9578-957F, U+9581-95EA; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.061.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+943D-9576, U+9578-957F, U+9581-95EA; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.061.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+943D-9576, U+9578-957F, U+9581-95EA; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.062.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+95EB-9796; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.062.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+95EB-9796; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.062.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+95EB-9796; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.062.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+95EB-9796; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.062.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+95EB-9796; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.062.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+95EB-9751, U+9753-9796; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.062.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+95EB-9796; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.062.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+95EB-9796; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.063.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.063.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.063.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.063.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.063.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.063.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.063.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.063.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.064.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+9947-99AB, U+99AD-9AF3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.064.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+9947-99AB, U+99AD-9AF3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.064.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+9947-99AB, U+99AD-9AF3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.064.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+9947-99AB, U+99AD-9AF3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.064.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+9947-99AB, U+99AD-9AF3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.064.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+9947-99AB, U+99AD-9AF3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.064.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+9947-99AB, U+99AD-9AF3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.064.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+9947-99AB, U+99AD-9AF3; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.065.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.065.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.065.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.065.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.065.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.065.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.065.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.065.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.066.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+9CA2-9E4D; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.066.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+9CA2-9E4D; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.066.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+9CA2-9E4D; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.066.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+9CA2-9E4D; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.066.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+9CA2-9E4D; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.066.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+9CA2-9E4D; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.066.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+9CA2-9E4D; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.066.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+9CA2-9E4D; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.067.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.067.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.067.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.067.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.067.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.067.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.067.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.067.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Thin.068.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-ExtraLight.068.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Light.068.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Regular.068.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Text.068.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Medium.068.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-SemiBold.068.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93; +} +@font-face { + font-family: 'Fluxer Sans SC'; + src: url('../files/FluxerSansSC/FluxerSansSC-Bold.068.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93; +} diff --git a/packages/fonts/css/script-tc.css b/packages/fonts/css/script-tc.css new file mode 100644 index 000000000..adaa99c5c --- /dev/null +++ b/packages/fonts/css/script-tc.css @@ -0,0 +1,3203 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ +/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */ + +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.000.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.000.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.000.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.000.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.000.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.000.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.000.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.000.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.001.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.001.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.001.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.001.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.001.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.001.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.001.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.001.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.002.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.002.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.002.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.002.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.002.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.002.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.002.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.002.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.003.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.003.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.003.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.003.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.003.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.003.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.003.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.003.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.004.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.004.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.004.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.004.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.004.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.004.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.004.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.004.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.005.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.005.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.005.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.005.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.005.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.005.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.005.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.005.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.006.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.006.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.006.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.006.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.006.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.006.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.006.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.006.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.007.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.007.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.007.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.007.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.007.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.007.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.007.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.007.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.008.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.008.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.008.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.008.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.008.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.008.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.008.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.008.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.009.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.009.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.009.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.009.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.009.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.009.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.009.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.009.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.010.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.010.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.010.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.010.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.010.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.010.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.010.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.010.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.011.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.011.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.011.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.011.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.011.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.011.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.011.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.011.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.012.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.012.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.012.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.012.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.012.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.012.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.012.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.012.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.013.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.013.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.013.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.013.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.013.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.013.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.013.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.013.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.014.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.014.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.014.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.014.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.014.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.014.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.014.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.014.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.015.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.015.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.015.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.015.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.015.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.015.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.015.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.015.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.016.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.016.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.016.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.016.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.016.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.016.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.016.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.016.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.017.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.017.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.017.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.017.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.017.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.017.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.017.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.017.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.018.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.018.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.018.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.018.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.018.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.018.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.018.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.018.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.019.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.019.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.019.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.019.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.019.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.019.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.019.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.019.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.020.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.020.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.020.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.020.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.020.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.020.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.020.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.020.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.021.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.021.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.021.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.021.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.021.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.021.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.021.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.021.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.022.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.022.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.022.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.022.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.022.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.022.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.022.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.022.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.023.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.023.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.023.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.023.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.023.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.023.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.023.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.023.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.024.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.024.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.024.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.024.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.024.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.024.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.024.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.024.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.025.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.025.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.025.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.025.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.025.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.025.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.025.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.025.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.026.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.026.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.026.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.026.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.026.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.026.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.026.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.026.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.027.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.027.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.027.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.027.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.027.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.027.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.027.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.027.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.028.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.028.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.028.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.028.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.028.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.028.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.028.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.028.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.029.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.029.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.029.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.029.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.029.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.029.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.029.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.029.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.030.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.030.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.030.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.030.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.030.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.030.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.030.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.030.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.031.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.031.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.031.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.031.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.031.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.031.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.031.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.031.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.032.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.032.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.032.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.032.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.032.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.032.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.032.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.032.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.033.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.033.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.033.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.033.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.033.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.033.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.033.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.033.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.034.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.034.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.034.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.034.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.034.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.034.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.034.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.034.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.035.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+E000-E1D8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.035.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+E000-E1D8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.035.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+E000-E1D8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.035.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+E000-E1D8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.035.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+E000-E1D8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.035.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+E000-E1D8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.035.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+E000-E1D8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.035.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+E000-E1D8; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.036.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+E1D9-E3B1; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.036.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+E1D9-E3B1; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.036.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+E1D9-E3B1; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.036.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+E1D9-E3B1; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.036.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+E1D9-E3B1; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.036.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+E1D9-E3B1; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.036.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+E1D9-E3B1; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.036.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+E1D9-E3B1; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.037.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+E3B2-E58A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.037.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+E3B2-E58A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.037.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+E3B2-E58A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.037.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+E3B2-E58A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.037.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+E3B2-E58A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.037.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+E3B2-E58A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.037.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+E3B2-E58A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.037.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+E3B2-E58A; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.038.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+E58B-E763; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.038.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+E58B-E763; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.038.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+E58B-E763; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.038.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+E58B-E763; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.038.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+E58B-E763; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.038.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+E58B-E763; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.038.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+E58B-E763; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.038.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+E58B-E763; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.039.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+E764-E93C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.039.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+E764-E93C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.039.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+E764-E93C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.039.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+E764-E93C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.039.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+E764-E93C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.039.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+E764-E93C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.039.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+E764-E93C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.039.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+E764-E93C; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.040.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+E93D-EB15; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.040.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+E93D-EB15; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.040.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+E93D-EB15; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.040.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+E93D-EB15; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.040.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+E93D-EB15; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.040.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+E93D-EB15; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.040.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+E93D-EB15; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.040.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+E93D-EB15; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.041.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+EB16-EB2A, U+EB2C-ECEF; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.041.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+EB16-EB2A, U+EB2C-ECEF; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.041.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+EB16-EB2A, U+EB2C-ECEF; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.041.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+EB16-EB2A, U+EB2C-ECEF; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.041.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+EB16-EB2A, U+EB2C-ECEF; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.041.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+EB16-EB2A, U+EB2C-ECEF; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.041.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+EB16-EB2A, U+EB2C-ECEF; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.041.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+EB16-EB2A, U+EB2C-ECEF; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.042.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+ECF0-EEB7, U+F303-F313; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.042.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+ECF0-EEB7, U+F303-F313; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.042.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+ECF0-EEB7, U+F303-F313; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.042.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+ECF0-EEB7, U+F303-F313; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.042.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+ECF0-EEB7, U+F303-F313; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.042.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+ECF0-EEB7, U+F303-F313; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.042.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+ECF0-EEB7, U+F303-F313; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.042.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+ECF0-EEB7, U+F303-F313; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.043.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32C, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F33F-F342, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.043.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.043.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.043.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32C, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F33F-F342, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.043.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.043.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.043.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.043.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32C, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F33F-F342, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.044.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.044.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.044.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.044.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.044.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.044.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.044.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.044.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.045.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.045.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.045.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.045.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.045.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.045.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.045.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.045.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.046.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.046.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.046.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.046.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.046.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.046.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.046.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.046.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.047.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.047.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.047.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.047.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.047.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.047.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.047.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.047.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.048.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.048.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.048.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.048.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.048.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.048.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.048.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.048.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Thin.049.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-ExtraLight.049.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Light.049.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Regular.049.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Text.049.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Medium.049.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-SemiBold.049.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B; +} +@font-face { + font-family: 'Fluxer Sans TC'; + src: url('../files/FluxerSansTC/FluxerSansTC-Bold.049.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B; +} diff --git a/packages/fonts/css/script-thai-looped.css b/packages/fonts/css/script-thai-looped.css new file mode 100644 index 000000000..bfc5a7152 --- /dev/null +++ b/packages/fonts/css/script-thai-looped.css @@ -0,0 +1,67 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ +/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */ + +@font-face { + font-family: 'Fluxer Sans Thai Looped'; + src: url('../files/FluxerSansThaiLooped/FluxerSansThaiLooped-Thin.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai Looped'; + src: url('../files/FluxerSansThaiLooped/FluxerSansThaiLooped-ExtraLight.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai Looped'; + src: url('../files/FluxerSansThaiLooped/FluxerSansThaiLooped-Light.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai Looped'; + src: url('../files/FluxerSansThaiLooped/FluxerSansThaiLooped-Regular.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai Looped'; + src: url('../files/FluxerSansThaiLooped/FluxerSansThaiLooped-Text.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai Looped'; + src: url('../files/FluxerSansThaiLooped/FluxerSansThaiLooped-Medium.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai Looped'; + src: url('../files/FluxerSansThaiLooped/FluxerSansThaiLooped-SemiBold.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai Looped'; + src: url('../files/FluxerSansThaiLooped/FluxerSansThaiLooped-Bold.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} diff --git a/packages/fonts/css/script-thai.css b/packages/fonts/css/script-thai.css new file mode 100644 index 000000000..bc879bfcd --- /dev/null +++ b/packages/fonts/css/script-thai.css @@ -0,0 +1,67 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ +/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */ + +@font-face { + font-family: 'Fluxer Sans Thai'; + src: url('../files/FluxerSansThai/FluxerSansThai-Thin.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai'; + src: url('../files/FluxerSansThai/FluxerSansThai-ExtraLight.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai'; + src: url('../files/FluxerSansThai/FluxerSansThai-Light.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai'; + src: url('../files/FluxerSansThai/FluxerSansThai-Regular.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai'; + src: url('../files/FluxerSansThai/FluxerSansThai-Text.woff2') format('woff2'); + font-weight: 450; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai'; + src: url('../files/FluxerSansThai/FluxerSansThai-Medium.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai'; + src: url('../files/FluxerSansThai/FluxerSansThai-SemiBold.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} +@font-face { + font-family: 'Fluxer Sans Thai'; + src: url('../files/FluxerSansThai/FluxerSansThai-Bold.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; + unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02; +} diff --git a/packages/fonts/css/variables.css b/packages/fonts/css/variables.css new file mode 100644 index 000000000..97b4d1299 --- /dev/null +++ b/packages/fonts/css/variables.css @@ -0,0 +1,10 @@ +/* SPDX-License-Identifier: AGPL-3.0-or-later */ +/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */ + +:root { + --font-sans: + 'Fluxer Sans', 'Fluxer Sans Arabic', 'Fluxer Sans Hebrew', 'Fluxer Sans Devanagari', 'Fluxer Sans Thai Looped', + 'Fluxer Sans SC', 'Fluxer Sans TC', 'Fluxer Sans JP', 'Fluxer Sans KR', system-ui, -apple-system, + BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif; + --font-mono: 'Fluxer Mono', 'Menlo', 'Monaco', 'Courier New', monospace; +} diff --git a/packages/fonts/files/FluxerMono/FluxerMono-Bold.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-Bold.woff2 new file mode 100644 index 000000000..a53628bcc Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-Bold.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-BoldItalic.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-BoldItalic.woff2 new file mode 100644 index 000000000..be2b09fc6 Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-BoldItalic.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-ExtraLight.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-ExtraLight.woff2 new file mode 100644 index 000000000..c19ad09cf Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-ExtraLight.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-ExtraLightItalic.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-ExtraLightItalic.woff2 new file mode 100644 index 000000000..3bd42231f Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-ExtraLightItalic.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-Italic.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-Italic.woff2 new file mode 100644 index 000000000..eed7d96f5 Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-Italic.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-Light.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-Light.woff2 new file mode 100644 index 000000000..efff230b3 Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-Light.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-LightItalic.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-LightItalic.woff2 new file mode 100644 index 000000000..325eeb95d Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-LightItalic.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-Medium.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-Medium.woff2 new file mode 100644 index 000000000..c90fa27ce Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-Medium.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-MediumItalic.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-MediumItalic.woff2 new file mode 100644 index 000000000..25984a426 Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-MediumItalic.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-Regular.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-Regular.woff2 new file mode 100644 index 000000000..96ac84aad Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-Regular.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-SemiBold.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-SemiBold.woff2 new file mode 100644 index 000000000..7782342e2 Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-SemiBold.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-SemiBoldItalic.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-SemiBoldItalic.woff2 new file mode 100644 index 000000000..4b7f6d631 Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-SemiBoldItalic.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-Text.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-Text.woff2 new file mode 100644 index 000000000..c0460c6a1 Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-Text.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-TextItalic.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-TextItalic.woff2 new file mode 100644 index 000000000..ee33d7ecd Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-TextItalic.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-Thin.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-Thin.woff2 new file mode 100644 index 000000000..02c9a158f Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-Thin.woff2 differ diff --git a/packages/fonts/files/FluxerMono/FluxerMono-ThinItalic.woff2 b/packages/fonts/files/FluxerMono/FluxerMono-ThinItalic.woff2 new file mode 100644 index 000000000..97c9c384a Binary files /dev/null and b/packages/fonts/files/FluxerMono/FluxerMono-ThinItalic.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-Bold.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-Bold.woff2 new file mode 100644 index 000000000..f272d7363 Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-Bold.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-BoldItalic.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-BoldItalic.woff2 new file mode 100644 index 000000000..d3db1bf14 Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-BoldItalic.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-ExtraLight.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-ExtraLight.woff2 new file mode 100644 index 000000000..2b661a23d Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-ExtraLight.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-ExtraLightItalic.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-ExtraLightItalic.woff2 new file mode 100644 index 000000000..1ce64f84f Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-ExtraLightItalic.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-Italic.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-Italic.woff2 new file mode 100644 index 000000000..788a6dda4 Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-Italic.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-Light.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-Light.woff2 new file mode 100644 index 000000000..2d89b8d63 Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-Light.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-LightItalic.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-LightItalic.woff2 new file mode 100644 index 000000000..7b455bb64 Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-LightItalic.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-Medium.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-Medium.woff2 new file mode 100644 index 000000000..9d9cb2593 Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-Medium.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-MediumItalic.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-MediumItalic.woff2 new file mode 100644 index 000000000..dba3f06bd Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-MediumItalic.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-Regular.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-Regular.woff2 new file mode 100644 index 000000000..fb82354f8 Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-Regular.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-SemiBold.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-SemiBold.woff2 new file mode 100644 index 000000000..a3f397cb2 Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-SemiBold.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-SemiBoldItalic.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-SemiBoldItalic.woff2 new file mode 100644 index 000000000..68d225fc3 Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-SemiBoldItalic.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-Text.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-Text.woff2 new file mode 100644 index 000000000..1a9e4cda8 Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-Text.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-TextItalic.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-TextItalic.woff2 new file mode 100644 index 000000000..4c5038627 Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-TextItalic.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-Thin.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-Thin.woff2 new file mode 100644 index 000000000..e4a91c07a Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-Thin.woff2 differ diff --git a/packages/fonts/files/FluxerSans/FluxerSans-ThinItalic.woff2 b/packages/fonts/files/FluxerSans/FluxerSans-ThinItalic.woff2 new file mode 100644 index 000000000..39c9552bc Binary files /dev/null and b/packages/fonts/files/FluxerSans/FluxerSans-ThinItalic.woff2 differ diff --git a/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Bold.woff2 b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Bold.woff2 new file mode 100644 index 000000000..144e9f0aa Binary files /dev/null and b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Bold.woff2 differ diff --git a/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-ExtraLight.woff2 b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-ExtraLight.woff2 new file mode 100644 index 000000000..82da9f0d0 Binary files /dev/null and b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-ExtraLight.woff2 differ diff --git a/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Light.woff2 b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Light.woff2 new file mode 100644 index 000000000..590b38b1d Binary files /dev/null and b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Light.woff2 differ diff --git a/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Medium.woff2 b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Medium.woff2 new file mode 100644 index 000000000..87ab38c23 Binary files /dev/null and b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Medium.woff2 differ diff --git a/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Regular.woff2 b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Regular.woff2 new file mode 100644 index 000000000..688cbd8ca Binary files /dev/null and b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Regular.woff2 differ diff --git a/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-SemiBold.woff2 b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-SemiBold.woff2 new file mode 100644 index 000000000..15f81266f Binary files /dev/null and b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-SemiBold.woff2 differ diff --git a/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Text.woff2 b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Text.woff2 new file mode 100644 index 000000000..621ab39f4 Binary files /dev/null and b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Text.woff2 differ diff --git a/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Thin.woff2 b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Thin.woff2 new file mode 100644 index 000000000..d77e612a3 Binary files /dev/null and b/packages/fonts/files/FluxerSansArabic/FluxerSansArabic-Thin.woff2 differ diff --git a/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Bold.woff2 b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Bold.woff2 new file mode 100644 index 000000000..da5c53d14 Binary files /dev/null and b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Bold.woff2 differ diff --git a/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-ExtraLight.woff2 b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-ExtraLight.woff2 new file mode 100644 index 000000000..75918420e Binary files /dev/null and b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-ExtraLight.woff2 differ diff --git a/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Light.woff2 b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Light.woff2 new file mode 100644 index 000000000..995dc22c4 Binary files /dev/null and b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Light.woff2 differ diff --git a/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Medium.woff2 b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Medium.woff2 new file mode 100644 index 000000000..c4eee5f11 Binary files /dev/null and b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Medium.woff2 differ diff --git a/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Regular.woff2 b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Regular.woff2 new file mode 100644 index 000000000..65b923376 Binary files /dev/null and b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Regular.woff2 differ diff --git a/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-SemiBold.woff2 b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-SemiBold.woff2 new file mode 100644 index 000000000..923dd1833 Binary files /dev/null and b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-SemiBold.woff2 differ diff --git a/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Text.woff2 b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Text.woff2 new file mode 100644 index 000000000..592307c88 Binary files /dev/null and b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Text.woff2 differ diff --git a/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Thin.woff2 b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Thin.woff2 new file mode 100644 index 000000000..b914e1c9a Binary files /dev/null and b/packages/fonts/files/FluxerSansDevanagari/FluxerSansDevanagari-Thin.woff2 differ diff --git a/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Bold.woff2 b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Bold.woff2 new file mode 100644 index 000000000..dc6babe33 Binary files /dev/null and b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Bold.woff2 differ diff --git a/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-ExtraLight.woff2 b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-ExtraLight.woff2 new file mode 100644 index 000000000..0fc1bd103 Binary files /dev/null and b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-ExtraLight.woff2 differ diff --git a/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Light.woff2 b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Light.woff2 new file mode 100644 index 000000000..15b543ee8 Binary files /dev/null and b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Light.woff2 differ diff --git a/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Medium.woff2 b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Medium.woff2 new file mode 100644 index 000000000..37afb090f Binary files /dev/null and b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Medium.woff2 differ diff --git a/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Regular.woff2 b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Regular.woff2 new file mode 100644 index 000000000..538c1d925 Binary files /dev/null and b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Regular.woff2 differ diff --git a/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-SemiBold.woff2 b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-SemiBold.woff2 new file mode 100644 index 000000000..3e472e070 Binary files /dev/null and b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-SemiBold.woff2 differ diff --git a/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Text.woff2 b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Text.woff2 new file mode 100644 index 000000000..72c29aef6 Binary files /dev/null and b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Text.woff2 differ diff --git a/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Thin.woff2 b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Thin.woff2 new file mode 100644 index 000000000..99d9f1c8d Binary files /dev/null and b/packages/fonts/files/FluxerSansHebrew/FluxerSansHebrew-Thin.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.000.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.000.woff2 new file mode 100644 index 000000000..0f2603299 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.001.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.001.woff2 new file mode 100644 index 000000000..0f80c01d3 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.002.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.002.woff2 new file mode 100644 index 000000000..199fa4f85 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.003.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.003.woff2 new file mode 100644 index 000000000..35902d3a7 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.004.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.004.woff2 new file mode 100644 index 000000000..cc3977482 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.005.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.005.woff2 new file mode 100644 index 000000000..fbe69d204 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.006.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.006.woff2 new file mode 100644 index 000000000..acbf715a8 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.007.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.007.woff2 new file mode 100644 index 000000000..96f8d2a0f Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.008.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.008.woff2 new file mode 100644 index 000000000..0d989bd29 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.009.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.009.woff2 new file mode 100644 index 000000000..993c4acb7 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.010.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.010.woff2 new file mode 100644 index 000000000..c7da03e07 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.011.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.011.woff2 new file mode 100644 index 000000000..024bf6247 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.012.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.012.woff2 new file mode 100644 index 000000000..ec0d9cf71 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.013.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.013.woff2 new file mode 100644 index 000000000..c95e5dedd Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.014.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.014.woff2 new file mode 100644 index 000000000..d70444d79 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.015.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.015.woff2 new file mode 100644 index 000000000..ffe6d3e3e Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.016.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.016.woff2 new file mode 100644 index 000000000..f57074ea6 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.017.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.017.woff2 new file mode 100644 index 000000000..b61e99a9a Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.018.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.018.woff2 new file mode 100644 index 000000000..5c8db5dba Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.019.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.019.woff2 new file mode 100644 index 000000000..83b10f0a7 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.020.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.020.woff2 new file mode 100644 index 000000000..88471444b Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.021.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.021.woff2 new file mode 100644 index 000000000..a2d875ed7 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.022.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.022.woff2 new file mode 100644 index 000000000..92524c6e5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.023.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.023.woff2 new file mode 100644 index 000000000..3e3c24b55 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.024.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.024.woff2 new file mode 100644 index 000000000..a48b01125 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.025.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.025.woff2 new file mode 100644 index 000000000..33505b586 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.026.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.026.woff2 new file mode 100644 index 000000000..a156f5100 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.027.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.027.woff2 new file mode 100644 index 000000000..c646f31ff Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.028.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.028.woff2 new file mode 100644 index 000000000..1ca7f201d Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.029.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.029.woff2 new file mode 100644 index 000000000..2b6d3eeca Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.030.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.030.woff2 new file mode 100644 index 000000000..be8127ccc Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.031.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.031.woff2 new file mode 100644 index 000000000..32f8a3307 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.032.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.032.woff2 new file mode 100644 index 000000000..127da5059 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.033.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.033.woff2 new file mode 100644 index 000000000..094e82dc5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.034.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.034.woff2 new file mode 100644 index 000000000..6a8118aa2 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.035.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.035.woff2 new file mode 100644 index 000000000..f5eb2f868 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.036.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.036.woff2 new file mode 100644 index 000000000..2f01587f6 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.037.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.037.woff2 new file mode 100644 index 000000000..0dc983d0d Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.038.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.038.woff2 new file mode 100644 index 000000000..516d0e3fe Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.039.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.039.woff2 new file mode 100644 index 000000000..6bf1acbf3 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.040.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.040.woff2 new file mode 100644 index 000000000..dda425745 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.041.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.041.woff2 new file mode 100644 index 000000000..a740a05b1 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.042.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.042.woff2 new file mode 100644 index 000000000..32df6dc53 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.043.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.043.woff2 new file mode 100644 index 000000000..cf55e5b87 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.044.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.044.woff2 new file mode 100644 index 000000000..1b9c119eb Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Bold.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.000.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.000.woff2 new file mode 100644 index 000000000..2df069104 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.001.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.001.woff2 new file mode 100644 index 000000000..4f043fc25 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.002.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.002.woff2 new file mode 100644 index 000000000..5ac050a14 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.003.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.003.woff2 new file mode 100644 index 000000000..7cb02f8f1 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.004.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.004.woff2 new file mode 100644 index 000000000..284af0445 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.005.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.005.woff2 new file mode 100644 index 000000000..7ac3a39fc Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.006.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.006.woff2 new file mode 100644 index 000000000..bd3e83991 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.007.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.007.woff2 new file mode 100644 index 000000000..9f08e3a72 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.008.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.008.woff2 new file mode 100644 index 000000000..5dbbca442 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.009.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.009.woff2 new file mode 100644 index 000000000..717977df6 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.010.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.010.woff2 new file mode 100644 index 000000000..6b22cc74a Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.011.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.011.woff2 new file mode 100644 index 000000000..554c2d6ad Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.012.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.012.woff2 new file mode 100644 index 000000000..90d38abc0 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.013.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.013.woff2 new file mode 100644 index 000000000..6000086f9 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.014.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.014.woff2 new file mode 100644 index 000000000..62361a08a Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.015.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.015.woff2 new file mode 100644 index 000000000..508eb0826 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.016.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.016.woff2 new file mode 100644 index 000000000..5da57b7cf Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.017.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.017.woff2 new file mode 100644 index 000000000..de4a9ff30 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.018.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.018.woff2 new file mode 100644 index 000000000..e3b5f526d Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.019.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.019.woff2 new file mode 100644 index 000000000..462d56404 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.020.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.020.woff2 new file mode 100644 index 000000000..2c4a79604 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.021.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.021.woff2 new file mode 100644 index 000000000..06e5bc153 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.022.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.022.woff2 new file mode 100644 index 000000000..967cf23eb Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.023.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.023.woff2 new file mode 100644 index 000000000..a6915c69e Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.024.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.024.woff2 new file mode 100644 index 000000000..58728ca87 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.025.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.025.woff2 new file mode 100644 index 000000000..7fc2b1f25 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.026.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.026.woff2 new file mode 100644 index 000000000..90ce1fa59 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.027.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.027.woff2 new file mode 100644 index 000000000..ea825c745 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.028.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.028.woff2 new file mode 100644 index 000000000..e72f717e8 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.029.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.029.woff2 new file mode 100644 index 000000000..23abc96f9 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.030.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.030.woff2 new file mode 100644 index 000000000..63aebaa4f Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.031.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.031.woff2 new file mode 100644 index 000000000..c44bba524 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.032.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.032.woff2 new file mode 100644 index 000000000..db4e34143 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.033.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.033.woff2 new file mode 100644 index 000000000..7f62d2e8a Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.034.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.034.woff2 new file mode 100644 index 000000000..04ff16efb Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.035.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.035.woff2 new file mode 100644 index 000000000..6ac063be1 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.036.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.036.woff2 new file mode 100644 index 000000000..cd61f08e7 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.037.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.037.woff2 new file mode 100644 index 000000000..3ff0d2046 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.038.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.038.woff2 new file mode 100644 index 000000000..24e42de9c Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.039.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.039.woff2 new file mode 100644 index 000000000..6f54cf0b6 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.040.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.040.woff2 new file mode 100644 index 000000000..4f6101c68 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.041.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.041.woff2 new file mode 100644 index 000000000..3f0487873 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.042.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.042.woff2 new file mode 100644 index 000000000..998106c02 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.043.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.043.woff2 new file mode 100644 index 000000000..278ff654c Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.044.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.044.woff2 new file mode 100644 index 000000000..6d45820f4 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-ExtraLight.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.000.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.000.woff2 new file mode 100644 index 000000000..441f8adb6 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.001.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.001.woff2 new file mode 100644 index 000000000..34e783145 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.002.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.002.woff2 new file mode 100644 index 000000000..5d583b02b Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.003.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.003.woff2 new file mode 100644 index 000000000..87048a3ee Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.004.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.004.woff2 new file mode 100644 index 000000000..c3778ffa7 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.005.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.005.woff2 new file mode 100644 index 000000000..bdc3aa959 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.006.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.006.woff2 new file mode 100644 index 000000000..f5840ded2 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.007.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.007.woff2 new file mode 100644 index 000000000..003ba3f4b Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.008.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.008.woff2 new file mode 100644 index 000000000..aa4d3d151 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.009.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.009.woff2 new file mode 100644 index 000000000..5bd4f0d1b Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.010.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.010.woff2 new file mode 100644 index 000000000..9a6cb0e4d Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.011.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.011.woff2 new file mode 100644 index 000000000..b95a03e7c Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.012.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.012.woff2 new file mode 100644 index 000000000..b0e476c52 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.013.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.013.woff2 new file mode 100644 index 000000000..826b51a42 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.014.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.014.woff2 new file mode 100644 index 000000000..6b91e8e99 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.015.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.015.woff2 new file mode 100644 index 000000000..78d6e5b49 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.016.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.016.woff2 new file mode 100644 index 000000000..b87179626 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.017.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.017.woff2 new file mode 100644 index 000000000..0c6bb31f0 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.018.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.018.woff2 new file mode 100644 index 000000000..3a1837866 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.019.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.019.woff2 new file mode 100644 index 000000000..25415e011 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.020.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.020.woff2 new file mode 100644 index 000000000..811810265 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.021.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.021.woff2 new file mode 100644 index 000000000..26e6d2b34 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.022.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.022.woff2 new file mode 100644 index 000000000..e3b40d19d Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.023.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.023.woff2 new file mode 100644 index 000000000..007da3e4c Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.024.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.024.woff2 new file mode 100644 index 000000000..d58638701 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.025.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.025.woff2 new file mode 100644 index 000000000..e1c975b2b Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.026.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.026.woff2 new file mode 100644 index 000000000..5ba5bfeb2 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.027.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.027.woff2 new file mode 100644 index 000000000..3467d97d3 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.028.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.028.woff2 new file mode 100644 index 000000000..6e2ff6b4e Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.029.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.029.woff2 new file mode 100644 index 000000000..e703946e3 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.030.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.030.woff2 new file mode 100644 index 000000000..4a591cfca Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.031.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.031.woff2 new file mode 100644 index 000000000..27734834a Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.032.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.032.woff2 new file mode 100644 index 000000000..ef663ed0f Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.033.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.033.woff2 new file mode 100644 index 000000000..fb3663cb0 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.034.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.034.woff2 new file mode 100644 index 000000000..186ce11e4 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.035.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.035.woff2 new file mode 100644 index 000000000..231cf0441 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.036.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.036.woff2 new file mode 100644 index 000000000..fe64f2b35 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.037.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.037.woff2 new file mode 100644 index 000000000..e73c84d49 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.038.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.038.woff2 new file mode 100644 index 000000000..6e860a666 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.039.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.039.woff2 new file mode 100644 index 000000000..19db95bb4 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.040.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.040.woff2 new file mode 100644 index 000000000..d9a671ec0 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.041.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.041.woff2 new file mode 100644 index 000000000..db441000c Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.042.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.042.woff2 new file mode 100644 index 000000000..17433726f Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.043.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.043.woff2 new file mode 100644 index 000000000..a03d484be Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.044.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.044.woff2 new file mode 100644 index 000000000..8579f5b9a Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Light.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.000.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.000.woff2 new file mode 100644 index 000000000..3cd6dbbfd Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.001.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.001.woff2 new file mode 100644 index 000000000..b49bd1065 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.002.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.002.woff2 new file mode 100644 index 000000000..fa6a04c05 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.003.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.003.woff2 new file mode 100644 index 000000000..f6b931392 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.004.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.004.woff2 new file mode 100644 index 000000000..979a0fab1 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.005.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.005.woff2 new file mode 100644 index 000000000..79e48e47c Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.006.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.006.woff2 new file mode 100644 index 000000000..bbaa619ca Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.007.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.007.woff2 new file mode 100644 index 000000000..3697914b5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.008.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.008.woff2 new file mode 100644 index 000000000..5f22e2f91 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.009.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.009.woff2 new file mode 100644 index 000000000..96d8204b8 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.010.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.010.woff2 new file mode 100644 index 000000000..4d9f80104 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.011.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.011.woff2 new file mode 100644 index 000000000..2141b0ba3 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.012.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.012.woff2 new file mode 100644 index 000000000..f92518792 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.013.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.013.woff2 new file mode 100644 index 000000000..994da2ed2 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.014.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.014.woff2 new file mode 100644 index 000000000..5fedfcb26 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.015.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.015.woff2 new file mode 100644 index 000000000..5dd6a9fc0 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.016.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.016.woff2 new file mode 100644 index 000000000..9aed25af7 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.017.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.017.woff2 new file mode 100644 index 000000000..5b2ed1811 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.018.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.018.woff2 new file mode 100644 index 000000000..000f3ceb4 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.019.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.019.woff2 new file mode 100644 index 000000000..bf48d5e28 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.020.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.020.woff2 new file mode 100644 index 000000000..b2696d6dc Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.021.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.021.woff2 new file mode 100644 index 000000000..7e475440f Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.022.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.022.woff2 new file mode 100644 index 000000000..565ad3524 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.023.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.023.woff2 new file mode 100644 index 000000000..eb1ef396a Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.024.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.024.woff2 new file mode 100644 index 000000000..e36a44262 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.025.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.025.woff2 new file mode 100644 index 000000000..4e59e8f3b Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.026.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.026.woff2 new file mode 100644 index 000000000..7fab8ae45 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.027.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.027.woff2 new file mode 100644 index 000000000..8bba4e176 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.028.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.028.woff2 new file mode 100644 index 000000000..502afeae6 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.029.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.029.woff2 new file mode 100644 index 000000000..7641979a8 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.030.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.030.woff2 new file mode 100644 index 000000000..7f0cf3d63 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.031.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.031.woff2 new file mode 100644 index 000000000..f3e626726 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.032.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.032.woff2 new file mode 100644 index 000000000..dbe19bdd5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.033.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.033.woff2 new file mode 100644 index 000000000..8ff83bbb9 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.034.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.034.woff2 new file mode 100644 index 000000000..abcf0ee09 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.035.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.035.woff2 new file mode 100644 index 000000000..381ad5ea9 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.036.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.036.woff2 new file mode 100644 index 000000000..0984b363d Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.037.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.037.woff2 new file mode 100644 index 000000000..21e501c8a Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.038.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.038.woff2 new file mode 100644 index 000000000..22d370a35 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.039.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.039.woff2 new file mode 100644 index 000000000..9444eb545 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.040.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.040.woff2 new file mode 100644 index 000000000..40ae92516 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.041.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.041.woff2 new file mode 100644 index 000000000..290096243 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.042.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.042.woff2 new file mode 100644 index 000000000..0d1a1fdd5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.043.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.043.woff2 new file mode 100644 index 000000000..7c73e14e0 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.044.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.044.woff2 new file mode 100644 index 000000000..20c6b77e5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Medium.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.000.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.000.woff2 new file mode 100644 index 000000000..a98964e3b Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.001.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.001.woff2 new file mode 100644 index 000000000..487679e82 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.002.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.002.woff2 new file mode 100644 index 000000000..065232836 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.003.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.003.woff2 new file mode 100644 index 000000000..d177421d0 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.004.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.004.woff2 new file mode 100644 index 000000000..fbd2086b2 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.005.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.005.woff2 new file mode 100644 index 000000000..df9175b60 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.006.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.006.woff2 new file mode 100644 index 000000000..e0517cf79 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.007.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.007.woff2 new file mode 100644 index 000000000..df209de08 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.008.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.008.woff2 new file mode 100644 index 000000000..78b8f8873 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.009.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.009.woff2 new file mode 100644 index 000000000..e2fc8da9e Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.010.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.010.woff2 new file mode 100644 index 000000000..6a5c4bbae Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.011.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.011.woff2 new file mode 100644 index 000000000..e0c0d5d4e Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.012.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.012.woff2 new file mode 100644 index 000000000..9576ac766 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.013.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.013.woff2 new file mode 100644 index 000000000..cd34891c9 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.014.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.014.woff2 new file mode 100644 index 000000000..34910a5a0 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.015.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.015.woff2 new file mode 100644 index 000000000..7632ff43c Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.016.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.016.woff2 new file mode 100644 index 000000000..f03f7d814 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.017.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.017.woff2 new file mode 100644 index 000000000..7ed932eb4 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.018.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.018.woff2 new file mode 100644 index 000000000..bc6ca9265 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.019.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.019.woff2 new file mode 100644 index 000000000..c183b7c04 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.020.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.020.woff2 new file mode 100644 index 000000000..6a881ee1e Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.021.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.021.woff2 new file mode 100644 index 000000000..7c3a43eb3 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.022.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.022.woff2 new file mode 100644 index 000000000..253b70e07 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.023.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.023.woff2 new file mode 100644 index 000000000..af0a0fe29 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.024.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.024.woff2 new file mode 100644 index 000000000..d5de8f5e9 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.025.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.025.woff2 new file mode 100644 index 000000000..650abdfc5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.026.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.026.woff2 new file mode 100644 index 000000000..b4a89632e Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.027.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.027.woff2 new file mode 100644 index 000000000..9aea71e45 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.028.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.028.woff2 new file mode 100644 index 000000000..4c3a8d8d6 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.029.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.029.woff2 new file mode 100644 index 000000000..8bd902742 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.030.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.030.woff2 new file mode 100644 index 000000000..4b637feea Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.031.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.031.woff2 new file mode 100644 index 000000000..eb7edf490 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.032.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.032.woff2 new file mode 100644 index 000000000..3577475a5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.033.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.033.woff2 new file mode 100644 index 000000000..d64afd2b6 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.034.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.034.woff2 new file mode 100644 index 000000000..5d432fd00 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.035.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.035.woff2 new file mode 100644 index 000000000..6c6bc68d4 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.036.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.036.woff2 new file mode 100644 index 000000000..6fe52d0cd Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.037.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.037.woff2 new file mode 100644 index 000000000..f2f73c000 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.038.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.038.woff2 new file mode 100644 index 000000000..d60929860 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.039.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.039.woff2 new file mode 100644 index 000000000..7138b0009 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.040.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.040.woff2 new file mode 100644 index 000000000..6fee6a3a3 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.041.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.041.woff2 new file mode 100644 index 000000000..582c6d327 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.042.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.042.woff2 new file mode 100644 index 000000000..b0f20afea Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.043.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.043.woff2 new file mode 100644 index 000000000..ad22975ed Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.044.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.044.woff2 new file mode 100644 index 000000000..8c191edfb Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Regular.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.000.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.000.woff2 new file mode 100644 index 000000000..b3253db24 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.001.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.001.woff2 new file mode 100644 index 000000000..0a4eef8ca Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.002.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.002.woff2 new file mode 100644 index 000000000..5f1279f33 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.003.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.003.woff2 new file mode 100644 index 000000000..98beaca54 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.004.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.004.woff2 new file mode 100644 index 000000000..d41542430 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.005.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.005.woff2 new file mode 100644 index 000000000..05bbce79e Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.006.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.006.woff2 new file mode 100644 index 000000000..e5bd6d579 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.007.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.007.woff2 new file mode 100644 index 000000000..374a20642 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.008.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.008.woff2 new file mode 100644 index 000000000..b82b96cf1 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.009.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.009.woff2 new file mode 100644 index 000000000..fe59a00c8 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.010.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.010.woff2 new file mode 100644 index 000000000..c52a867b1 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.011.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.011.woff2 new file mode 100644 index 000000000..627e5e009 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.012.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.012.woff2 new file mode 100644 index 000000000..52121cab3 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.013.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.013.woff2 new file mode 100644 index 000000000..11f4d7d0d Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.014.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.014.woff2 new file mode 100644 index 000000000..8f232d1ab Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.015.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.015.woff2 new file mode 100644 index 000000000..7ce61f3c7 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.016.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.016.woff2 new file mode 100644 index 000000000..32db41ca2 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.017.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.017.woff2 new file mode 100644 index 000000000..ff429a48d Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.018.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.018.woff2 new file mode 100644 index 000000000..825d8055c Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.019.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.019.woff2 new file mode 100644 index 000000000..81be0e6bc Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.020.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.020.woff2 new file mode 100644 index 000000000..4c0d0c23b Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.021.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.021.woff2 new file mode 100644 index 000000000..2726a7cd4 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.022.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.022.woff2 new file mode 100644 index 000000000..25ee51897 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.023.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.023.woff2 new file mode 100644 index 000000000..42e7d58cc Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.024.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.024.woff2 new file mode 100644 index 000000000..33fb9484e Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.025.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.025.woff2 new file mode 100644 index 000000000..874322278 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.026.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.026.woff2 new file mode 100644 index 000000000..9bf1f5c4b Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.027.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.027.woff2 new file mode 100644 index 000000000..fb69c5cd6 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.028.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.028.woff2 new file mode 100644 index 000000000..9a7b27522 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.029.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.029.woff2 new file mode 100644 index 000000000..a86a4c909 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.030.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.030.woff2 new file mode 100644 index 000000000..2e6915070 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.031.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.031.woff2 new file mode 100644 index 000000000..c211cd924 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.032.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.032.woff2 new file mode 100644 index 000000000..001bfa99b Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.033.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.033.woff2 new file mode 100644 index 000000000..5d2feeee1 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.034.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.034.woff2 new file mode 100644 index 000000000..2cb51ade1 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.035.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.035.woff2 new file mode 100644 index 000000000..ddf863762 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.036.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.036.woff2 new file mode 100644 index 000000000..27f9a51a5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.037.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.037.woff2 new file mode 100644 index 000000000..88fa5abf0 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.038.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.038.woff2 new file mode 100644 index 000000000..5c17269fd Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.039.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.039.woff2 new file mode 100644 index 000000000..7d816a701 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.040.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.040.woff2 new file mode 100644 index 000000000..a584c5ec3 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.041.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.041.woff2 new file mode 100644 index 000000000..854b4b30e Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.042.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.042.woff2 new file mode 100644 index 000000000..1901c2dcd Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.043.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.043.woff2 new file mode 100644 index 000000000..f9db12aba Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.044.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.044.woff2 new file mode 100644 index 000000000..807cffc34 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-SemiBold.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.000.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.000.woff2 new file mode 100644 index 000000000..0c68fcc6f Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.001.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.001.woff2 new file mode 100644 index 000000000..f37e5324b Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.002.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.002.woff2 new file mode 100644 index 000000000..e478fa218 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.003.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.003.woff2 new file mode 100644 index 000000000..c8926cdc4 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.004.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.004.woff2 new file mode 100644 index 000000000..bab68487f Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.005.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.005.woff2 new file mode 100644 index 000000000..c271ea631 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.006.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.006.woff2 new file mode 100644 index 000000000..c67f2598e Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.007.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.007.woff2 new file mode 100644 index 000000000..8d74a7470 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.008.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.008.woff2 new file mode 100644 index 000000000..942c80436 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.009.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.009.woff2 new file mode 100644 index 000000000..114c38ee5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.010.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.010.woff2 new file mode 100644 index 000000000..704a0e9f8 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.011.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.011.woff2 new file mode 100644 index 000000000..98270b4e3 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.012.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.012.woff2 new file mode 100644 index 000000000..14e4e6ea1 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.013.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.013.woff2 new file mode 100644 index 000000000..ff29830ad Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.014.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.014.woff2 new file mode 100644 index 000000000..537798ca6 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.015.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.015.woff2 new file mode 100644 index 000000000..f9bd7da7c Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.016.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.016.woff2 new file mode 100644 index 000000000..e1a271af2 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.017.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.017.woff2 new file mode 100644 index 000000000..e3e04efb2 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.018.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.018.woff2 new file mode 100644 index 000000000..4a7ab4b71 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.019.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.019.woff2 new file mode 100644 index 000000000..93965c8ec Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.020.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.020.woff2 new file mode 100644 index 000000000..e44e84eef Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.021.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.021.woff2 new file mode 100644 index 000000000..6d96b882c Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.022.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.022.woff2 new file mode 100644 index 000000000..a7cd62504 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.023.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.023.woff2 new file mode 100644 index 000000000..de5c98c04 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.024.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.024.woff2 new file mode 100644 index 000000000..87bebd077 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.025.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.025.woff2 new file mode 100644 index 000000000..91a2a8509 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.026.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.026.woff2 new file mode 100644 index 000000000..9d331c7ad Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.027.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.027.woff2 new file mode 100644 index 000000000..c5fdef89f Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.028.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.028.woff2 new file mode 100644 index 000000000..8511ffef0 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.029.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.029.woff2 new file mode 100644 index 000000000..7b4420981 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.030.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.030.woff2 new file mode 100644 index 000000000..635ce5d0a Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.031.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.031.woff2 new file mode 100644 index 000000000..ea4b2dd8a Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.032.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.032.woff2 new file mode 100644 index 000000000..6284823ad Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.033.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.033.woff2 new file mode 100644 index 000000000..8dc70a96f Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.034.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.034.woff2 new file mode 100644 index 000000000..455dce0cf Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.035.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.035.woff2 new file mode 100644 index 000000000..951e34e39 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.036.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.036.woff2 new file mode 100644 index 000000000..e85089938 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.037.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.037.woff2 new file mode 100644 index 000000000..4e5b2c4b8 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.038.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.038.woff2 new file mode 100644 index 000000000..fbaf0685b Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.039.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.039.woff2 new file mode 100644 index 000000000..ad9e4ba41 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.040.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.040.woff2 new file mode 100644 index 000000000..dbdb8b46e Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.041.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.041.woff2 new file mode 100644 index 000000000..bc3cce016 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.042.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.042.woff2 new file mode 100644 index 000000000..b164d9ff5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.043.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.043.woff2 new file mode 100644 index 000000000..1dd4a23a1 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.044.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.044.woff2 new file mode 100644 index 000000000..c6893a682 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Text.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.000.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.000.woff2 new file mode 100644 index 000000000..4df9c8a61 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.001.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.001.woff2 new file mode 100644 index 000000000..157430cdb Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.002.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.002.woff2 new file mode 100644 index 000000000..0b0878502 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.003.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.003.woff2 new file mode 100644 index 000000000..7cca2093f Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.004.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.004.woff2 new file mode 100644 index 000000000..77fed28b1 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.005.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.005.woff2 new file mode 100644 index 000000000..7e763a9cd Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.006.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.006.woff2 new file mode 100644 index 000000000..978e6c7a5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.007.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.007.woff2 new file mode 100644 index 000000000..2e46b8407 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.008.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.008.woff2 new file mode 100644 index 000000000..3dd1ea3e2 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.009.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.009.woff2 new file mode 100644 index 000000000..74f46e158 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.010.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.010.woff2 new file mode 100644 index 000000000..cd78e55a1 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.011.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.011.woff2 new file mode 100644 index 000000000..36fcf598d Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.012.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.012.woff2 new file mode 100644 index 000000000..237261d82 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.013.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.013.woff2 new file mode 100644 index 000000000..7611b4409 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.014.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.014.woff2 new file mode 100644 index 000000000..009d6e0f1 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.015.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.015.woff2 new file mode 100644 index 000000000..d88e381ba Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.016.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.016.woff2 new file mode 100644 index 000000000..2d7755dae Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.017.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.017.woff2 new file mode 100644 index 000000000..0b9d14ae0 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.018.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.018.woff2 new file mode 100644 index 000000000..dc1609da0 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.019.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.019.woff2 new file mode 100644 index 000000000..3fb5891a0 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.020.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.020.woff2 new file mode 100644 index 000000000..1cd51e468 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.021.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.021.woff2 new file mode 100644 index 000000000..0b3d01c8f Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.022.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.022.woff2 new file mode 100644 index 000000000..2f2a35bb5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.023.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.023.woff2 new file mode 100644 index 000000000..967d1bde8 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.024.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.024.woff2 new file mode 100644 index 000000000..d390283f9 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.025.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.025.woff2 new file mode 100644 index 000000000..d7ea225b7 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.026.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.026.woff2 new file mode 100644 index 000000000..92ba60117 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.027.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.027.woff2 new file mode 100644 index 000000000..33dfb7762 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.028.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.028.woff2 new file mode 100644 index 000000000..56c5f58b2 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.029.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.029.woff2 new file mode 100644 index 000000000..4b22aaa5d Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.030.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.030.woff2 new file mode 100644 index 000000000..811c51981 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.031.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.031.woff2 new file mode 100644 index 000000000..e49e9cf61 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.032.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.032.woff2 new file mode 100644 index 000000000..c5c4dadd5 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.033.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.033.woff2 new file mode 100644 index 000000000..760db724f Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.034.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.034.woff2 new file mode 100644 index 000000000..1314a5eb2 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.035.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.035.woff2 new file mode 100644 index 000000000..9b0cf9033 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.036.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.036.woff2 new file mode 100644 index 000000000..e43d5105e Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.037.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.037.woff2 new file mode 100644 index 000000000..df610ce75 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.038.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.038.woff2 new file mode 100644 index 000000000..49bb6c0e2 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.039.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.039.woff2 new file mode 100644 index 000000000..073aa127f Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.040.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.040.woff2 new file mode 100644 index 000000000..ac841b852 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.041.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.041.woff2 new file mode 100644 index 000000000..9f007eb5c Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.042.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.042.woff2 new file mode 100644 index 000000000..cb5a2372d Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.043.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.043.woff2 new file mode 100644 index 000000000..8a610b1b4 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.044.woff2 b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.044.woff2 new file mode 100644 index 000000000..6ac429616 Binary files /dev/null and b/packages/fonts/files/FluxerSansJP/FluxerSansJP-Thin.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.000.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.000.woff2 new file mode 100644 index 000000000..caa81591d Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.001.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.001.woff2 new file mode 100644 index 000000000..708b36607 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.002.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.002.woff2 new file mode 100644 index 000000000..2ad1c2027 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.003.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.003.woff2 new file mode 100644 index 000000000..f6ec2fe48 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.004.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.004.woff2 new file mode 100644 index 000000000..d405add01 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.005.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.005.woff2 new file mode 100644 index 000000000..7eb0e3e2f Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.006.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.006.woff2 new file mode 100644 index 000000000..089ae8eb5 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.007.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.007.woff2 new file mode 100644 index 000000000..43e8cd15f Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.008.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.008.woff2 new file mode 100644 index 000000000..eb12ce759 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.009.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.009.woff2 new file mode 100644 index 000000000..1ef2c1669 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Bold.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.000.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.000.woff2 new file mode 100644 index 000000000..5a516e194 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.001.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.001.woff2 new file mode 100644 index 000000000..6665c0685 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.002.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.002.woff2 new file mode 100644 index 000000000..c72c77d29 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.003.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.003.woff2 new file mode 100644 index 000000000..337eae3ef Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.004.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.004.woff2 new file mode 100644 index 000000000..fb58d6075 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.005.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.005.woff2 new file mode 100644 index 000000000..596cc0938 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.006.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.006.woff2 new file mode 100644 index 000000000..b05053fc1 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.007.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.007.woff2 new file mode 100644 index 000000000..f778302fd Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.008.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.008.woff2 new file mode 100644 index 000000000..901f26416 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.009.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.009.woff2 new file mode 100644 index 000000000..98e61d10c Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-ExtraLight.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.000.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.000.woff2 new file mode 100644 index 000000000..a5c80d1c5 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.001.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.001.woff2 new file mode 100644 index 000000000..2d8bc00c3 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.002.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.002.woff2 new file mode 100644 index 000000000..bd9df5762 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.003.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.003.woff2 new file mode 100644 index 000000000..3ee864917 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.004.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.004.woff2 new file mode 100644 index 000000000..2adaa7dc1 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.005.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.005.woff2 new file mode 100644 index 000000000..39bb18c9c Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.006.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.006.woff2 new file mode 100644 index 000000000..49b9f8e3d Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.007.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.007.woff2 new file mode 100644 index 000000000..fb56a4cbc Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.008.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.008.woff2 new file mode 100644 index 000000000..6313c0006 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.009.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.009.woff2 new file mode 100644 index 000000000..02335ead5 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Light.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.000.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.000.woff2 new file mode 100644 index 000000000..e99d3ea40 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.001.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.001.woff2 new file mode 100644 index 000000000..f68220927 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.002.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.002.woff2 new file mode 100644 index 000000000..85ab337a4 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.003.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.003.woff2 new file mode 100644 index 000000000..e1169844d Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.004.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.004.woff2 new file mode 100644 index 000000000..921d7467b Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.005.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.005.woff2 new file mode 100644 index 000000000..c185a69b9 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.006.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.006.woff2 new file mode 100644 index 000000000..0b8146afb Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.007.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.007.woff2 new file mode 100644 index 000000000..e380ac6b2 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.008.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.008.woff2 new file mode 100644 index 000000000..782fa0876 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.009.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.009.woff2 new file mode 100644 index 000000000..ff535b910 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Medium.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.000.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.000.woff2 new file mode 100644 index 000000000..0a8129aaf Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.001.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.001.woff2 new file mode 100644 index 000000000..ba0935926 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.002.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.002.woff2 new file mode 100644 index 000000000..9ab6c36eb Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.003.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.003.woff2 new file mode 100644 index 000000000..bdca9f885 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.004.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.004.woff2 new file mode 100644 index 000000000..3e790c619 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.005.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.005.woff2 new file mode 100644 index 000000000..2696085be Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.006.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.006.woff2 new file mode 100644 index 000000000..a419a0a55 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.007.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.007.woff2 new file mode 100644 index 000000000..245c609c5 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.008.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.008.woff2 new file mode 100644 index 000000000..9e3d5cb95 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.009.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.009.woff2 new file mode 100644 index 000000000..069644e3c Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Regular.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.000.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.000.woff2 new file mode 100644 index 000000000..1fb355586 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.001.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.001.woff2 new file mode 100644 index 000000000..4807dee34 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.002.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.002.woff2 new file mode 100644 index 000000000..15b3671d3 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.003.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.003.woff2 new file mode 100644 index 000000000..cea6e8dfa Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.004.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.004.woff2 new file mode 100644 index 000000000..567f9f176 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.005.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.005.woff2 new file mode 100644 index 000000000..76edcd20b Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.006.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.006.woff2 new file mode 100644 index 000000000..bcd53b05b Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.007.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.007.woff2 new file mode 100644 index 000000000..c77e597f1 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.008.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.008.woff2 new file mode 100644 index 000000000..12f0c5d13 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.009.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.009.woff2 new file mode 100644 index 000000000..69460a6eb Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-SemiBold.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.000.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.000.woff2 new file mode 100644 index 000000000..eb793e35d Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.001.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.001.woff2 new file mode 100644 index 000000000..69c2483c6 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.002.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.002.woff2 new file mode 100644 index 000000000..2efc77bfc Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.003.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.003.woff2 new file mode 100644 index 000000000..5e8e2cf21 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.004.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.004.woff2 new file mode 100644 index 000000000..503eed8d8 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.005.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.005.woff2 new file mode 100644 index 000000000..6e6b51609 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.006.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.006.woff2 new file mode 100644 index 000000000..39fce9e7a Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.007.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.007.woff2 new file mode 100644 index 000000000..f9f2ede58 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.008.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.008.woff2 new file mode 100644 index 000000000..770d5a803 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.009.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.009.woff2 new file mode 100644 index 000000000..c5e9bc625 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Text.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.000.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.000.woff2 new file mode 100644 index 000000000..3efdcb481 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.001.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.001.woff2 new file mode 100644 index 000000000..c700a4b65 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.002.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.002.woff2 new file mode 100644 index 000000000..aaa52d534 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.003.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.003.woff2 new file mode 100644 index 000000000..756b555fe Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.004.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.004.woff2 new file mode 100644 index 000000000..96aad053a Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.005.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.005.woff2 new file mode 100644 index 000000000..fa94b64cc Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.006.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.006.woff2 new file mode 100644 index 000000000..2a7b4d5c0 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.007.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.007.woff2 new file mode 100644 index 000000000..edc47335a Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.008.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.008.woff2 new file mode 100644 index 000000000..2691f999f Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.009.woff2 b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.009.woff2 new file mode 100644 index 000000000..743795d20 Binary files /dev/null and b/packages/fonts/files/FluxerSansKR/FluxerSansKR-Thin.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.000.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.000.woff2 new file mode 100644 index 000000000..248891064 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.001.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.001.woff2 new file mode 100644 index 000000000..914930cd5 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.002.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.002.woff2 new file mode 100644 index 000000000..e25a66b61 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.003.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.003.woff2 new file mode 100644 index 000000000..f1d155f92 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.004.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.004.woff2 new file mode 100644 index 000000000..46827017b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.005.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.005.woff2 new file mode 100644 index 000000000..096245165 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.006.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.006.woff2 new file mode 100644 index 000000000..568304ea9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.007.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.007.woff2 new file mode 100644 index 000000000..50677563f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.008.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.008.woff2 new file mode 100644 index 000000000..13b30be28 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.009.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.009.woff2 new file mode 100644 index 000000000..b2355ca84 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.010.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.010.woff2 new file mode 100644 index 000000000..8d5c890aa Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.011.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.011.woff2 new file mode 100644 index 000000000..f6213e412 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.012.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.012.woff2 new file mode 100644 index 000000000..3b13d9783 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.013.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.013.woff2 new file mode 100644 index 000000000..369bc5055 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.014.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.014.woff2 new file mode 100644 index 000000000..214196df3 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.015.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.015.woff2 new file mode 100644 index 000000000..551fb5070 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.016.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.016.woff2 new file mode 100644 index 000000000..9d4d7c85a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.017.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.017.woff2 new file mode 100644 index 000000000..4e08ddd7c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.018.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.018.woff2 new file mode 100644 index 000000000..5892019dc Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.019.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.019.woff2 new file mode 100644 index 000000000..3b6cd1690 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.020.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.020.woff2 new file mode 100644 index 000000000..fb2a671c7 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.021.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.021.woff2 new file mode 100644 index 000000000..bd34e839b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.022.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.022.woff2 new file mode 100644 index 000000000..2afdb915b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.023.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.023.woff2 new file mode 100644 index 000000000..df256e055 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.024.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.024.woff2 new file mode 100644 index 000000000..ab476209c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.025.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.025.woff2 new file mode 100644 index 000000000..52011eed2 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.026.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.026.woff2 new file mode 100644 index 000000000..04724124a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.027.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.027.woff2 new file mode 100644 index 000000000..694900c39 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.028.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.028.woff2 new file mode 100644 index 000000000..d031e7f54 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.029.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.029.woff2 new file mode 100644 index 000000000..de76e443a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.030.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.030.woff2 new file mode 100644 index 000000000..54203ab0a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.031.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.031.woff2 new file mode 100644 index 000000000..bbe9267a9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.032.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.032.woff2 new file mode 100644 index 000000000..20fd1f670 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.033.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.033.woff2 new file mode 100644 index 000000000..7084ba207 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.034.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.034.woff2 new file mode 100644 index 000000000..df291bf86 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.035.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.035.woff2 new file mode 100644 index 000000000..78217b5a4 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.036.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.036.woff2 new file mode 100644 index 000000000..57c7cc84b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.037.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.037.woff2 new file mode 100644 index 000000000..b96bb168d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.038.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.038.woff2 new file mode 100644 index 000000000..833b0075f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.039.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.039.woff2 new file mode 100644 index 000000000..32a690de1 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.040.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.040.woff2 new file mode 100644 index 000000000..f37fb48f5 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.041.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.041.woff2 new file mode 100644 index 000000000..e32ba7359 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.042.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.042.woff2 new file mode 100644 index 000000000..6103cd04e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.043.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.043.woff2 new file mode 100644 index 000000000..df14f1def Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.044.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.044.woff2 new file mode 100644 index 000000000..fd2f9acb3 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.045.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.045.woff2 new file mode 100644 index 000000000..cd67e26fe Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.046.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.046.woff2 new file mode 100644 index 000000000..43a0a160a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.047.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.047.woff2 new file mode 100644 index 000000000..89bd771e3 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.048.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.048.woff2 new file mode 100644 index 000000000..c39573bd4 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.049.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.049.woff2 new file mode 100644 index 000000000..1943abe82 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.050.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.050.woff2 new file mode 100644 index 000000000..36ae83d46 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.050.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.051.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.051.woff2 new file mode 100644 index 000000000..85b02d483 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.051.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.052.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.052.woff2 new file mode 100644 index 000000000..49df2df45 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.052.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.053.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.053.woff2 new file mode 100644 index 000000000..bf3d3d549 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.053.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.054.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.054.woff2 new file mode 100644 index 000000000..9614c1c4b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.054.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.055.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.055.woff2 new file mode 100644 index 000000000..cfbf36fb2 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.055.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.056.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.056.woff2 new file mode 100644 index 000000000..d65994147 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.056.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.057.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.057.woff2 new file mode 100644 index 000000000..a6164ba2c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.057.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.058.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.058.woff2 new file mode 100644 index 000000000..e4417c57a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.058.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.059.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.059.woff2 new file mode 100644 index 000000000..1358a9bae Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.059.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.060.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.060.woff2 new file mode 100644 index 000000000..8323486c4 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.060.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.061.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.061.woff2 new file mode 100644 index 000000000..a0b10216d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.061.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.062.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.062.woff2 new file mode 100644 index 000000000..ec66bdf04 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.062.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.063.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.063.woff2 new file mode 100644 index 000000000..8b3cbe148 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.063.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.064.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.064.woff2 new file mode 100644 index 000000000..7fd2167b8 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.064.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.065.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.065.woff2 new file mode 100644 index 000000000..2d2dfd2d7 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.065.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.066.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.066.woff2 new file mode 100644 index 000000000..60915c90a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.066.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.067.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.067.woff2 new file mode 100644 index 000000000..01c2cf5c9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.067.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.068.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.068.woff2 new file mode 100644 index 000000000..246835981 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Bold.068.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.000.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.000.woff2 new file mode 100644 index 000000000..1ffbedf6e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.001.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.001.woff2 new file mode 100644 index 000000000..6469e84eb Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.002.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.002.woff2 new file mode 100644 index 000000000..60438e6b5 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.003.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.003.woff2 new file mode 100644 index 000000000..53d636a67 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.004.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.004.woff2 new file mode 100644 index 000000000..85cca4222 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.005.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.005.woff2 new file mode 100644 index 000000000..e800f8aec Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.006.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.006.woff2 new file mode 100644 index 000000000..f4892926c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.007.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.007.woff2 new file mode 100644 index 000000000..fb7148536 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.008.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.008.woff2 new file mode 100644 index 000000000..1e719574a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.009.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.009.woff2 new file mode 100644 index 000000000..3efe638c0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.010.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.010.woff2 new file mode 100644 index 000000000..74453a6b0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.011.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.011.woff2 new file mode 100644 index 000000000..196d4f0ae Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.012.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.012.woff2 new file mode 100644 index 000000000..830709a6c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.013.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.013.woff2 new file mode 100644 index 000000000..56e167746 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.014.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.014.woff2 new file mode 100644 index 000000000..b6898b865 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.015.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.015.woff2 new file mode 100644 index 000000000..07ac3857d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.016.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.016.woff2 new file mode 100644 index 000000000..3fd5686cb Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.017.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.017.woff2 new file mode 100644 index 000000000..51616016e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.018.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.018.woff2 new file mode 100644 index 000000000..5aaa2a89e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.019.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.019.woff2 new file mode 100644 index 000000000..70247fcfb Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.020.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.020.woff2 new file mode 100644 index 000000000..bd8ab7251 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.021.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.021.woff2 new file mode 100644 index 000000000..904db5e00 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.022.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.022.woff2 new file mode 100644 index 000000000..a685bd6f2 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.023.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.023.woff2 new file mode 100644 index 000000000..09348437a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.024.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.024.woff2 new file mode 100644 index 000000000..1b8192309 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.025.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.025.woff2 new file mode 100644 index 000000000..5cb4f4fe1 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.026.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.026.woff2 new file mode 100644 index 000000000..a8f8b201b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.027.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.027.woff2 new file mode 100644 index 000000000..9ebb967e6 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.028.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.028.woff2 new file mode 100644 index 000000000..f0c9713ba Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.029.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.029.woff2 new file mode 100644 index 000000000..a73eb795f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.030.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.030.woff2 new file mode 100644 index 000000000..92c30b461 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.031.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.031.woff2 new file mode 100644 index 000000000..07b4d958c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.032.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.032.woff2 new file mode 100644 index 000000000..f5e10ed58 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.033.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.033.woff2 new file mode 100644 index 000000000..98217c456 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.034.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.034.woff2 new file mode 100644 index 000000000..8cf16b637 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.035.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.035.woff2 new file mode 100644 index 000000000..2507de7ee Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.036.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.036.woff2 new file mode 100644 index 000000000..16ab479c8 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.037.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.037.woff2 new file mode 100644 index 000000000..48977c03b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.038.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.038.woff2 new file mode 100644 index 000000000..ba85efb30 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.039.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.039.woff2 new file mode 100644 index 000000000..695d3136c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.040.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.040.woff2 new file mode 100644 index 000000000..897179bdc Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.041.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.041.woff2 new file mode 100644 index 000000000..e5f2d2524 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.042.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.042.woff2 new file mode 100644 index 000000000..044e15994 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.043.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.043.woff2 new file mode 100644 index 000000000..5b021ee94 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.044.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.044.woff2 new file mode 100644 index 000000000..7415a2948 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.045.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.045.woff2 new file mode 100644 index 000000000..6992b7c6f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.046.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.046.woff2 new file mode 100644 index 000000000..10b7999a3 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.047.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.047.woff2 new file mode 100644 index 000000000..8cd7d8db1 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.048.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.048.woff2 new file mode 100644 index 000000000..351ce2698 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.049.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.049.woff2 new file mode 100644 index 000000000..64d0cb18a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.050.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.050.woff2 new file mode 100644 index 000000000..8ead60c3d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.050.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.051.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.051.woff2 new file mode 100644 index 000000000..1e39926c0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.051.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.052.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.052.woff2 new file mode 100644 index 000000000..e7e3ae838 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.052.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.053.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.053.woff2 new file mode 100644 index 000000000..2b516a97d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.053.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.054.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.054.woff2 new file mode 100644 index 000000000..ad95d079a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.054.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.055.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.055.woff2 new file mode 100644 index 000000000..1eeb1c1c4 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.055.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.056.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.056.woff2 new file mode 100644 index 000000000..d8a979f3c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.056.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.057.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.057.woff2 new file mode 100644 index 000000000..727fe3ae0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.057.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.058.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.058.woff2 new file mode 100644 index 000000000..0fb3bed24 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.058.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.059.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.059.woff2 new file mode 100644 index 000000000..ae9c29d5f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.059.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.060.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.060.woff2 new file mode 100644 index 000000000..407189c2e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.060.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.061.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.061.woff2 new file mode 100644 index 000000000..2559ce821 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.061.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.062.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.062.woff2 new file mode 100644 index 000000000..fbc3b3995 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.062.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.063.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.063.woff2 new file mode 100644 index 000000000..ac08af80c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.063.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.064.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.064.woff2 new file mode 100644 index 000000000..23607d4c6 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.064.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.065.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.065.woff2 new file mode 100644 index 000000000..42b3ecee7 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.065.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.066.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.066.woff2 new file mode 100644 index 000000000..51c39b1ae Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.066.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.067.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.067.woff2 new file mode 100644 index 000000000..3e081ee32 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.067.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.068.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.068.woff2 new file mode 100644 index 000000000..dbc867912 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-ExtraLight.068.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.000.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.000.woff2 new file mode 100644 index 000000000..1223c2cbd Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.001.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.001.woff2 new file mode 100644 index 000000000..d23d61eb8 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.002.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.002.woff2 new file mode 100644 index 000000000..09d0e8852 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.003.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.003.woff2 new file mode 100644 index 000000000..b1d9bb2c0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.004.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.004.woff2 new file mode 100644 index 000000000..730f40724 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.005.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.005.woff2 new file mode 100644 index 000000000..04b9bf239 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.006.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.006.woff2 new file mode 100644 index 000000000..bdc7084a7 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.007.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.007.woff2 new file mode 100644 index 000000000..3aea2a155 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.008.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.008.woff2 new file mode 100644 index 000000000..e389d4d40 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.009.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.009.woff2 new file mode 100644 index 000000000..77a0dcb00 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.010.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.010.woff2 new file mode 100644 index 000000000..8fa885143 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.011.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.011.woff2 new file mode 100644 index 000000000..3ba62d064 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.012.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.012.woff2 new file mode 100644 index 000000000..a13e4345b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.013.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.013.woff2 new file mode 100644 index 000000000..ff34181a9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.014.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.014.woff2 new file mode 100644 index 000000000..7ff1bd107 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.015.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.015.woff2 new file mode 100644 index 000000000..25bad3359 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.016.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.016.woff2 new file mode 100644 index 000000000..27705e5ec Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.017.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.017.woff2 new file mode 100644 index 000000000..08039e882 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.018.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.018.woff2 new file mode 100644 index 000000000..be2e24446 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.019.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.019.woff2 new file mode 100644 index 000000000..241fbb9d7 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.020.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.020.woff2 new file mode 100644 index 000000000..f8cd9d937 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.021.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.021.woff2 new file mode 100644 index 000000000..4a389ca62 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.022.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.022.woff2 new file mode 100644 index 000000000..e9858b687 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.023.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.023.woff2 new file mode 100644 index 000000000..2ddf60c4c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.024.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.024.woff2 new file mode 100644 index 000000000..8709a82f1 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.025.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.025.woff2 new file mode 100644 index 000000000..872727cce Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.026.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.026.woff2 new file mode 100644 index 000000000..d1ad36ae2 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.027.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.027.woff2 new file mode 100644 index 000000000..ef8832a40 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.028.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.028.woff2 new file mode 100644 index 000000000..8a5ae828a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.029.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.029.woff2 new file mode 100644 index 000000000..4fa8e77e7 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.030.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.030.woff2 new file mode 100644 index 000000000..0ef1e5cb6 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.031.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.031.woff2 new file mode 100644 index 000000000..532f83108 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.032.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.032.woff2 new file mode 100644 index 000000000..33758016d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.033.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.033.woff2 new file mode 100644 index 000000000..6e890a818 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.034.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.034.woff2 new file mode 100644 index 000000000..be175cab3 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.035.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.035.woff2 new file mode 100644 index 000000000..871c8d5c0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.036.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.036.woff2 new file mode 100644 index 000000000..958cf35c1 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.037.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.037.woff2 new file mode 100644 index 000000000..d88427dc2 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.038.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.038.woff2 new file mode 100644 index 000000000..55ffc10a9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.039.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.039.woff2 new file mode 100644 index 000000000..598f955ff Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.040.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.040.woff2 new file mode 100644 index 000000000..a36cb6ebf Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.041.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.041.woff2 new file mode 100644 index 000000000..90d68d58c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.042.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.042.woff2 new file mode 100644 index 000000000..646850926 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.043.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.043.woff2 new file mode 100644 index 000000000..e94848d06 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.044.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.044.woff2 new file mode 100644 index 000000000..08a3efc2c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.045.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.045.woff2 new file mode 100644 index 000000000..56e68a6c3 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.046.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.046.woff2 new file mode 100644 index 000000000..d6b8c9cfc Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.047.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.047.woff2 new file mode 100644 index 000000000..ac4e33eae Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.048.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.048.woff2 new file mode 100644 index 000000000..ec585c3f3 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.049.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.049.woff2 new file mode 100644 index 000000000..9e7313555 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.050.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.050.woff2 new file mode 100644 index 000000000..9b5f7d523 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.050.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.051.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.051.woff2 new file mode 100644 index 000000000..20290e2c2 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.051.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.052.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.052.woff2 new file mode 100644 index 000000000..96d65f9fb Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.052.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.053.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.053.woff2 new file mode 100644 index 000000000..ed885a69c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.053.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.054.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.054.woff2 new file mode 100644 index 000000000..0c1bdb747 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.054.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.055.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.055.woff2 new file mode 100644 index 000000000..e23ecf9dc Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.055.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.056.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.056.woff2 new file mode 100644 index 000000000..b7bd16295 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.056.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.057.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.057.woff2 new file mode 100644 index 000000000..01164d802 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.057.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.058.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.058.woff2 new file mode 100644 index 000000000..44b6d64e9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.058.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.059.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.059.woff2 new file mode 100644 index 000000000..dc61629c0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.059.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.060.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.060.woff2 new file mode 100644 index 000000000..ac33f9a0b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.060.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.061.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.061.woff2 new file mode 100644 index 000000000..7f737e18c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.061.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.062.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.062.woff2 new file mode 100644 index 000000000..776116447 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.062.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.063.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.063.woff2 new file mode 100644 index 000000000..a2064017b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.063.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.064.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.064.woff2 new file mode 100644 index 000000000..2cbc7dbe1 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.064.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.065.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.065.woff2 new file mode 100644 index 000000000..fa315dd0e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.065.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.066.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.066.woff2 new file mode 100644 index 000000000..c8eaaee4c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.066.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.067.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.067.woff2 new file mode 100644 index 000000000..979af1ba9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.067.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.068.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.068.woff2 new file mode 100644 index 000000000..34cd5823f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Light.068.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.000.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.000.woff2 new file mode 100644 index 000000000..4b592f9cf Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.001.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.001.woff2 new file mode 100644 index 000000000..a6ec8b3c5 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.002.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.002.woff2 new file mode 100644 index 000000000..84acc0710 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.003.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.003.woff2 new file mode 100644 index 000000000..b80a8ff13 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.004.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.004.woff2 new file mode 100644 index 000000000..6dc5a06d4 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.005.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.005.woff2 new file mode 100644 index 000000000..f54624eff Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.006.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.006.woff2 new file mode 100644 index 000000000..463ae1661 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.007.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.007.woff2 new file mode 100644 index 000000000..2284c102b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.008.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.008.woff2 new file mode 100644 index 000000000..77fbd71e2 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.009.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.009.woff2 new file mode 100644 index 000000000..98dc6e8e9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.010.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.010.woff2 new file mode 100644 index 000000000..ef97e59c4 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.011.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.011.woff2 new file mode 100644 index 000000000..763928914 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.012.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.012.woff2 new file mode 100644 index 000000000..15e44594f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.013.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.013.woff2 new file mode 100644 index 000000000..1e33141f2 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.014.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.014.woff2 new file mode 100644 index 000000000..7b1f7a3f7 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.015.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.015.woff2 new file mode 100644 index 000000000..f791a99d8 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.016.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.016.woff2 new file mode 100644 index 000000000..01b2ccfa8 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.017.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.017.woff2 new file mode 100644 index 000000000..5612e0e8f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.018.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.018.woff2 new file mode 100644 index 000000000..700b7452a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.019.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.019.woff2 new file mode 100644 index 000000000..9a84919e6 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.020.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.020.woff2 new file mode 100644 index 000000000..0ebc0079b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.021.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.021.woff2 new file mode 100644 index 000000000..13e569bfc Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.022.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.022.woff2 new file mode 100644 index 000000000..9e059d53e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.023.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.023.woff2 new file mode 100644 index 000000000..0385913cf Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.024.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.024.woff2 new file mode 100644 index 000000000..fcbf59666 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.025.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.025.woff2 new file mode 100644 index 000000000..f2062b9a6 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.026.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.026.woff2 new file mode 100644 index 000000000..313c00c29 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.027.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.027.woff2 new file mode 100644 index 000000000..4c10853c4 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.028.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.028.woff2 new file mode 100644 index 000000000..73d60dc49 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.029.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.029.woff2 new file mode 100644 index 000000000..4e2ec04d4 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.030.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.030.woff2 new file mode 100644 index 000000000..2a9a73795 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.031.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.031.woff2 new file mode 100644 index 000000000..df9a12135 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.032.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.032.woff2 new file mode 100644 index 000000000..975445721 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.033.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.033.woff2 new file mode 100644 index 000000000..f746817b7 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.034.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.034.woff2 new file mode 100644 index 000000000..5eecfa710 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.035.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.035.woff2 new file mode 100644 index 000000000..445fb0b49 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.036.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.036.woff2 new file mode 100644 index 000000000..2e10ecc5e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.037.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.037.woff2 new file mode 100644 index 000000000..4ec3ae079 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.038.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.038.woff2 new file mode 100644 index 000000000..e888ba87b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.039.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.039.woff2 new file mode 100644 index 000000000..081982b64 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.040.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.040.woff2 new file mode 100644 index 000000000..54fa67631 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.041.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.041.woff2 new file mode 100644 index 000000000..d36ac2694 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.042.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.042.woff2 new file mode 100644 index 000000000..f8d627d2e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.043.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.043.woff2 new file mode 100644 index 000000000..23654c3d9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.044.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.044.woff2 new file mode 100644 index 000000000..96b89b958 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.045.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.045.woff2 new file mode 100644 index 000000000..8004d1017 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.046.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.046.woff2 new file mode 100644 index 000000000..f86eee004 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.047.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.047.woff2 new file mode 100644 index 000000000..a34f664a9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.048.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.048.woff2 new file mode 100644 index 000000000..744ccc38b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.049.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.049.woff2 new file mode 100644 index 000000000..5da321d37 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.050.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.050.woff2 new file mode 100644 index 000000000..82d9b8654 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.050.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.051.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.051.woff2 new file mode 100644 index 000000000..df6494a7d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.051.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.052.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.052.woff2 new file mode 100644 index 000000000..11a8c07c9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.052.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.053.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.053.woff2 new file mode 100644 index 000000000..63a5e83ee Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.053.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.054.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.054.woff2 new file mode 100644 index 000000000..7f3a274cc Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.054.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.055.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.055.woff2 new file mode 100644 index 000000000..6b0fd697e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.055.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.056.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.056.woff2 new file mode 100644 index 000000000..38175dc40 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.056.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.057.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.057.woff2 new file mode 100644 index 000000000..f19c713d8 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.057.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.058.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.058.woff2 new file mode 100644 index 000000000..5228e783e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.058.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.059.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.059.woff2 new file mode 100644 index 000000000..f6f8fc2aa Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.059.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.060.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.060.woff2 new file mode 100644 index 000000000..7959acc68 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.060.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.061.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.061.woff2 new file mode 100644 index 000000000..f93ee3b43 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.061.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.062.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.062.woff2 new file mode 100644 index 000000000..c5ce43554 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.062.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.063.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.063.woff2 new file mode 100644 index 000000000..9690aaf5b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.063.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.064.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.064.woff2 new file mode 100644 index 000000000..ac8f5c216 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.064.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.065.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.065.woff2 new file mode 100644 index 000000000..83027bd66 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.065.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.066.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.066.woff2 new file mode 100644 index 000000000..96a5c5187 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.066.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.067.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.067.woff2 new file mode 100644 index 000000000..dc900b00d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.067.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.068.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.068.woff2 new file mode 100644 index 000000000..0870635ff Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Medium.068.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.000.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.000.woff2 new file mode 100644 index 000000000..6b7d3de35 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.001.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.001.woff2 new file mode 100644 index 000000000..a05f8a623 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.002.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.002.woff2 new file mode 100644 index 000000000..9056f7b1b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.003.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.003.woff2 new file mode 100644 index 000000000..bba6570c7 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.004.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.004.woff2 new file mode 100644 index 000000000..7dfcd0ace Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.005.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.005.woff2 new file mode 100644 index 000000000..7ac064896 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.006.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.006.woff2 new file mode 100644 index 000000000..85ef20b35 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.007.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.007.woff2 new file mode 100644 index 000000000..757efdb20 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.008.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.008.woff2 new file mode 100644 index 000000000..e8447f93c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.009.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.009.woff2 new file mode 100644 index 000000000..e1420dbdc Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.010.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.010.woff2 new file mode 100644 index 000000000..50ded3ac7 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.011.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.011.woff2 new file mode 100644 index 000000000..fb9096c96 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.012.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.012.woff2 new file mode 100644 index 000000000..09a0d43e8 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.013.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.013.woff2 new file mode 100644 index 000000000..7dc0d1501 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.014.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.014.woff2 new file mode 100644 index 000000000..8612c56b0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.015.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.015.woff2 new file mode 100644 index 000000000..f3c223fba Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.016.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.016.woff2 new file mode 100644 index 000000000..6edd59f92 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.017.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.017.woff2 new file mode 100644 index 000000000..286fbd75b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.018.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.018.woff2 new file mode 100644 index 000000000..26c308145 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.019.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.019.woff2 new file mode 100644 index 000000000..44c518d11 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.020.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.020.woff2 new file mode 100644 index 000000000..eb8a54d97 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.021.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.021.woff2 new file mode 100644 index 000000000..5cb175f0e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.022.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.022.woff2 new file mode 100644 index 000000000..876841f60 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.023.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.023.woff2 new file mode 100644 index 000000000..b95ab8262 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.024.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.024.woff2 new file mode 100644 index 000000000..502e9bb90 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.025.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.025.woff2 new file mode 100644 index 000000000..75f038e4e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.026.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.026.woff2 new file mode 100644 index 000000000..f14c89054 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.027.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.027.woff2 new file mode 100644 index 000000000..d0b641169 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.028.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.028.woff2 new file mode 100644 index 000000000..eda618113 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.029.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.029.woff2 new file mode 100644 index 000000000..7772f04a5 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.030.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.030.woff2 new file mode 100644 index 000000000..4a64d9af9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.031.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.031.woff2 new file mode 100644 index 000000000..5a4431b80 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.032.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.032.woff2 new file mode 100644 index 000000000..ee8268beb Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.033.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.033.woff2 new file mode 100644 index 000000000..8190531dd Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.034.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.034.woff2 new file mode 100644 index 000000000..c775b9562 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.035.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.035.woff2 new file mode 100644 index 000000000..64cda73bb Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.036.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.036.woff2 new file mode 100644 index 000000000..58e1b941c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.037.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.037.woff2 new file mode 100644 index 000000000..f8491edd6 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.038.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.038.woff2 new file mode 100644 index 000000000..d0a8c2d4a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.039.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.039.woff2 new file mode 100644 index 000000000..a609bd83b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.040.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.040.woff2 new file mode 100644 index 000000000..1c2390a4b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.041.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.041.woff2 new file mode 100644 index 000000000..f2e1d4fb1 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.042.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.042.woff2 new file mode 100644 index 000000000..98ee6126f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.043.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.043.woff2 new file mode 100644 index 000000000..ac99643e1 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.044.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.044.woff2 new file mode 100644 index 000000000..de1b3725c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.045.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.045.woff2 new file mode 100644 index 000000000..5eedf1387 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.046.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.046.woff2 new file mode 100644 index 000000000..da9425aa5 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.047.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.047.woff2 new file mode 100644 index 000000000..8021c677f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.048.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.048.woff2 new file mode 100644 index 000000000..5a7ca2ecc Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.049.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.049.woff2 new file mode 100644 index 000000000..a157e88eb Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.050.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.050.woff2 new file mode 100644 index 000000000..e8a669d24 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.050.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.051.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.051.woff2 new file mode 100644 index 000000000..61174929b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.051.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.052.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.052.woff2 new file mode 100644 index 000000000..b0ddacb81 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.052.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.053.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.053.woff2 new file mode 100644 index 000000000..225de8274 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.053.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.054.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.054.woff2 new file mode 100644 index 000000000..14b2bea94 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.054.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.055.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.055.woff2 new file mode 100644 index 000000000..5bc0c4f49 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.055.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.056.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.056.woff2 new file mode 100644 index 000000000..5c81fc361 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.056.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.057.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.057.woff2 new file mode 100644 index 000000000..a4968c525 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.057.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.058.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.058.woff2 new file mode 100644 index 000000000..660c45267 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.058.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.059.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.059.woff2 new file mode 100644 index 000000000..b714e4246 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.059.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.060.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.060.woff2 new file mode 100644 index 000000000..57dbcd315 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.060.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.061.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.061.woff2 new file mode 100644 index 000000000..d9c9704bd Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.061.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.062.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.062.woff2 new file mode 100644 index 000000000..259b0462d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.062.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.063.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.063.woff2 new file mode 100644 index 000000000..30e06edea Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.063.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.064.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.064.woff2 new file mode 100644 index 000000000..cbb45ab43 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.064.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.065.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.065.woff2 new file mode 100644 index 000000000..9ac59896e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.065.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.066.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.066.woff2 new file mode 100644 index 000000000..8389c0fb5 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.066.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.067.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.067.woff2 new file mode 100644 index 000000000..99f832f6d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.067.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.068.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.068.woff2 new file mode 100644 index 000000000..60daec716 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Regular.068.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.000.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.000.woff2 new file mode 100644 index 000000000..b64e3e890 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.001.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.001.woff2 new file mode 100644 index 000000000..83fecdf30 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.002.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.002.woff2 new file mode 100644 index 000000000..1df08c2ce Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.003.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.003.woff2 new file mode 100644 index 000000000..4927e59f8 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.004.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.004.woff2 new file mode 100644 index 000000000..c6d1810e6 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.005.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.005.woff2 new file mode 100644 index 000000000..d347a824b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.006.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.006.woff2 new file mode 100644 index 000000000..d753e8d63 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.007.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.007.woff2 new file mode 100644 index 000000000..c1a11cf6c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.008.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.008.woff2 new file mode 100644 index 000000000..68e5526e0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.009.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.009.woff2 new file mode 100644 index 000000000..6c4effcc8 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.010.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.010.woff2 new file mode 100644 index 000000000..f67e0abad Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.011.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.011.woff2 new file mode 100644 index 000000000..1ee8d21cd Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.012.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.012.woff2 new file mode 100644 index 000000000..a415cf267 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.013.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.013.woff2 new file mode 100644 index 000000000..40205bba4 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.014.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.014.woff2 new file mode 100644 index 000000000..f4dd8a5a0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.015.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.015.woff2 new file mode 100644 index 000000000..dfde15f41 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.016.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.016.woff2 new file mode 100644 index 000000000..68b9d5fb8 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.017.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.017.woff2 new file mode 100644 index 000000000..c4d5e29fa Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.018.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.018.woff2 new file mode 100644 index 000000000..398ffd823 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.019.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.019.woff2 new file mode 100644 index 000000000..6def51f65 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.020.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.020.woff2 new file mode 100644 index 000000000..1ee1529e5 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.021.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.021.woff2 new file mode 100644 index 000000000..a82acfa7b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.022.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.022.woff2 new file mode 100644 index 000000000..0aab9c3d5 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.023.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.023.woff2 new file mode 100644 index 000000000..94df50063 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.024.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.024.woff2 new file mode 100644 index 000000000..3498eb8ef Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.025.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.025.woff2 new file mode 100644 index 000000000..3dd860d98 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.026.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.026.woff2 new file mode 100644 index 000000000..426097064 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.027.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.027.woff2 new file mode 100644 index 000000000..6d679826c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.028.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.028.woff2 new file mode 100644 index 000000000..d3d15382e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.029.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.029.woff2 new file mode 100644 index 000000000..bf6b94e18 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.030.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.030.woff2 new file mode 100644 index 000000000..524257f33 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.031.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.031.woff2 new file mode 100644 index 000000000..aef9467e5 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.032.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.032.woff2 new file mode 100644 index 000000000..12945efa6 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.033.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.033.woff2 new file mode 100644 index 000000000..108d21106 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.034.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.034.woff2 new file mode 100644 index 000000000..7021040d6 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.035.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.035.woff2 new file mode 100644 index 000000000..8780e0ed8 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.036.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.036.woff2 new file mode 100644 index 000000000..034fb1403 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.037.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.037.woff2 new file mode 100644 index 000000000..ef27eaf55 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.038.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.038.woff2 new file mode 100644 index 000000000..3324ead75 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.039.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.039.woff2 new file mode 100644 index 000000000..04faa33f0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.040.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.040.woff2 new file mode 100644 index 000000000..6e8fba10e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.041.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.041.woff2 new file mode 100644 index 000000000..722dd7cfd Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.042.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.042.woff2 new file mode 100644 index 000000000..f71aa0830 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.043.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.043.woff2 new file mode 100644 index 000000000..6313c8b9e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.044.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.044.woff2 new file mode 100644 index 000000000..acc73db91 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.045.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.045.woff2 new file mode 100644 index 000000000..89ab40a0a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.046.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.046.woff2 new file mode 100644 index 000000000..777245c2d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.047.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.047.woff2 new file mode 100644 index 000000000..6623ec24d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.048.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.048.woff2 new file mode 100644 index 000000000..cb11ee86b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.049.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.049.woff2 new file mode 100644 index 000000000..07bb7c79a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.050.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.050.woff2 new file mode 100644 index 000000000..88ddba9e9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.050.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.051.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.051.woff2 new file mode 100644 index 000000000..113159635 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.051.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.052.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.052.woff2 new file mode 100644 index 000000000..12220331e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.052.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.053.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.053.woff2 new file mode 100644 index 000000000..416c9e09b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.053.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.054.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.054.woff2 new file mode 100644 index 000000000..e9218ffaf Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.054.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.055.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.055.woff2 new file mode 100644 index 000000000..165ac829f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.055.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.056.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.056.woff2 new file mode 100644 index 000000000..6f5f8b6ae Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.056.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.057.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.057.woff2 new file mode 100644 index 000000000..ad798a96f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.057.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.058.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.058.woff2 new file mode 100644 index 000000000..5890a3721 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.058.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.059.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.059.woff2 new file mode 100644 index 000000000..e769f0f61 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.059.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.060.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.060.woff2 new file mode 100644 index 000000000..8e720546d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.060.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.061.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.061.woff2 new file mode 100644 index 000000000..20a900ecd Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.061.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.062.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.062.woff2 new file mode 100644 index 000000000..6fe9d6c94 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.062.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.063.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.063.woff2 new file mode 100644 index 000000000..05af61e6d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.063.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.064.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.064.woff2 new file mode 100644 index 000000000..33ee254ff Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.064.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.065.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.065.woff2 new file mode 100644 index 000000000..eb7e817b5 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.065.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.066.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.066.woff2 new file mode 100644 index 000000000..84004b39d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.066.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.067.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.067.woff2 new file mode 100644 index 000000000..878b57528 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.067.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.068.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.068.woff2 new file mode 100644 index 000000000..d8110b983 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-SemiBold.068.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.000.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.000.woff2 new file mode 100644 index 000000000..3e06f5352 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.001.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.001.woff2 new file mode 100644 index 000000000..f61bd0ba8 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.002.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.002.woff2 new file mode 100644 index 000000000..36966b38d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.003.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.003.woff2 new file mode 100644 index 000000000..4001cf24c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.004.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.004.woff2 new file mode 100644 index 000000000..9e8f90821 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.005.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.005.woff2 new file mode 100644 index 000000000..aa69840fa Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.006.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.006.woff2 new file mode 100644 index 000000000..0a7ece49a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.007.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.007.woff2 new file mode 100644 index 000000000..090218ee0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.008.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.008.woff2 new file mode 100644 index 000000000..58073f19b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.009.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.009.woff2 new file mode 100644 index 000000000..0a85979c4 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.010.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.010.woff2 new file mode 100644 index 000000000..830907e0a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.011.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.011.woff2 new file mode 100644 index 000000000..5321ce9d4 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.012.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.012.woff2 new file mode 100644 index 000000000..bb550b311 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.013.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.013.woff2 new file mode 100644 index 000000000..500158092 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.014.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.014.woff2 new file mode 100644 index 000000000..b0de1e7bb Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.015.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.015.woff2 new file mode 100644 index 000000000..cef3e3649 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.016.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.016.woff2 new file mode 100644 index 000000000..4bdf7ee13 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.017.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.017.woff2 new file mode 100644 index 000000000..92fb55ca0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.018.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.018.woff2 new file mode 100644 index 000000000..f206297f3 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.019.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.019.woff2 new file mode 100644 index 000000000..d7cc70fd0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.020.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.020.woff2 new file mode 100644 index 000000000..7be12210d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.021.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.021.woff2 new file mode 100644 index 000000000..683f50855 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.022.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.022.woff2 new file mode 100644 index 000000000..f75da41b0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.023.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.023.woff2 new file mode 100644 index 000000000..36e2f50ff Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.024.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.024.woff2 new file mode 100644 index 000000000..c9d4ccfa2 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.025.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.025.woff2 new file mode 100644 index 000000000..d5802552c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.026.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.026.woff2 new file mode 100644 index 000000000..a062f4585 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.027.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.027.woff2 new file mode 100644 index 000000000..77a1989d8 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.028.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.028.woff2 new file mode 100644 index 000000000..27dc18039 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.029.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.029.woff2 new file mode 100644 index 000000000..0c753cf28 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.030.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.030.woff2 new file mode 100644 index 000000000..731cfae90 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.031.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.031.woff2 new file mode 100644 index 000000000..11eeb08ee Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.032.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.032.woff2 new file mode 100644 index 000000000..ada472cec Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.033.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.033.woff2 new file mode 100644 index 000000000..9227d75b3 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.034.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.034.woff2 new file mode 100644 index 000000000..6ea733623 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.035.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.035.woff2 new file mode 100644 index 000000000..13e7de07d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.036.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.036.woff2 new file mode 100644 index 000000000..6ec56ebda Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.037.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.037.woff2 new file mode 100644 index 000000000..23c758d05 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.038.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.038.woff2 new file mode 100644 index 000000000..60d05aab1 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.039.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.039.woff2 new file mode 100644 index 000000000..b500d0a32 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.040.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.040.woff2 new file mode 100644 index 000000000..efae17e75 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.041.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.041.woff2 new file mode 100644 index 000000000..6b7d12c34 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.042.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.042.woff2 new file mode 100644 index 000000000..d03ea1e32 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.043.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.043.woff2 new file mode 100644 index 000000000..92fc43bf3 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.044.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.044.woff2 new file mode 100644 index 000000000..10da00642 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.045.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.045.woff2 new file mode 100644 index 000000000..8bb0c6efa Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.046.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.046.woff2 new file mode 100644 index 000000000..7a16b971a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.047.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.047.woff2 new file mode 100644 index 000000000..41efd70e1 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.048.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.048.woff2 new file mode 100644 index 000000000..53bf84e65 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.049.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.049.woff2 new file mode 100644 index 000000000..d9e3b9fdc Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.050.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.050.woff2 new file mode 100644 index 000000000..ad0e24547 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.050.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.051.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.051.woff2 new file mode 100644 index 000000000..a9298e64a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.051.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.052.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.052.woff2 new file mode 100644 index 000000000..08f01e990 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.052.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.053.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.053.woff2 new file mode 100644 index 000000000..398d2fa78 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.053.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.054.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.054.woff2 new file mode 100644 index 000000000..3b430bac2 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.054.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.055.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.055.woff2 new file mode 100644 index 000000000..eeb680b71 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.055.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.056.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.056.woff2 new file mode 100644 index 000000000..376552528 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.056.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.057.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.057.woff2 new file mode 100644 index 000000000..fe7c024b2 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.057.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.058.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.058.woff2 new file mode 100644 index 000000000..78b2b8dfa Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.058.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.059.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.059.woff2 new file mode 100644 index 000000000..a7f56f1e7 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.059.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.060.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.060.woff2 new file mode 100644 index 000000000..4cfbe2a41 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.060.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.061.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.061.woff2 new file mode 100644 index 000000000..580221257 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.061.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.062.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.062.woff2 new file mode 100644 index 000000000..7e67c395d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.062.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.063.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.063.woff2 new file mode 100644 index 000000000..044d4ec2c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.063.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.064.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.064.woff2 new file mode 100644 index 000000000..c7bd8a060 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.064.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.065.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.065.woff2 new file mode 100644 index 000000000..6820735ad Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.065.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.066.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.066.woff2 new file mode 100644 index 000000000..263259014 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.066.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.067.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.067.woff2 new file mode 100644 index 000000000..0e00972ea Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.067.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.068.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.068.woff2 new file mode 100644 index 000000000..c6e6f1c3f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Text.068.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.000.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.000.woff2 new file mode 100644 index 000000000..a440c24c0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.001.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.001.woff2 new file mode 100644 index 000000000..3e3ce8c00 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.002.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.002.woff2 new file mode 100644 index 000000000..d2d9b8d90 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.003.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.003.woff2 new file mode 100644 index 000000000..759b0e063 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.004.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.004.woff2 new file mode 100644 index 000000000..f46624425 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.005.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.005.woff2 new file mode 100644 index 000000000..ad096d512 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.006.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.006.woff2 new file mode 100644 index 000000000..55767b7ea Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.007.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.007.woff2 new file mode 100644 index 000000000..64dfdeeca Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.008.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.008.woff2 new file mode 100644 index 000000000..a9cb334dd Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.009.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.009.woff2 new file mode 100644 index 000000000..8a53fb19d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.010.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.010.woff2 new file mode 100644 index 000000000..ccd4e5757 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.011.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.011.woff2 new file mode 100644 index 000000000..a9ca7af16 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.012.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.012.woff2 new file mode 100644 index 000000000..4dec2e62b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.013.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.013.woff2 new file mode 100644 index 000000000..2d58f7fd3 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.014.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.014.woff2 new file mode 100644 index 000000000..bb09cf32a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.015.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.015.woff2 new file mode 100644 index 000000000..38c6ecf18 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.016.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.016.woff2 new file mode 100644 index 000000000..1aded6aae Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.017.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.017.woff2 new file mode 100644 index 000000000..dc8ee8d7b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.018.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.018.woff2 new file mode 100644 index 000000000..aea04ac77 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.019.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.019.woff2 new file mode 100644 index 000000000..a17f832ce Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.020.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.020.woff2 new file mode 100644 index 000000000..312cae786 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.021.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.021.woff2 new file mode 100644 index 000000000..83dcc4012 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.022.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.022.woff2 new file mode 100644 index 000000000..c169557ee Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.023.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.023.woff2 new file mode 100644 index 000000000..62f03b424 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.024.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.024.woff2 new file mode 100644 index 000000000..7bb20d7b9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.025.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.025.woff2 new file mode 100644 index 000000000..aebaa1926 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.026.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.026.woff2 new file mode 100644 index 000000000..302d56acf Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.027.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.027.woff2 new file mode 100644 index 000000000..dfc6ff602 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.028.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.028.woff2 new file mode 100644 index 000000000..412b06f16 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.029.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.029.woff2 new file mode 100644 index 000000000..a0986dd4b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.030.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.030.woff2 new file mode 100644 index 000000000..c4c68d4e4 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.031.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.031.woff2 new file mode 100644 index 000000000..1e38973bf Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.032.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.032.woff2 new file mode 100644 index 000000000..c0bddef37 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.033.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.033.woff2 new file mode 100644 index 000000000..5764857db Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.034.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.034.woff2 new file mode 100644 index 000000000..2d55f7049 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.035.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.035.woff2 new file mode 100644 index 000000000..026aca9d9 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.036.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.036.woff2 new file mode 100644 index 000000000..a045504c0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.037.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.037.woff2 new file mode 100644 index 000000000..eee1abf9c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.038.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.038.woff2 new file mode 100644 index 000000000..e73287905 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.039.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.039.woff2 new file mode 100644 index 000000000..468e811f3 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.040.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.040.woff2 new file mode 100644 index 000000000..47d2cefc3 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.041.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.041.woff2 new file mode 100644 index 000000000..7a685fa68 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.042.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.042.woff2 new file mode 100644 index 000000000..6118367e1 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.043.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.043.woff2 new file mode 100644 index 000000000..3c46930aa Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.044.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.044.woff2 new file mode 100644 index 000000000..176d5c986 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.045.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.045.woff2 new file mode 100644 index 000000000..217eeb23f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.046.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.046.woff2 new file mode 100644 index 000000000..28b11a2ba Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.047.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.047.woff2 new file mode 100644 index 000000000..0eef29442 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.048.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.048.woff2 new file mode 100644 index 000000000..1c58cfc98 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.049.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.049.woff2 new file mode 100644 index 000000000..55589771f Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.050.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.050.woff2 new file mode 100644 index 000000000..48e747372 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.050.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.051.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.051.woff2 new file mode 100644 index 000000000..69df8cdfd Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.051.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.052.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.052.woff2 new file mode 100644 index 000000000..1cf380fef Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.052.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.053.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.053.woff2 new file mode 100644 index 000000000..b53baa015 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.053.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.054.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.054.woff2 new file mode 100644 index 000000000..61db10912 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.054.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.055.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.055.woff2 new file mode 100644 index 000000000..6e3800c4e Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.055.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.056.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.056.woff2 new file mode 100644 index 000000000..ef33d804a Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.056.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.057.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.057.woff2 new file mode 100644 index 000000000..7fd67622d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.057.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.058.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.058.woff2 new file mode 100644 index 000000000..22ed1a61c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.058.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.059.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.059.woff2 new file mode 100644 index 000000000..e6eb5dac1 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.059.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.060.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.060.woff2 new file mode 100644 index 000000000..b5d40262d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.060.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.061.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.061.woff2 new file mode 100644 index 000000000..fcee6cf8d Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.061.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.062.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.062.woff2 new file mode 100644 index 000000000..82910e26c Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.062.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.063.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.063.woff2 new file mode 100644 index 000000000..b2dd4ff36 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.063.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.064.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.064.woff2 new file mode 100644 index 000000000..ef63b1aff Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.064.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.065.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.065.woff2 new file mode 100644 index 000000000..ac18e04b6 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.065.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.066.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.066.woff2 new file mode 100644 index 000000000..0188556b0 Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.066.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.067.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.067.woff2 new file mode 100644 index 000000000..16d62932b Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.067.woff2 differ diff --git a/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.068.woff2 b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.068.woff2 new file mode 100644 index 000000000..e666465cc Binary files /dev/null and b/packages/fonts/files/FluxerSansSC/FluxerSansSC-Thin.068.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.000.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.000.woff2 new file mode 100644 index 000000000..422b17d66 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.001.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.001.woff2 new file mode 100644 index 000000000..cb1c122c8 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.002.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.002.woff2 new file mode 100644 index 000000000..000b697dc Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.003.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.003.woff2 new file mode 100644 index 000000000..8e3a0217e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.004.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.004.woff2 new file mode 100644 index 000000000..0d144f6c6 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.005.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.005.woff2 new file mode 100644 index 000000000..f90c49c3e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.006.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.006.woff2 new file mode 100644 index 000000000..fcbe40a08 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.007.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.007.woff2 new file mode 100644 index 000000000..321758d46 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.008.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.008.woff2 new file mode 100644 index 000000000..677fe950b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.009.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.009.woff2 new file mode 100644 index 000000000..3d545044f Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.010.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.010.woff2 new file mode 100644 index 000000000..8708213c9 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.011.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.011.woff2 new file mode 100644 index 000000000..529a29740 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.012.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.012.woff2 new file mode 100644 index 000000000..2d870909a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.013.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.013.woff2 new file mode 100644 index 000000000..153ac9afc Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.014.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.014.woff2 new file mode 100644 index 000000000..7f5dc9445 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.015.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.015.woff2 new file mode 100644 index 000000000..13c5c417a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.016.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.016.woff2 new file mode 100644 index 000000000..f5e178a84 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.017.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.017.woff2 new file mode 100644 index 000000000..694847f45 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.018.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.018.woff2 new file mode 100644 index 000000000..b0186fd51 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.019.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.019.woff2 new file mode 100644 index 000000000..65e70f8ec Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.020.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.020.woff2 new file mode 100644 index 000000000..a8ab5969a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.021.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.021.woff2 new file mode 100644 index 000000000..8b5c1bdbd Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.022.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.022.woff2 new file mode 100644 index 000000000..1698c519e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.023.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.023.woff2 new file mode 100644 index 000000000..e89594888 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.024.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.024.woff2 new file mode 100644 index 000000000..fc40f2b80 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.025.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.025.woff2 new file mode 100644 index 000000000..ff7344b21 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.026.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.026.woff2 new file mode 100644 index 000000000..bfa905793 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.027.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.027.woff2 new file mode 100644 index 000000000..12089e90a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.028.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.028.woff2 new file mode 100644 index 000000000..06873584d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.029.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.029.woff2 new file mode 100644 index 000000000..af0152ea1 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.030.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.030.woff2 new file mode 100644 index 000000000..fbf362c08 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.031.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.031.woff2 new file mode 100644 index 000000000..637b60275 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.032.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.032.woff2 new file mode 100644 index 000000000..33fa5536c Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.033.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.033.woff2 new file mode 100644 index 000000000..0c94b14d7 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.034.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.034.woff2 new file mode 100644 index 000000000..7256c33c9 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.035.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.035.woff2 new file mode 100644 index 000000000..f4a5c03e2 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.036.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.036.woff2 new file mode 100644 index 000000000..f4b84189c Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.037.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.037.woff2 new file mode 100644 index 000000000..93ab343d8 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.038.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.038.woff2 new file mode 100644 index 000000000..8676d9e8d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.039.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.039.woff2 new file mode 100644 index 000000000..e6f0d9442 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.040.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.040.woff2 new file mode 100644 index 000000000..83be56a19 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.041.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.041.woff2 new file mode 100644 index 000000000..c1c517557 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.042.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.042.woff2 new file mode 100644 index 000000000..a374724c6 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.043.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.043.woff2 new file mode 100644 index 000000000..c09fde880 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.044.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.044.woff2 new file mode 100644 index 000000000..36a4b4d85 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.045.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.045.woff2 new file mode 100644 index 000000000..7c57c586f Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.046.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.046.woff2 new file mode 100644 index 000000000..1172bf7a0 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.047.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.047.woff2 new file mode 100644 index 000000000..2d1c330a8 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.048.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.048.woff2 new file mode 100644 index 000000000..7336e9514 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.049.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.049.woff2 new file mode 100644 index 000000000..25679c482 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Bold.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.000.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.000.woff2 new file mode 100644 index 000000000..e52fb8f67 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.001.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.001.woff2 new file mode 100644 index 000000000..3c800e738 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.002.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.002.woff2 new file mode 100644 index 000000000..fdcf75a97 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.003.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.003.woff2 new file mode 100644 index 000000000..5ec366712 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.004.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.004.woff2 new file mode 100644 index 000000000..8377124ce Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.005.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.005.woff2 new file mode 100644 index 000000000..4c0fddaa7 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.006.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.006.woff2 new file mode 100644 index 000000000..9c35afe3f Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.007.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.007.woff2 new file mode 100644 index 000000000..424cbff56 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.008.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.008.woff2 new file mode 100644 index 000000000..a10495766 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.009.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.009.woff2 new file mode 100644 index 000000000..63c080302 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.010.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.010.woff2 new file mode 100644 index 000000000..213f906ad Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.011.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.011.woff2 new file mode 100644 index 000000000..6850fb0d1 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.012.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.012.woff2 new file mode 100644 index 000000000..c33e9dabe Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.013.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.013.woff2 new file mode 100644 index 000000000..306a12ae6 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.014.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.014.woff2 new file mode 100644 index 000000000..3898a8446 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.015.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.015.woff2 new file mode 100644 index 000000000..5c2c6d0f5 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.016.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.016.woff2 new file mode 100644 index 000000000..db28578ab Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.017.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.017.woff2 new file mode 100644 index 000000000..82293483e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.018.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.018.woff2 new file mode 100644 index 000000000..f424e221d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.019.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.019.woff2 new file mode 100644 index 000000000..21eb83162 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.020.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.020.woff2 new file mode 100644 index 000000000..175b7d6f6 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.021.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.021.woff2 new file mode 100644 index 000000000..f8e8ab849 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.022.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.022.woff2 new file mode 100644 index 000000000..431820b82 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.023.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.023.woff2 new file mode 100644 index 000000000..d07ce78e0 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.024.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.024.woff2 new file mode 100644 index 000000000..7897f281e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.025.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.025.woff2 new file mode 100644 index 000000000..736f48dbe Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.026.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.026.woff2 new file mode 100644 index 000000000..b9e6bc5c3 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.027.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.027.woff2 new file mode 100644 index 000000000..a3c39d590 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.028.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.028.woff2 new file mode 100644 index 000000000..27c1286f8 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.029.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.029.woff2 new file mode 100644 index 000000000..9ae0a2daf Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.030.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.030.woff2 new file mode 100644 index 000000000..431567d24 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.031.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.031.woff2 new file mode 100644 index 000000000..73977b8f6 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.032.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.032.woff2 new file mode 100644 index 000000000..b871dca08 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.033.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.033.woff2 new file mode 100644 index 000000000..787d3a941 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.034.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.034.woff2 new file mode 100644 index 000000000..b9b24f06b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.035.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.035.woff2 new file mode 100644 index 000000000..429611da1 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.036.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.036.woff2 new file mode 100644 index 000000000..a602cf5e8 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.037.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.037.woff2 new file mode 100644 index 000000000..6cbd00ec6 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.038.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.038.woff2 new file mode 100644 index 000000000..4b29296d1 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.039.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.039.woff2 new file mode 100644 index 000000000..c15eccd0d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.040.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.040.woff2 new file mode 100644 index 000000000..1a53d0354 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.041.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.041.woff2 new file mode 100644 index 000000000..af3074b16 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.042.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.042.woff2 new file mode 100644 index 000000000..1cb7cb400 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.043.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.043.woff2 new file mode 100644 index 000000000..b34d93a19 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.044.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.044.woff2 new file mode 100644 index 000000000..af82c2703 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.045.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.045.woff2 new file mode 100644 index 000000000..0f6707b2c Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.046.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.046.woff2 new file mode 100644 index 000000000..c6183d64f Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.047.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.047.woff2 new file mode 100644 index 000000000..e9cfd921b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.048.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.048.woff2 new file mode 100644 index 000000000..aba54eed7 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.049.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.049.woff2 new file mode 100644 index 000000000..587acbd09 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-ExtraLight.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.000.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.000.woff2 new file mode 100644 index 000000000..0af3443dc Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.001.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.001.woff2 new file mode 100644 index 000000000..bc5443e67 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.002.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.002.woff2 new file mode 100644 index 000000000..af68d9243 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.003.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.003.woff2 new file mode 100644 index 000000000..d2f9190bb Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.004.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.004.woff2 new file mode 100644 index 000000000..780d3b7ed Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.005.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.005.woff2 new file mode 100644 index 000000000..90cc7a5aa Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.006.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.006.woff2 new file mode 100644 index 000000000..e9d3a4d3d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.007.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.007.woff2 new file mode 100644 index 000000000..d1534368d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.008.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.008.woff2 new file mode 100644 index 000000000..0acc698f7 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.009.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.009.woff2 new file mode 100644 index 000000000..6d0251609 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.010.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.010.woff2 new file mode 100644 index 000000000..d1841c52a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.011.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.011.woff2 new file mode 100644 index 000000000..2e4c682b4 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.012.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.012.woff2 new file mode 100644 index 000000000..75452a5cf Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.013.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.013.woff2 new file mode 100644 index 000000000..0a8909f39 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.014.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.014.woff2 new file mode 100644 index 000000000..88005901c Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.015.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.015.woff2 new file mode 100644 index 000000000..12cbbae67 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.016.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.016.woff2 new file mode 100644 index 000000000..4a262303b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.017.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.017.woff2 new file mode 100644 index 000000000..0a7ba2bea Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.018.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.018.woff2 new file mode 100644 index 000000000..7a28464ac Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.019.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.019.woff2 new file mode 100644 index 000000000..de853b765 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.020.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.020.woff2 new file mode 100644 index 000000000..087a93006 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.021.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.021.woff2 new file mode 100644 index 000000000..0f4a45739 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.022.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.022.woff2 new file mode 100644 index 000000000..61a8e67e7 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.023.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.023.woff2 new file mode 100644 index 000000000..5b0b12f0e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.024.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.024.woff2 new file mode 100644 index 000000000..3d2054085 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.025.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.025.woff2 new file mode 100644 index 000000000..053d366bc Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.026.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.026.woff2 new file mode 100644 index 000000000..1ab54d8e6 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.027.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.027.woff2 new file mode 100644 index 000000000..622f72e5c Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.028.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.028.woff2 new file mode 100644 index 000000000..ed25c0946 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.029.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.029.woff2 new file mode 100644 index 000000000..0e22b1d0a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.030.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.030.woff2 new file mode 100644 index 000000000..dc6d49450 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.031.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.031.woff2 new file mode 100644 index 000000000..2618114b7 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.032.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.032.woff2 new file mode 100644 index 000000000..5ef06ca0d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.033.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.033.woff2 new file mode 100644 index 000000000..7c4d9f066 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.034.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.034.woff2 new file mode 100644 index 000000000..23513456a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.035.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.035.woff2 new file mode 100644 index 000000000..2c24e336d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.036.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.036.woff2 new file mode 100644 index 000000000..8c2f1c87c Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.037.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.037.woff2 new file mode 100644 index 000000000..312547612 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.038.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.038.woff2 new file mode 100644 index 000000000..301d008c3 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.039.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.039.woff2 new file mode 100644 index 000000000..7c102a80e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.040.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.040.woff2 new file mode 100644 index 000000000..bf676b04b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.041.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.041.woff2 new file mode 100644 index 000000000..d88f3a5ff Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.042.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.042.woff2 new file mode 100644 index 000000000..fd0ddaf12 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.043.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.043.woff2 new file mode 100644 index 000000000..3050f97f9 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.044.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.044.woff2 new file mode 100644 index 000000000..43eaf7e2b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.045.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.045.woff2 new file mode 100644 index 000000000..af323e29d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.046.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.046.woff2 new file mode 100644 index 000000000..f779b0bfc Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.047.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.047.woff2 new file mode 100644 index 000000000..65be8c50e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.048.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.048.woff2 new file mode 100644 index 000000000..876be64e4 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.049.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.049.woff2 new file mode 100644 index 000000000..c5508b1f6 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Light.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.000.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.000.woff2 new file mode 100644 index 000000000..ffffa9e0d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.001.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.001.woff2 new file mode 100644 index 000000000..84e2f59c0 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.002.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.002.woff2 new file mode 100644 index 000000000..218bb5f3c Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.003.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.003.woff2 new file mode 100644 index 000000000..67416faaf Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.004.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.004.woff2 new file mode 100644 index 000000000..67f1671b0 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.005.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.005.woff2 new file mode 100644 index 000000000..d0996615a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.006.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.006.woff2 new file mode 100644 index 000000000..ab8ba7bbb Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.007.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.007.woff2 new file mode 100644 index 000000000..26fc36565 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.008.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.008.woff2 new file mode 100644 index 000000000..4f122262e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.009.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.009.woff2 new file mode 100644 index 000000000..b9388e9a6 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.010.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.010.woff2 new file mode 100644 index 000000000..0b711669b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.011.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.011.woff2 new file mode 100644 index 000000000..34d6f405b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.012.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.012.woff2 new file mode 100644 index 000000000..d42463b30 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.013.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.013.woff2 new file mode 100644 index 000000000..da3ddcd76 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.014.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.014.woff2 new file mode 100644 index 000000000..0f83dac42 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.015.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.015.woff2 new file mode 100644 index 000000000..332add1e7 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.016.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.016.woff2 new file mode 100644 index 000000000..5d17d5f4d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.017.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.017.woff2 new file mode 100644 index 000000000..61b5105b3 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.018.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.018.woff2 new file mode 100644 index 000000000..f39fd4fed Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.019.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.019.woff2 new file mode 100644 index 000000000..ed409c0dd Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.020.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.020.woff2 new file mode 100644 index 000000000..4d224c740 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.021.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.021.woff2 new file mode 100644 index 000000000..26ea716af Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.022.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.022.woff2 new file mode 100644 index 000000000..306e753ef Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.023.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.023.woff2 new file mode 100644 index 000000000..65ad3420d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.024.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.024.woff2 new file mode 100644 index 000000000..b00b63b64 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.025.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.025.woff2 new file mode 100644 index 000000000..40293bbef Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.026.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.026.woff2 new file mode 100644 index 000000000..1eb504405 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.027.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.027.woff2 new file mode 100644 index 000000000..16cf796ee Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.028.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.028.woff2 new file mode 100644 index 000000000..a775a1098 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.029.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.029.woff2 new file mode 100644 index 000000000..4b01f94a8 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.030.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.030.woff2 new file mode 100644 index 000000000..e8b043852 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.031.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.031.woff2 new file mode 100644 index 000000000..f0d5c38d2 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.032.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.032.woff2 new file mode 100644 index 000000000..0f5030d30 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.033.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.033.woff2 new file mode 100644 index 000000000..3d30ac443 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.034.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.034.woff2 new file mode 100644 index 000000000..2da783232 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.035.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.035.woff2 new file mode 100644 index 000000000..c181a9686 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.036.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.036.woff2 new file mode 100644 index 000000000..96e108b9f Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.037.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.037.woff2 new file mode 100644 index 000000000..7fa1816f9 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.038.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.038.woff2 new file mode 100644 index 000000000..1dd28f676 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.039.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.039.woff2 new file mode 100644 index 000000000..83911da66 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.040.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.040.woff2 new file mode 100644 index 000000000..434535398 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.041.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.041.woff2 new file mode 100644 index 000000000..6aad5e63a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.042.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.042.woff2 new file mode 100644 index 000000000..0abe483c8 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.043.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.043.woff2 new file mode 100644 index 000000000..f03a172e8 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.044.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.044.woff2 new file mode 100644 index 000000000..6d8472df0 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.045.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.045.woff2 new file mode 100644 index 000000000..bc9635a31 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.046.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.046.woff2 new file mode 100644 index 000000000..14ad0d56f Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.047.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.047.woff2 new file mode 100644 index 000000000..2286bcf20 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.048.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.048.woff2 new file mode 100644 index 000000000..85af97228 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.049.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.049.woff2 new file mode 100644 index 000000000..09964cd2d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Medium.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.000.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.000.woff2 new file mode 100644 index 000000000..6c395ebf2 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.001.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.001.woff2 new file mode 100644 index 000000000..63f6df913 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.002.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.002.woff2 new file mode 100644 index 000000000..278c84828 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.003.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.003.woff2 new file mode 100644 index 000000000..29bb67625 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.004.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.004.woff2 new file mode 100644 index 000000000..8fcd6fe41 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.005.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.005.woff2 new file mode 100644 index 000000000..5c900baf7 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.006.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.006.woff2 new file mode 100644 index 000000000..4bef76788 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.007.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.007.woff2 new file mode 100644 index 000000000..cc92cea49 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.008.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.008.woff2 new file mode 100644 index 000000000..2c0bb07ee Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.009.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.009.woff2 new file mode 100644 index 000000000..037927860 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.010.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.010.woff2 new file mode 100644 index 000000000..4c4da83e0 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.011.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.011.woff2 new file mode 100644 index 000000000..fe94a306f Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.012.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.012.woff2 new file mode 100644 index 000000000..0204e8705 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.013.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.013.woff2 new file mode 100644 index 000000000..2dcd41e3c Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.014.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.014.woff2 new file mode 100644 index 000000000..5e669f146 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.015.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.015.woff2 new file mode 100644 index 000000000..1b6153b51 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.016.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.016.woff2 new file mode 100644 index 000000000..0c7abf93a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.017.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.017.woff2 new file mode 100644 index 000000000..1720866a3 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.018.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.018.woff2 new file mode 100644 index 000000000..546d55af1 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.019.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.019.woff2 new file mode 100644 index 000000000..389a28219 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.020.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.020.woff2 new file mode 100644 index 000000000..ee17d6153 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.021.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.021.woff2 new file mode 100644 index 000000000..2c89d41ab Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.022.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.022.woff2 new file mode 100644 index 000000000..e8172e013 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.023.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.023.woff2 new file mode 100644 index 000000000..185b7cf8b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.024.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.024.woff2 new file mode 100644 index 000000000..ed660fcaf Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.025.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.025.woff2 new file mode 100644 index 000000000..ac876bed6 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.026.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.026.woff2 new file mode 100644 index 000000000..943e594eb Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.027.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.027.woff2 new file mode 100644 index 000000000..e0d596f88 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.028.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.028.woff2 new file mode 100644 index 000000000..9ef38ed48 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.029.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.029.woff2 new file mode 100644 index 000000000..fe6a453f4 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.030.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.030.woff2 new file mode 100644 index 000000000..836f9ef77 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.031.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.031.woff2 new file mode 100644 index 000000000..fcbea6cc2 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.032.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.032.woff2 new file mode 100644 index 000000000..06811aa02 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.033.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.033.woff2 new file mode 100644 index 000000000..301cd21e7 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.034.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.034.woff2 new file mode 100644 index 000000000..86a372ddb Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.035.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.035.woff2 new file mode 100644 index 000000000..ba630317d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.036.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.036.woff2 new file mode 100644 index 000000000..5d063c0a2 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.037.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.037.woff2 new file mode 100644 index 000000000..1a01ffa46 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.038.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.038.woff2 new file mode 100644 index 000000000..e91691898 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.039.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.039.woff2 new file mode 100644 index 000000000..7e09c8718 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.040.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.040.woff2 new file mode 100644 index 000000000..bc03b6b49 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.041.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.041.woff2 new file mode 100644 index 000000000..efc0ec5ff Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.042.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.042.woff2 new file mode 100644 index 000000000..81b4e1c88 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.043.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.043.woff2 new file mode 100644 index 000000000..4980ae538 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.044.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.044.woff2 new file mode 100644 index 000000000..a3b0ad573 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.045.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.045.woff2 new file mode 100644 index 000000000..30ace91bf Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.046.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.046.woff2 new file mode 100644 index 000000000..8efb377a2 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.047.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.047.woff2 new file mode 100644 index 000000000..d18401ff5 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.048.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.048.woff2 new file mode 100644 index 000000000..7a3582cb0 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.049.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.049.woff2 new file mode 100644 index 000000000..4c382760f Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Regular.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.000.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.000.woff2 new file mode 100644 index 000000000..39557b1be Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.001.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.001.woff2 new file mode 100644 index 000000000..248ff5f7a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.002.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.002.woff2 new file mode 100644 index 000000000..848198d91 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.003.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.003.woff2 new file mode 100644 index 000000000..27320102d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.004.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.004.woff2 new file mode 100644 index 000000000..10b84e2fa Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.005.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.005.woff2 new file mode 100644 index 000000000..51beb95e1 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.006.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.006.woff2 new file mode 100644 index 000000000..204818821 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.007.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.007.woff2 new file mode 100644 index 000000000..0da343bcf Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.008.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.008.woff2 new file mode 100644 index 000000000..bcaf8940c Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.009.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.009.woff2 new file mode 100644 index 000000000..bc75ab26c Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.010.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.010.woff2 new file mode 100644 index 000000000..65ca07e0e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.011.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.011.woff2 new file mode 100644 index 000000000..f85ee1621 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.012.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.012.woff2 new file mode 100644 index 000000000..54c1a23a3 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.013.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.013.woff2 new file mode 100644 index 000000000..6d07002e4 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.014.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.014.woff2 new file mode 100644 index 000000000..33a4c70b3 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.015.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.015.woff2 new file mode 100644 index 000000000..c37e054c9 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.016.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.016.woff2 new file mode 100644 index 000000000..b3a32b517 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.017.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.017.woff2 new file mode 100644 index 000000000..913dbd3a7 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.018.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.018.woff2 new file mode 100644 index 000000000..e42b9514e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.019.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.019.woff2 new file mode 100644 index 000000000..2474f373d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.020.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.020.woff2 new file mode 100644 index 000000000..918e0fe9b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.021.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.021.woff2 new file mode 100644 index 000000000..1d5897bd0 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.022.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.022.woff2 new file mode 100644 index 000000000..d63b55f51 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.023.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.023.woff2 new file mode 100644 index 000000000..440772bb9 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.024.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.024.woff2 new file mode 100644 index 000000000..f760b7fa3 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.025.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.025.woff2 new file mode 100644 index 000000000..d66996ef8 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.026.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.026.woff2 new file mode 100644 index 000000000..cc922dd4d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.027.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.027.woff2 new file mode 100644 index 000000000..da06410dc Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.028.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.028.woff2 new file mode 100644 index 000000000..546000fbf Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.029.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.029.woff2 new file mode 100644 index 000000000..91d4564cf Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.030.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.030.woff2 new file mode 100644 index 000000000..7215f2ac9 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.031.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.031.woff2 new file mode 100644 index 000000000..092c3bb4b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.032.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.032.woff2 new file mode 100644 index 000000000..cb6c1b117 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.033.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.033.woff2 new file mode 100644 index 000000000..e03a200cb Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.034.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.034.woff2 new file mode 100644 index 000000000..acd453143 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.035.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.035.woff2 new file mode 100644 index 000000000..ea94fb2df Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.036.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.036.woff2 new file mode 100644 index 000000000..06ce88037 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.037.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.037.woff2 new file mode 100644 index 000000000..8d57b7b4c Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.038.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.038.woff2 new file mode 100644 index 000000000..04db3f534 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.039.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.039.woff2 new file mode 100644 index 000000000..b9e0c7879 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.040.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.040.woff2 new file mode 100644 index 000000000..54ddb58c3 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.041.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.041.woff2 new file mode 100644 index 000000000..7502244de Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.042.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.042.woff2 new file mode 100644 index 000000000..eaa183680 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.043.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.043.woff2 new file mode 100644 index 000000000..a1e19f6c7 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.044.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.044.woff2 new file mode 100644 index 000000000..78e351f19 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.045.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.045.woff2 new file mode 100644 index 000000000..df12bea61 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.046.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.046.woff2 new file mode 100644 index 000000000..922f1104e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.047.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.047.woff2 new file mode 100644 index 000000000..35f230aa3 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.048.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.048.woff2 new file mode 100644 index 000000000..afa176ea4 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.049.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.049.woff2 new file mode 100644 index 000000000..1af9cf8c2 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-SemiBold.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.000.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.000.woff2 new file mode 100644 index 000000000..9f3597bcd Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.001.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.001.woff2 new file mode 100644 index 000000000..8a42a158f Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.002.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.002.woff2 new file mode 100644 index 000000000..31031fe0a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.003.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.003.woff2 new file mode 100644 index 000000000..34802bcfc Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.004.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.004.woff2 new file mode 100644 index 000000000..3bb693c7f Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.005.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.005.woff2 new file mode 100644 index 000000000..b1608675d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.006.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.006.woff2 new file mode 100644 index 000000000..14eef9b09 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.007.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.007.woff2 new file mode 100644 index 000000000..7dde932c7 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.008.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.008.woff2 new file mode 100644 index 000000000..97e3d13ac Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.009.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.009.woff2 new file mode 100644 index 000000000..43410f4f6 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.010.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.010.woff2 new file mode 100644 index 000000000..d96b338b2 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.011.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.011.woff2 new file mode 100644 index 000000000..aebbd69ba Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.012.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.012.woff2 new file mode 100644 index 000000000..1cd355b70 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.013.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.013.woff2 new file mode 100644 index 000000000..c84ce0aac Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.014.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.014.woff2 new file mode 100644 index 000000000..142c42324 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.015.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.015.woff2 new file mode 100644 index 000000000..bb73b5466 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.016.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.016.woff2 new file mode 100644 index 000000000..3c876e239 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.017.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.017.woff2 new file mode 100644 index 000000000..bbec9b5bc Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.018.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.018.woff2 new file mode 100644 index 000000000..58b11c3da Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.019.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.019.woff2 new file mode 100644 index 000000000..2e6c9af9e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.020.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.020.woff2 new file mode 100644 index 000000000..b115c0b12 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.021.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.021.woff2 new file mode 100644 index 000000000..c741c894a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.022.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.022.woff2 new file mode 100644 index 000000000..e1353eb97 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.023.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.023.woff2 new file mode 100644 index 000000000..a9c4269e4 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.024.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.024.woff2 new file mode 100644 index 000000000..b01ee59fd Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.025.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.025.woff2 new file mode 100644 index 000000000..d1e689251 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.026.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.026.woff2 new file mode 100644 index 000000000..cfad20026 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.027.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.027.woff2 new file mode 100644 index 000000000..a4c50f2b1 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.028.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.028.woff2 new file mode 100644 index 000000000..6bcebbe90 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.029.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.029.woff2 new file mode 100644 index 000000000..b46655d45 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.030.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.030.woff2 new file mode 100644 index 000000000..2d9b690fd Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.031.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.031.woff2 new file mode 100644 index 000000000..ed122ea38 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.032.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.032.woff2 new file mode 100644 index 000000000..604e9a030 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.033.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.033.woff2 new file mode 100644 index 000000000..78601b854 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.034.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.034.woff2 new file mode 100644 index 000000000..2ed059758 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.035.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.035.woff2 new file mode 100644 index 000000000..9bc114398 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.036.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.036.woff2 new file mode 100644 index 000000000..5b80d5de0 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.037.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.037.woff2 new file mode 100644 index 000000000..5a014573d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.038.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.038.woff2 new file mode 100644 index 000000000..447b0a0cb Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.039.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.039.woff2 new file mode 100644 index 000000000..9dcf693e8 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.040.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.040.woff2 new file mode 100644 index 000000000..5284946af Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.041.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.041.woff2 new file mode 100644 index 000000000..c73423300 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.042.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.042.woff2 new file mode 100644 index 000000000..bc215aba2 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.043.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.043.woff2 new file mode 100644 index 000000000..ba4dab667 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.044.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.044.woff2 new file mode 100644 index 000000000..6f987eedf Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.045.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.045.woff2 new file mode 100644 index 000000000..fe04a5cf5 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.046.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.046.woff2 new file mode 100644 index 000000000..3befd71de Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.047.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.047.woff2 new file mode 100644 index 000000000..570d0abc9 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.048.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.048.woff2 new file mode 100644 index 000000000..aaf980e8a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.049.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.049.woff2 new file mode 100644 index 000000000..7367edf4b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Text.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.000.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.000.woff2 new file mode 100644 index 000000000..d1f7cc6db Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.000.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.001.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.001.woff2 new file mode 100644 index 000000000..fa202cbcd Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.001.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.002.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.002.woff2 new file mode 100644 index 000000000..030fbeb44 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.002.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.003.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.003.woff2 new file mode 100644 index 000000000..15a95f665 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.003.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.004.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.004.woff2 new file mode 100644 index 000000000..2b2953689 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.004.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.005.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.005.woff2 new file mode 100644 index 000000000..eb06ba6b5 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.005.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.006.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.006.woff2 new file mode 100644 index 000000000..f3dc04bdd Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.006.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.007.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.007.woff2 new file mode 100644 index 000000000..d089d5336 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.007.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.008.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.008.woff2 new file mode 100644 index 000000000..5af706c11 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.008.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.009.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.009.woff2 new file mode 100644 index 000000000..6107c982a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.009.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.010.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.010.woff2 new file mode 100644 index 000000000..e530ada74 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.010.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.011.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.011.woff2 new file mode 100644 index 000000000..aa135db96 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.011.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.012.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.012.woff2 new file mode 100644 index 000000000..0936cebb9 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.012.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.013.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.013.woff2 new file mode 100644 index 000000000..a2c46ea45 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.013.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.014.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.014.woff2 new file mode 100644 index 000000000..e844c793e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.014.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.015.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.015.woff2 new file mode 100644 index 000000000..027541aed Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.015.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.016.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.016.woff2 new file mode 100644 index 000000000..bef60137b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.016.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.017.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.017.woff2 new file mode 100644 index 000000000..6b4a5c4cd Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.017.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.018.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.018.woff2 new file mode 100644 index 000000000..f1a9aa1f0 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.018.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.019.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.019.woff2 new file mode 100644 index 000000000..382b7f951 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.019.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.020.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.020.woff2 new file mode 100644 index 000000000..366d8aa95 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.020.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.021.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.021.woff2 new file mode 100644 index 000000000..9adac5f0e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.021.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.022.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.022.woff2 new file mode 100644 index 000000000..d5a52a3d9 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.022.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.023.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.023.woff2 new file mode 100644 index 000000000..e6c0999e3 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.023.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.024.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.024.woff2 new file mode 100644 index 000000000..957118609 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.024.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.025.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.025.woff2 new file mode 100644 index 000000000..5225a0691 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.025.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.026.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.026.woff2 new file mode 100644 index 000000000..e7c4e4ca3 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.026.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.027.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.027.woff2 new file mode 100644 index 000000000..98a3128d3 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.027.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.028.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.028.woff2 new file mode 100644 index 000000000..3ba668368 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.028.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.029.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.029.woff2 new file mode 100644 index 000000000..aa20f4aaa Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.029.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.030.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.030.woff2 new file mode 100644 index 000000000..91a1a0ed8 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.030.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.031.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.031.woff2 new file mode 100644 index 000000000..6e3920c0a Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.031.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.032.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.032.woff2 new file mode 100644 index 000000000..4eaf805c3 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.032.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.033.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.033.woff2 new file mode 100644 index 000000000..3d71ebfcd Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.033.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.034.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.034.woff2 new file mode 100644 index 000000000..8f13b0c41 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.034.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.035.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.035.woff2 new file mode 100644 index 000000000..804367529 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.035.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.036.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.036.woff2 new file mode 100644 index 000000000..f254a91df Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.036.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.037.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.037.woff2 new file mode 100644 index 000000000..2597b7a24 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.037.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.038.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.038.woff2 new file mode 100644 index 000000000..1c6e3e975 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.038.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.039.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.039.woff2 new file mode 100644 index 000000000..57e8a7bc8 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.039.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.040.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.040.woff2 new file mode 100644 index 000000000..6d64dae2e Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.040.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.041.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.041.woff2 new file mode 100644 index 000000000..b69af0302 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.041.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.042.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.042.woff2 new file mode 100644 index 000000000..5a1568583 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.042.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.043.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.043.woff2 new file mode 100644 index 000000000..b4bc72ede Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.043.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.044.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.044.woff2 new file mode 100644 index 000000000..9877946ab Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.044.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.045.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.045.woff2 new file mode 100644 index 000000000..319df2efd Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.045.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.046.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.046.woff2 new file mode 100644 index 000000000..936135f51 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.046.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.047.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.047.woff2 new file mode 100644 index 000000000..a6c4fbe4b Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.047.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.048.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.048.woff2 new file mode 100644 index 000000000..9fddf4a5d Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.048.woff2 differ diff --git a/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.049.woff2 b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.049.woff2 new file mode 100644 index 000000000..9e032fd07 Binary files /dev/null and b/packages/fonts/files/FluxerSansTC/FluxerSansTC-Thin.049.woff2 differ diff --git a/packages/fonts/files/FluxerSansThai/FluxerSansThai-Bold.woff2 b/packages/fonts/files/FluxerSansThai/FluxerSansThai-Bold.woff2 new file mode 100644 index 000000000..e3f6e6ffd Binary files /dev/null and b/packages/fonts/files/FluxerSansThai/FluxerSansThai-Bold.woff2 differ diff --git a/packages/fonts/files/FluxerSansThai/FluxerSansThai-ExtraLight.woff2 b/packages/fonts/files/FluxerSansThai/FluxerSansThai-ExtraLight.woff2 new file mode 100644 index 000000000..a565b5b1e Binary files /dev/null and b/packages/fonts/files/FluxerSansThai/FluxerSansThai-ExtraLight.woff2 differ diff --git a/packages/fonts/files/FluxerSansThai/FluxerSansThai-Light.woff2 b/packages/fonts/files/FluxerSansThai/FluxerSansThai-Light.woff2 new file mode 100644 index 000000000..ac7ba4ff0 Binary files /dev/null and b/packages/fonts/files/FluxerSansThai/FluxerSansThai-Light.woff2 differ diff --git a/packages/fonts/files/FluxerSansThai/FluxerSansThai-Medium.woff2 b/packages/fonts/files/FluxerSansThai/FluxerSansThai-Medium.woff2 new file mode 100644 index 000000000..7734e1ac7 Binary files /dev/null and b/packages/fonts/files/FluxerSansThai/FluxerSansThai-Medium.woff2 differ diff --git a/packages/fonts/files/FluxerSansThai/FluxerSansThai-Regular.woff2 b/packages/fonts/files/FluxerSansThai/FluxerSansThai-Regular.woff2 new file mode 100644 index 000000000..783a65d03 Binary files /dev/null and b/packages/fonts/files/FluxerSansThai/FluxerSansThai-Regular.woff2 differ diff --git a/packages/fonts/files/FluxerSansThai/FluxerSansThai-SemiBold.woff2 b/packages/fonts/files/FluxerSansThai/FluxerSansThai-SemiBold.woff2 new file mode 100644 index 000000000..5ab2df1bc Binary files /dev/null and b/packages/fonts/files/FluxerSansThai/FluxerSansThai-SemiBold.woff2 differ diff --git a/packages/fonts/files/FluxerSansThai/FluxerSansThai-Text.woff2 b/packages/fonts/files/FluxerSansThai/FluxerSansThai-Text.woff2 new file mode 100644 index 000000000..970ca7565 Binary files /dev/null and b/packages/fonts/files/FluxerSansThai/FluxerSansThai-Text.woff2 differ diff --git a/packages/fonts/files/FluxerSansThai/FluxerSansThai-Thin.woff2 b/packages/fonts/files/FluxerSansThai/FluxerSansThai-Thin.woff2 new file mode 100644 index 000000000..ed28b7fee Binary files /dev/null and b/packages/fonts/files/FluxerSansThai/FluxerSansThai-Thin.woff2 differ diff --git a/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Bold.woff2 b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Bold.woff2 new file mode 100644 index 000000000..4b10f54f5 Binary files /dev/null and b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Bold.woff2 differ diff --git a/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-ExtraLight.woff2 b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-ExtraLight.woff2 new file mode 100644 index 000000000..7b81179a0 Binary files /dev/null and b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-ExtraLight.woff2 differ diff --git a/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Light.woff2 b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Light.woff2 new file mode 100644 index 000000000..266066f6f Binary files /dev/null and b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Light.woff2 differ diff --git a/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Medium.woff2 b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Medium.woff2 new file mode 100644 index 000000000..22ddf1d01 Binary files /dev/null and b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Medium.woff2 differ diff --git a/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Regular.woff2 b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Regular.woff2 new file mode 100644 index 000000000..40c339661 Binary files /dev/null and b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Regular.woff2 differ diff --git a/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-SemiBold.woff2 b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-SemiBold.woff2 new file mode 100644 index 000000000..34371c1d5 Binary files /dev/null and b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-SemiBold.woff2 differ diff --git a/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Text.woff2 b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Text.woff2 new file mode 100644 index 000000000..d6e0b1ff4 Binary files /dev/null and b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Text.woff2 differ diff --git a/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Thin.woff2 b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Thin.woff2 new file mode 100644 index 000000000..dcf22047c Binary files /dev/null and b/packages/fonts/files/FluxerSansThaiLooped/FluxerSansThaiLooped-Thin.woff2 differ diff --git a/packages/fonts/manifest.json b/packages/fonts/manifest.json new file mode 100644 index 000000000..b894b7041 --- /dev/null +++ b/packages/fonts/manifest.json @@ -0,0 +1,10382 @@ +{ + "_comment": "Generated by tools/fonts/build_fonts.py. Do not edit by hand. Paths are relative to packages/fonts/.", + "entrypoints": { + "latinCore": { + "Fluxer Sans": "css/fluxer-sans.css", + "Fluxer Mono": "css/fluxer-mono.css" + }, + "variables": "css/variables.css", + "localeFallbacks": "css/locale-fallbacks.css", + "scripts": { + "Fluxer Sans Arabic": "css/script-arabic.css", + "Fluxer Sans Devanagari": "css/script-devanagari.css", + "Fluxer Sans Hebrew": "css/script-hebrew.css", + "Fluxer Sans Thai": "css/script-thai.css", + "Fluxer Sans Thai Looped": "css/script-thai-looped.css", + "Fluxer Sans JP": "css/script-jp.css", + "Fluxer Sans SC": "css/script-sc.css", + "Fluxer Sans TC": "css/script-tc.css", + "Fluxer Sans KR": "css/script-kr.css" + } + }, + "families": [ + { + "id": "FluxerSans", + "cssFamily": "Fluxer Sans", + "stylesheet": "css/fluxer-sans.css", + "mode": "rebuild", + "latinCore": true, + "chunks": 1, + "faces": [ + { + "file": "FluxerSans/FluxerSans-Thin.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": null, + "bytes": 61924 + }, + { + "file": "FluxerSans/FluxerSans-ExtraLight.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": null, + "bytes": 66532 + }, + { + "file": "FluxerSans/FluxerSans-Light.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": null, + "bytes": 66456 + }, + { + "file": "FluxerSans/FluxerSans-Regular.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": null, + "bytes": 62852 + }, + { + "file": "FluxerSans/FluxerSans-Text.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": null, + "bytes": 66268 + }, + { + "file": "FluxerSans/FluxerSans-Medium.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": null, + "bytes": 66656 + }, + { + "file": "FluxerSans/FluxerSans-SemiBold.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": null, + "bytes": 67088 + }, + { + "file": "FluxerSans/FluxerSans-Bold.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": null, + "bytes": 62884 + }, + { + "file": "FluxerSans/FluxerSans-ThinItalic.woff2", + "weight": 100, + "style": "italic", + "unicodeRange": null, + "bytes": 66680 + }, + { + "file": "FluxerSans/FluxerSans-ExtraLightItalic.woff2", + "weight": 200, + "style": "italic", + "unicodeRange": null, + "bytes": 71012 + }, + { + "file": "FluxerSans/FluxerSans-LightItalic.woff2", + "weight": 300, + "style": "italic", + "unicodeRange": null, + "bytes": 70996 + }, + { + "file": "FluxerSans/FluxerSans-Italic.woff2", + "weight": 400, + "style": "italic", + "unicodeRange": null, + "bytes": 67128 + }, + { + "file": "FluxerSans/FluxerSans-TextItalic.woff2", + "weight": 450, + "style": "italic", + "unicodeRange": null, + "bytes": 71092 + }, + { + "file": "FluxerSans/FluxerSans-MediumItalic.woff2", + "weight": 500, + "style": "italic", + "unicodeRange": null, + "bytes": 71272 + }, + { + "file": "FluxerSans/FluxerSans-SemiBoldItalic.woff2", + "weight": 600, + "style": "italic", + "unicodeRange": null, + "bytes": 70772 + }, + { + "file": "FluxerSans/FluxerSans-BoldItalic.woff2", + "weight": 700, + "style": "italic", + "unicodeRange": null, + "bytes": 66596 + } + ] + }, + { + "id": "FluxerMono", + "cssFamily": "Fluxer Mono", + "stylesheet": "css/fluxer-mono.css", + "mode": "rebuild", + "latinCore": true, + "chunks": 1, + "faces": [ + { + "file": "FluxerMono/FluxerMono-Thin.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": null, + "bytes": 49240 + }, + { + "file": "FluxerMono/FluxerMono-ExtraLight.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": null, + "bytes": 49656 + }, + { + "file": "FluxerMono/FluxerMono-Light.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": null, + "bytes": 49408 + }, + { + "file": "FluxerMono/FluxerMono-Regular.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": null, + "bytes": 49148 + }, + { + "file": "FluxerMono/FluxerMono-Text.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": null, + "bytes": 49868 + }, + { + "file": "FluxerMono/FluxerMono-Medium.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": null, + "bytes": 50308 + }, + { + "file": "FluxerMono/FluxerMono-SemiBold.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": null, + "bytes": 50536 + }, + { + "file": "FluxerMono/FluxerMono-Bold.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": null, + "bytes": 50372 + }, + { + "file": "FluxerMono/FluxerMono-ThinItalic.woff2", + "weight": 100, + "style": "italic", + "unicodeRange": null, + "bytes": 52508 + }, + { + "file": "FluxerMono/FluxerMono-ExtraLightItalic.woff2", + "weight": 200, + "style": "italic", + "unicodeRange": null, + "bytes": 53576 + }, + { + "file": "FluxerMono/FluxerMono-LightItalic.woff2", + "weight": 300, + "style": "italic", + "unicodeRange": null, + "bytes": 53900 + }, + { + "file": "FluxerMono/FluxerMono-Italic.woff2", + "weight": 400, + "style": "italic", + "unicodeRange": null, + "bytes": 53548 + }, + { + "file": "FluxerMono/FluxerMono-TextItalic.woff2", + "weight": 450, + "style": "italic", + "unicodeRange": null, + "bytes": 55104 + }, + { + "file": "FluxerMono/FluxerMono-MediumItalic.woff2", + "weight": 500, + "style": "italic", + "unicodeRange": null, + "bytes": 54828 + }, + { + "file": "FluxerMono/FluxerMono-SemiBoldItalic.woff2", + "weight": 600, + "style": "italic", + "unicodeRange": null, + "bytes": 54772 + }, + { + "file": "FluxerMono/FluxerMono-BoldItalic.woff2", + "weight": 700, + "style": "italic", + "unicodeRange": null, + "bytes": 53944 + } + ] + }, + { + "id": "FluxerSansArabic", + "cssFamily": "Fluxer Sans Arabic", + "stylesheet": "css/script-arabic.css", + "mode": "rebuild", + "latinCore": false, + "chunks": 1, + "faces": [ + { + "file": "FluxerSansArabic/FluxerSansArabic-Thin.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC", + "bytes": 73468 + }, + { + "file": "FluxerSansArabic/FluxerSansArabic-ExtraLight.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC", + "bytes": 76180 + }, + { + "file": "FluxerSansArabic/FluxerSansArabic-Light.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC", + "bytes": 75412 + }, + { + "file": "FluxerSansArabic/FluxerSansArabic-Regular.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC", + "bytes": 71940 + }, + { + "file": "FluxerSansArabic/FluxerSansArabic-Text.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC", + "bytes": 76604 + }, + { + "file": "FluxerSansArabic/FluxerSansArabic-Medium.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC", + "bytes": 75628 + }, + { + "file": "FluxerSansArabic/FluxerSansArabic-SemiBold.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC", + "bytes": 76300 + }, + { + "file": "FluxerSansArabic/FluxerSansArabic-Bold.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0600-0604, U+0606-061B, U+061E-06A1, U+06A3-06FF, U+0750-077F, U+08A0, U+08A2-08AC, U+08B3, U+08E4-08FE, U+0E3F, U+1E9E, U+2010, U+2013-2015, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB51, U+FB53-FB55, U+FB57-FB59, U+FB5B-FB5D, U+FB5F-FB61, U+FB63-FB65, U+FB67-FB69, U+FB6B-FB6D, U+FB6F-FB71, U+FB73-FB75, U+FB77-FB79, U+FB7B-FB7D, U+FB7F-FB81, U+FB83, U+FB85, U+FB87, U+FB89, U+FB8B, U+FB8D, U+FB8F-FB91, U+FB93-FB95, U+FB97-FB99, U+FB9B-FB9D, U+FB9F, U+FBA1, U+FBA5, U+FBA7-FBA9, U+FBAB-FBAD, U+FBAF, U+FBB1-FBC1, U+FBD4-FBD6, U+FBD8, U+FBDA, U+FBDC, U+FBDF, U+FBE1, U+FBE3, U+FBE5-FBE9, U+FBFD-FBFF, U+FC03-FC04, U+FC09-FC0A, U+FC0F-FC10, U+FC13-FC14, U+FC31-FC32, U+FC35-FC36, U+FC3D-FC3E, U+FC42-FC44, U+FC4F-FC50, U+FC59-FC5D, U+FC64-FC65, U+FC67-FC6B, U+FC6D-FC71, U+FC73-FC77, U+FC79-FC7B, U+FC83-FC84, U+FC8A-FC8B, U+FC8D-FC92, U+FC94-FC96, U+FCCC, U+FCD9, U+FCF2-FCF4, U+FCFB-FCFE, U+FD05-FD08, U+FD0D-FD10, U+FD17-FD1A, U+FD21-FD24, U+FD29-FD2C, U+FD3C-FD3F, U+FDF1-FDF2, U+FDF4, U+FDFA-FDFD, U+FE70-FE74, U+FE76-FEFC", + "bytes": 73748 + } + ] + }, + { + "id": "FluxerSansDevanagari", + "cssFamily": "Fluxer Sans Devanagari", + "stylesheet": "css/script-devanagari.css", + "mode": "rebuild", + "latinCore": false, + "chunks": 1, + "faces": [ + { + "file": "FluxerSansDevanagari/FluxerSansDevanagari-Thin.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 105116 + }, + { + "file": "FluxerSansDevanagari/FluxerSansDevanagari-ExtraLight.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 112196 + }, + { + "file": "FluxerSansDevanagari/FluxerSansDevanagari-Light.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 111736 + }, + { + "file": "FluxerSansDevanagari/FluxerSansDevanagari-Regular.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 103968 + }, + { + "file": "FluxerSansDevanagari/FluxerSansDevanagari-Text.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 109432 + }, + { + "file": "FluxerSansDevanagari/FluxerSansDevanagari-Medium.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 107012 + }, + { + "file": "FluxerSansDevanagari/FluxerSansDevanagari-SemiBold.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 107364 + }, + { + "file": "FluxerSansDevanagari/FluxerSansDevanagari-Bold.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+0901-0939, U+093C-094D, U+0950, U+0958-0970, U+0972, U+0E3F, U+1E9E, U+200C-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 100776 + } + ] + }, + { + "id": "FluxerSansHebrew", + "cssFamily": "Fluxer Sans Hebrew", + "stylesheet": "css/script-hebrew.css", + "mode": "rebuild", + "latinCore": false, + "chunks": 1, + "faces": [ + { + "file": "FluxerSansHebrew/FluxerSansHebrew-Thin.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F", + "bytes": 34332 + }, + { + "file": "FluxerSansHebrew/FluxerSansHebrew-ExtraLight.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F", + "bytes": 35512 + }, + { + "file": "FluxerSansHebrew/FluxerSansHebrew-Light.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F", + "bytes": 35020 + }, + { + "file": "FluxerSansHebrew/FluxerSansHebrew-Regular.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F", + "bytes": 33156 + }, + { + "file": "FluxerSansHebrew/FluxerSansHebrew-Text.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F", + "bytes": 34632 + }, + { + "file": "FluxerSansHebrew/FluxerSansHebrew-Medium.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F", + "bytes": 34672 + }, + { + "file": "FluxerSansHebrew/FluxerSansHebrew-SemiBold.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F", + "bytes": 34948 + }, + { + "file": "FluxerSansHebrew/FluxerSansHebrew-Bold.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D8-02DD, U+0300-0304, U+0307-0308, U+030A-030C, U+0315, U+0327-0328, U+03C0, U+05B0-05BC, U+05BE-05BF, U+05C1-05C2, U+05D0-05EA, U+05F0-05F4, U+0E3F, U+1E9E, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+2713, U+274C, U+2B0E-2B11, U+ECE0, U+EFCC, U+FB01-FB02, U+FB1F-FB20, U+FB2A-FB36, U+FB38-FB3C, U+FB3E, U+FB40-FB41, U+FB43-FB44, U+FB46-FB4F", + "bytes": 33720 + } + ] + }, + { + "id": "FluxerSansThai", + "cssFamily": "Fluxer Sans Thai", + "stylesheet": "css/script-thai.css", + "mode": "rebuild", + "latinCore": false, + "chunks": 1, + "faces": [ + { + "file": "FluxerSansThai/FluxerSansThai-Thin.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 40880 + }, + { + "file": "FluxerSansThai/FluxerSansThai-ExtraLight.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 42116 + }, + { + "file": "FluxerSansThai/FluxerSansThai-Light.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 41648 + }, + { + "file": "FluxerSansThai/FluxerSansThai-Regular.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 39884 + }, + { + "file": "FluxerSansThai/FluxerSansThai-Text.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 41040 + }, + { + "file": "FluxerSansThai/FluxerSansThai-Medium.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 40992 + }, + { + "file": "FluxerSansThai/FluxerSansThai-SemiBold.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 41408 + }, + { + "file": "FluxerSansThai/FluxerSansThai-Bold.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 40180 + } + ] + }, + { + "id": "FluxerSansThaiLooped", + "cssFamily": "Fluxer Sans Thai Looped", + "stylesheet": "css/script-thai-looped.css", + "mode": "rebuild", + "latinCore": false, + "chunks": 1, + "faces": [ + { + "file": "FluxerSansThaiLooped/FluxerSansThaiLooped-Thin.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 43200 + }, + { + "file": "FluxerSansThaiLooped/FluxerSansThaiLooped-ExtraLight.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 44800 + }, + { + "file": "FluxerSansThaiLooped/FluxerSansThaiLooped-Light.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 44248 + }, + { + "file": "FluxerSansThaiLooped/FluxerSansThaiLooped-Regular.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 42352 + }, + { + "file": "FluxerSansThaiLooped/FluxerSansThaiLooped-Text.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 43920 + }, + { + "file": "FluxerSansThaiLooped/FluxerSansThaiLooped-Medium.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 44068 + }, + { + "file": "FluxerSansThaiLooped/FluxerSansThaiLooped-SemiBold.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 44480 + }, + { + "file": "FluxerSansThaiLooped/FluxerSansThaiLooped-Bold.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0110, U+0131-0133, U+0135, U+0140-0142, U+0152-0153, U+0160-0161, U+0178, U+017D-017E, U+0192, U+0237, U+02BB-02BC, U+02C6-02C7, U+02D7-02DD, U+0303, U+0331, U+034F, U+03C0, U+0E01-0E3A, U+0E3F-0E5B, U+1E9E, U+200B-200D, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2060, U+2070, U+2074-2079, U+2080-2089, U+20A1, U+20A4, U+20A6, U+20A8-20AE, U+20B1-20B2, U+20B4-20B5, U+20B8-20BA, U+20BD, U+20BF, U+2113, U+2116, U+2122, U+2126, U+212E, U+2150-2151, U+2153-215E, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2202, U+2206, U+220F, U+2211-2212, U+2215, U+221A, U+221E, U+222B, U+2248, U+2260, U+2264-2265, U+25CA, U+25CC, U+2638, U+2713, U+274C, U+2B0E-2B11, U+EC00-EC0B, U+EC10-EC12, U+ECE0, U+EFCC, U+FB01-FB02", + "bytes": 43108 + } + ] + }, + { + "id": "FluxerSansJP", + "cssFamily": "Fluxer Sans JP", + "stylesheet": "css/script-jp.css", + "mode": "subset", + "latinCore": false, + "chunks": 45, + "faces": [ + { + "file": "FluxerSansJP/FluxerSansJP-Thin.000.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2", + "bytes": 100256 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.000.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2", + "bytes": 110376 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.000.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2", + "bytes": 111336 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.000.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2", + "bytes": 103040 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.000.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2", + "bytes": 114176 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.000.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2", + "bytes": 114560 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.000.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2", + "bytes": 113956 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.000.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0-0113, U+0116-0122, U+0124-012B, U+012E-014D, U+0150-017E, U+0192-0193, U+01C2, U+01CD-01DC, U+01F5, U+01F8-01F9, U+01FD, U+0237, U+0250-025C, U+025E-0268, U+026A, U+026C-0276, U+0278-027B, U+027D-027E, U+0280-0284, U+0288-0292, U+0294-0295, U+0298-0299, U+029C-029D, U+029F, U+02A1-02A2", + "bytes": 104484 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.001.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189", + "bytes": 36504 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.001.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189", + "bytes": 40160 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.001.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189", + "bytes": 40132 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.001.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189", + "bytes": 36712 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.001.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189", + "bytes": 41184 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.001.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189", + "bytes": 41192 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.001.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189", + "bytes": 41400 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.001.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+02B0, U+02B2, U+02B7, U+02BB-02BC, U+02C1, U+02C6-02CC, U+02D0-02D1, U+02D8-02DE, U+02E0-02E1, U+02E5-02E9, U+0300-0308, U+030A-030C, U+030F, U+0318-031A, U+031C-0320, U+0324-0325, U+0327-032A, U+032C, U+032F-0330, U+0332, U+0334, U+0336, U+0339-033D, U+0361, U+0384-0386, U+0388-038A, U+038C, U+038E-03A1, U+03A3-03CE, U+03D0-03D1, U+03D5, U+03DB, U+0401-040C, U+040E-044F, U+0451-045C, U+045E-045F, U+1E3E-1E3F, U+1EBC-1EBD, U+1F70-1F73, U+2002-2003, U+2010-2016, U+2018-201A, U+201C-201E, U+2020-2022, U+2025-2026, U+2030, U+2032-2033, U+2039-203C, U+203E-203F, U+2042, U+2044, U+2047-2049, U+2051, U+205A, U+205D, U+2070, U+2074-2079, U+2080-2089, U+20AC, U+20DD-20DE, U+2100, U+2103, U+2105, U+2109-210A, U+210F, U+2113, U+2116, U+2121-2122, U+2126-2127, U+212B, U+212E, U+2135, U+213B, U+2150-215E, U+2160-216B, U+2170-217B, U+217F, U+2189", + "bytes": 38180 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.002.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573", + "bytes": 21072 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.002.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573", + "bytes": 22864 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.002.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573", + "bytes": 23244 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.002.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573", + "bytes": 21532 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.002.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573", + "bytes": 23416 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.002.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573", + "bytes": 23416 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.002.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573", + "bytes": 23468 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.002.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4-21C6, U+21CB-21CC, U+21D0, U+21D2, U+21D4, U+21E6-21E9, U+21F5, U+2200, U+2202-2203, U+2205-220B, U+220F, U+2211, U+2213, U+2219-221A, U+221D-2220, U+2225-222E, U+2234-2235, U+223C-223D, U+2243, U+2245, U+2248, U+2252, U+2260-2262, U+2264-2267, U+226A-226B, U+2272-2273, U+2276-2277, U+2282-2287, U+228A-228B, U+2295-2298, U+229E, U+22A0, U+22A5, U+22BF, U+22DA-22DB, U+2305-2307, U+2312, U+2318, U+2329-232A, U+239B-23AD, U+23B0-23B1, U+23BE-23CC, U+23CE, U+2423, U+2460-2492, U+249C-254B, U+2550, U+255E, U+2561, U+256A, U+256D-2573", + "bytes": 21416 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.003.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5", + "bytes": 37924 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.003.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5", + "bytes": 39312 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.003.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5", + "bytes": 39600 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.003.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5", + "bytes": 38680 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.003.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5", + "bytes": 39808 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.003.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5", + "bytes": 39792 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.003.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5", + "bytes": 39768 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.003.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2594-2595, U+25A0-25A2, U+25AA-25AB, U+25B1-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C7, U+25C9-25CC, U+25CE-25D3, U+25E2-25E6, U+25EF, U+2600-2603, U+2605-2606, U+260E, U+2616-2617, U+261C-261F, U+2640, U+2642, U+2660-266F, U+2672-267D, U+26A0, U+2702, U+2713, U+271A, U+273F-2740, U+2756, U+2776-277F, U+27A1, U+2934-2935, U+29BF, U+29FA-29FB, U+2B05-2B07, U+2B0E-2B11, U+2B95, U+2E83, U+2E85, U+2E87, U+2E89, U+2E8B-2E90, U+2E92-2E99, U+2E9B, U+2E9E-2EA4, U+2EA6, U+2EA8-2EAE, U+2EB1-2EB3, U+2EB7, U+2EB9, U+2EBC-2EC4, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED1-2ED2, U+2ED6-2ED8, U+2EDD-2EDF, U+2EE4, U+2EE8-2EE9, U+2EEB, U+2EED, U+2EEF, U+2EF2, U+2F00-2FD5", + "bytes": 38312 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.004.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF", + "bytes": 98280 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.004.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF", + "bytes": 126268 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.004.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF", + "bytes": 131212 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.004.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF", + "bytes": 115888 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.004.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF", + "bytes": 134388 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.004.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF", + "bytes": 134196 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.004.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF", + "bytes": 132276 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.004.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+3000-3019, U+301C-301D, U+301F-3020, U+3030, U+3033-3036, U+303B-303D, U+3041-3096, U+3099-30FF, U+3190-319F, U+31F0-31FF, U+3220-3243, U+3251-325F, U+3280-32BF, U+32D0-32FF", + "bytes": 116176 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.005.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77", + "bytes": 51624 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.005.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77", + "bytes": 54524 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.005.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77", + "bytes": 55200 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.005.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77", + "bytes": 53976 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.005.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77", + "bytes": 55892 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.005.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77", + "bytes": 55944 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.005.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77", + "bytes": 56212 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.005.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+3300-332B, U+332D-3357, U+3371, U+337B-337F, U+3385-3389, U+338D-3390, U+3396-3398, U+339B-33A6, U+33B0-33B3, U+33C2, U+33C4, U+33C8, U+33CB-33CD, U+33D4, U+33D7-33D8, U+33DA, U+3402, U+3405-3406, U+3427, U+342C, U+342E, U+3468, U+346A, U+3488, U+3492, U+34B5, U+34BC, U+34C1, U+34C7, U+34DB, U+351F, U+353E, U+355D-355E, U+3563, U+356E, U+35A6, U+35A8, U+35C5, U+35DA, U+35DE, U+35F4, U+3605, U+3614, U+364A, U+3691, U+3696, U+3699, U+36CF, U+3761-3762, U+376B-376C, U+3775, U+378D, U+37C1, U+37E2, U+37E8, U+37F4, U+37FD, U+3800, U+382F, U+3836, U+3840, U+385C, U+3861, U+38A1, U+38AD, U+38FA, U+3917, U+391A, U+396F, U+39A4, U+39B8, U+3A5C, U+3A6E, U+3A73, U+3A85, U+3AC4, U+3ACB, U+3AD6-3AD7, U+3AEA, U+3AF3, U+3B0E, U+3B1A, U+3B1C, U+3B22, U+3B6D, U+3B77, U+3B87-3B88, U+3B8D, U+3BA4, U+3BB6, U+3BC3, U+3BCD, U+3BF0, U+3BF3, U+3C0F, U+3C26, U+3CC3, U+3CD2, U+3D11, U+3D1E, U+3D31, U+3D4E, U+3D64, U+3D9A, U+3DC0, U+3DCC, U+3DD4, U+3E05, U+3E3F-3E40, U+3E60, U+3E66, U+3E68, U+3E83, U+3E8A, U+3E94, U+3EDA, U+3F57, U+3F72, U+3F75, U+3F77, U+3FAE, U+3FB1, U+3FC9, U+3FD7, U+3FDC, U+4039, U+4058, U+4093, U+4103, U+4105, U+4148, U+414F, U+4163, U+41B4, U+41BF, U+41E6, U+41EE, U+41F3, U+4207, U+420E, U+4264, U+4293, U+42C6, U+42D6, U+42DD, U+4302, U+432B, U+4343, U+43EE, U+43F0, U+4408, U+440C, U+4417, U+441C, U+4422, U+4453, U+445B, U+4476, U+447A, U+4491, U+44B3, U+44BE, U+44D4, U+4508, U+450D, U+4525, U+4543, U+457A, U+459D, U+45B8, U+45BE, U+45E5, U+45EA, U+460F-4610, U+4641, U+4665, U+46A1, U+46AE-46AF, U+470C, U+471F, U+4764, U+47E6, U+47FD, U+4816, U+481E, U+4844, U+484E, U+48B5, U+49B0, U+49E7, U+49FA, U+4A04, U+4A29, U+4ABC, U+4B38, U+4B3B, U+4B7E, U+4BC2, U+4BCA, U+4BD2, U+4BE8, U+4C17, U+4C20, U+4C38, U+4CC4, U+4CD1, U+4CE1, U+4D07, U+4D77", + "bytes": 53420 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.006.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE", + "bytes": 37476 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.006.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE", + "bytes": 38380 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.006.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE", + "bytes": 38084 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.006.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE", + "bytes": 38064 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.006.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE", + "bytes": 38876 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.006.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE", + "bytes": 38876 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.006.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE", + "bytes": 39124 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.006.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+4E00-4E05, U+4E07-4E12, U+4E14-4E19, U+4E1E-4E1F, U+4E21, U+4E23-4E24, U+4E26, U+4E28-4E32, U+4E35-4E39, U+4E3B-4E3C, U+4E3F-4E45, U+4E47-4E48, U+4E4B, U+4E4D-4E4F, U+4E51, U+4E55-4E5A, U+4E5C-4E5F, U+4E62-4E63, U+4E68-4E69, U+4E71, U+4E73-4E75, U+4E79, U+4E7E-4E80, U+4E82, U+4E85-4E86, U+4E88-4E8E, U+4E91-4E92, U+4E94-4E99, U+4E9B-4EA2, U+4EA4-4EA6, U+4EA8, U+4EAB-4EB0, U+4EB3, U+4EB6, U+4EB9-4EBC, U+4EC0-4EC4, U+4EC6-4EC8, U+4ECA-4ECB, U+4ECD-4ED0, U+4ED4-4EDB, U+4EDD-4EE5, U+4EE8, U+4EEB, U+4EED-4EF3, U+4EF5-4EF7, U+4EFB-4F03, U+4F08-4F12, U+4F15-4F17, U+4F19-4F1A, U+4F1C-4F1D, U+4F2B, U+4F2E-4F31, U+4F33-4F3E, U+4F40, U+4F42-4F43, U+4F46-4F49, U+4F4B-4F60, U+4F63-4F64, U+4F69-4F6A, U+4F6C, U+4F6E-4F71, U+4F73, U+4F75-4F7F, U+4F81-4F86, U+4F88-4F94, U+4F96-4F9B, U+4F9D-4FA1, U+4FAB, U+4FAD-4FAF, U+4FB2, U+4FB5-4FB7, U+4FB9, U+4FBB-4FC6, U+4FC8-4FD4, U+4FD7-4FD8, U+4FDA-4FDD, U+4FDF-4FE6, U+4FEE-4FF3, U+4FF5-4FF6, U+4FF8, U+4FFA, U+4FFC-4FFE", + "bytes": 39064 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.007.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC", + "bytes": 51296 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.007.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC", + "bytes": 52732 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.007.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC", + "bytes": 52164 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.007.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC", + "bytes": 52104 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.007.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC", + "bytes": 53028 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.007.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC", + "bytes": 53224 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.007.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC", + "bytes": 53628 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.007.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+4FFF-5002, U+5004-5007, U+5009-5014, U+5016-501F, U+5021-502E, U+5030, U+5032-5033, U+5035-5036, U+5039, U+503B, U+5040-5043, U+5045-504A, U+504C, U+504E-5053, U+5055-5057, U+5059-505A, U+505C, U+505F-5060, U+5062-5063, U+5065-5067, U+506A, U+506C-506D, U+5070-5072, U+5074-5078, U+507D, U+5080-5081, U+5083-5086, U+5088, U+508A, U+508D-5096, U+5098-509C, U+509E-50A3, U+50AA, U+50AC-50AD, U+50AF-50B5, U+50B7, U+50B9-50BB, U+50BD-50BE, U+50C0, U+50C2-50C5, U+50C7, U+50C9-50CA, U+50CC-50D1, U+50D3-50D6, U+50D8-50DA, U+50DC-50DF, U+50E1-50E9, U+50ED-50F6, U+50F9-50FB, U+50FE, U+5100-5104, U+5106-5109, U+510B-510E, U+5110, U+5112, U+5114-511F, U+5121, U+5123, U+5127-5128, U+512A, U+512C-512D, U+512F, U+5131-5135, U+5137-513C, U+513F-5150, U+5152-5155, U+5157-5158, U+515A, U+515C, U+515F-5160, U+5162, U+5164-516E, U+5171, U+5173-5179, U+517B-517C, U+517E, U+5180, U+5182-5186, U+5189-5193, U+5195-5199, U+519D, U+51A0-51A6, U+51A8-51AD, U+51B0-51B8, U+51BA, U+51BC-51BF, U+51C2-51C6, U+51C8-51CD, U+51CF, U+51D1-51D6, U+51D8, U+51DB-51DC", + "bytes": 53336 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.008.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD", + "bytes": 47432 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.008.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD", + "bytes": 48688 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.008.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD", + "bytes": 48556 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.008.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD", + "bytes": 48488 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.008.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD", + "bytes": 49336 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.008.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD", + "bytes": 49624 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.008.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD", + "bytes": 49856 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.008.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+51DD-51E2, U+51E5-51E7, U+51E9-51EA, U+51EC-51EE, U+51F0-51FA, U+51FD-51FE, U+5200-5208, U+520A-520B, U+520E, U+5211-5218, U+521D, U+5222, U+5224-522B, U+522E, U+5230-5233, U+5235-523C, U+5243-5245, U+5247, U+5249-524D, U+524F, U+5254-5258, U+525A-5261, U+5263-5266, U+5269-526A, U+526C, U+526E-5275, U+5277-5279, U+527D, U+527F-5280, U+5282-5285, U+5287-528A, U+528C-528D, U+5291-5298, U+529A-529C, U+529F-52A0, U+52A3-52A7, U+52A9-52AD, U+52AF-52B1, U+52B4-52BE, U+52C0-52C1, U+52C3-52CA, U+52CC-52CD, U+52CF-52D2, U+52D4-52D9, U+52DB-52EA, U+52EC, U+52F0-52FB, U+52FE-5303, U+5305-5308, U+530A-530D, U+530F-5311, U+5313, U+5315-5321, U+5323-5325, U+5327-532D, U+532F-5333, U+5335, U+5338-5343, U+5345-534D, U+5351-5354, U+5357-535C, U+535E, U+5360-5361, U+5363, U+5365-5367, U+5369, U+536C-5375, U+5377-537B, U+537D-537F, U+5382-5384, U+5387-5389, U+538E, U+5393-5394, U+5396, U+5398-539A, U+539D, U+539F-53A1, U+53A4-53A6, U+53A8-53AB, U+53AD-53B0, U+53B2-53B8, U+53BA-53BB, U+53BD", + "bytes": 49572 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.009.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8", + "bytes": 41704 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.009.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8", + "bytes": 42808 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.009.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8", + "bytes": 42256 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.009.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8", + "bytes": 42544 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.009.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8", + "bytes": 43052 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.009.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8", + "bytes": 43248 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.009.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8", + "bytes": 43508 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.009.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+53C0-53C5, U+53C8-53CF, U+53D2-53D7, U+53D9-53DB, U+53DD-53F8, U+53FA, U+5401-5404, U+5408-5413, U+541A-541B, U+541D-5421, U+5424, U+5426-542F, U+5431, U+5433-5436, U+5438-5439, U+543B-5440, U+5442-5444, U+5446-544A, U+544C-544F, U+5451, U+5455, U+545E-545F, U+5462, U+5464, U+5466-546E, U+5470-5471, U+5473-5477, U+547B-547D, U+547F-5481, U+5483-5486, U+5488-5492, U+5495-5496, U+549C, U+549F-54A2, U+54A4-54AF, U+54B1-54B3, U+54B7-54C4, U+54C6-54CA, U+54CD-54CE, U+54D8, U+54E0-54E2, U+54E5-54E6, U+54E8-54EA, U+54EC-54EF, U+54F1-54F3, U+54F6, U+54FA, U+54FC-5501, U+5504-5509, U+550C-5510, U+5514-5516, U+5527, U+552A-552B, U+552E-552F, U+5531-5533, U+5535-5536, U+5538-5539, U+553B-553E, U+5540-5541, U+5544-5547, U+5549-554A, U+554C-554D, U+554F-5551, U+5553, U+5556-5558, U+555A-555E, U+5560-5561, U+5563-5564, U+5566, U+557B-5584, U+5586-558B, U+558E-558F, U+5591-5594, U+5597-559A, U+559C-559F, U+55A3-55A4, U+55A7-55AE, U+55B0, U+55B2, U+55B6, U+55BF, U+55C1, U+55C3-55C7, U+55C9, U+55CB-55CC, U+55CE, U+55D1-55D4, U+55D7-55D8, U+55DA-55DF, U+55E2-55E4, U+55E9, U+55EC, U+55EE, U+55F1, U+55F6-55F8", + "bytes": 43548 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.010.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A", + "bytes": 49272 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.010.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A", + "bytes": 50568 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.010.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A", + "bytes": 50524 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.010.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A", + "bytes": 50600 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.010.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A", + "bytes": 51384 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.010.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A", + "bytes": 51772 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.010.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A", + "bytes": 52080 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.010.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+55F9, U+55FD-55FF, U+5605-560A, U+560D-5612, U+5614, U+5616-5619, U+561B, U+5620, U+5628-5629, U+562C, U+562F-5639, U+563B-563D, U+563F-5644, U+5646-5647, U+5649, U+564B-5650, U+5653-5654, U+565B, U+565E, U+5660-5664, U+5666, U+5668-566D, U+566F, U+5671-5672, U+5674-5676, U+5678, U+567A, U+5680, U+5684-5688, U+568A-568C, U+568F, U+5694-5695, U+5699-569A, U+569D-56A0, U+56A2, U+56A5-56A9, U+56AB-56AE, U+56B1-56B4, U+56B6-56B7, U+56BC, U+56BE, U+56C0-56C3, U+56C5, U+56C8-56D1, U+56D3, U+56D7-56E1, U+56E3-56E8, U+56EB, U+56ED-56EE, U+56F0-56F3, U+56F6-56F7, U+56F9-56FA, U+56FD, U+56FF-5704, U+5707-570D, U+570F, U+5711-5713, U+5715-5716, U+5718, U+571A-571D, U+571F-572A, U+572C-5730, U+5733-5734, U+5737-5738, U+573B, U+573D-5740, U+5742, U+5745-5747, U+574A, U+574C-5752, U+5759, U+575F, U+5761-5762, U+5764-576B, U+576D-5771, U+5773-5775, U+5777, U+5779-577C, U+577E-577F, U+5781-5783, U+5788-5789, U+578B-578C, U+5793-5795, U+5797, U+5799-579A, U+579C-57A4, U+57A7-57AA, U+57AC, U+57AE, U+57B0, U+57B3, U+57B8, U+57BD, U+57C0, U+57C3, U+57C6-57C8, U+57CB-57CC, U+57CE-57CF, U+57D2-57D7, U+57DC-57E1, U+57E3-57E4, U+57E6-57E7, U+57E9, U+57ED, U+57F0, U+57F4-5800, U+5802-5806, U+5808-580D, U+5815, U+5819, U+581B, U+581D-5821, U+5824, U+5826-5827, U+582A, U+582D, U+582F-5832, U+5834-5835, U+5839-583A", + "bytes": 51880 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.011.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90", + "bytes": 53624 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.011.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90", + "bytes": 54972 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.011.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90", + "bytes": 54576 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.011.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90", + "bytes": 54576 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.011.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90", + "bytes": 55752 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.011.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90", + "bytes": 56288 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.011.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90", + "bytes": 56588 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.011.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+583D, U+583F-5841, U+5849-584D, U+584F-5852, U+5854-5855, U+5857-585A, U+585E-585F, U+5861-5862, U+5864, U+5867-5869, U+586B, U+586D, U+5870, U+5872, U+5875, U+5878-5879, U+587C, U+587E-5881, U+5883, U+5885, U+5887-588D, U+588F-5890, U+5893-5894, U+5896-5898, U+589C-58A2, U+58A6, U+58A8-58AB, U+58AE, U+58B1-58B3, U+58B8-58BC, U+58BE, U+58C1-58C5, U+58C7-58C8, U+58CA, U+58CC-58CE, U+58D0-58DA, U+58DC-58E2, U+58E4-58E5, U+58E9, U+58EB-58EC, U+58EE-58F4, U+58F7, U+58F9-58FD, U+5902, U+5905-5906, U+5909-590D, U+590F-5910, U+5912-5916, U+5918-591D, U+591F, U+5921-5925, U+5927-5933, U+5935-5939, U+593D-593F, U+5943-5944, U+5946-5949, U+594E-5955, U+5957-595B, U+595D-5963, U+5965, U+5967-596F, U+5972-5976, U+5978-5979, U+597B-597D, U+5981-5984, U+598A-598E, U+5992-5993, U+5995-5997, U+5999, U+599B, U+599D, U+599F, U+59A3-59A5, U+59A7-59A8, U+59AC-59B0, U+59B2-59B3, U+59B7, U+59B9-59BC, U+59BE, U+59C1, U+59C3-59C4, U+59C6, U+59C8-59CB, U+59CD, U+59D0-59D4, U+59D9-59DA, U+59DC-59DF, U+59E3-59E8, U+59EA-59EC, U+59EE-59EF, U+59F1-59F2, U+59F4, U+59F6-59F8, U+59FB, U+59FF-5A01, U+5A03-5A04, U+5A09, U+5A0C-5A0E, U+5A11-5A13, U+5A17-5A18, U+5A1A-5A1C, U+5A1E-5A20, U+5A23-5A25, U+5A27-5A2A, U+5A2D, U+5A2F-5A30, U+5A35-5A36, U+5A3C, U+5A40-5A41, U+5A44-5A49, U+5A4C, U+5A50, U+5A55, U+5A5A, U+5A5E, U+5A62-5A63, U+5A65-5A67, U+5A6A, U+5A6C-5A6D, U+5A77, U+5A7A-5A7B, U+5A7E-5A7F, U+5A84, U+5A8B, U+5A90", + "bytes": 56256 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.012.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7", + "bytes": 49160 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.012.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7", + "bytes": 50376 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.012.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7", + "bytes": 50376 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.012.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7", + "bytes": 50492 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.012.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7", + "bytes": 51264 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.012.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7", + "bytes": 51532 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.012.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7", + "bytes": 51736 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.012.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+5A92-5A93, U+5A96, U+5A99-5A9C, U+5A9E-5AA0, U+5AA2, U+5AA7, U+5AAC, U+5AB1-5AB3, U+5AB5, U+5AB8, U+5ABA-5ABF, U+5AC1-5AC2, U+5AC4, U+5AC6, U+5AC8-5AC9, U+5ACB-5ACC, U+5ACF-5AD0, U+5AD6-5AD7, U+5ADA, U+5ADC, U+5AE0-5AE1, U+5AE3, U+5AE5-5AE6, U+5AE9-5AEA, U+5AEE, U+5AF0, U+5AF5-5AF6, U+5AFA-5AFB, U+5AFD, U+5B00-5B01, U+5B08-5B09, U+5B0B-5B0C, U+5B16-5B17, U+5B19, U+5B1B, U+5B1D, U+5B21-5B22, U+5B25, U+5B2A, U+5B2C-5B2D, U+5B30, U+5B32, U+5B34, U+5B36, U+5B38, U+5B3E, U+5B40-5B41, U+5B43, U+5B45, U+5B4B-5B4C, U+5B50-5B52, U+5B54-5B58, U+5B5A-5B5F, U+5B63-5B66, U+5B68-5B69, U+5B6B, U+5B6E-5B71, U+5B73, U+5B75-5B76, U+5B78, U+5B7A, U+5B7C-5B91, U+5B93-5B9D, U+5B9F, U+5BA2-5BA6, U+5BA8-5BA9, U+5BAC-5BBA, U+5BBC, U+5BBF-5BC7, U+5BC9, U+5BCC-5BD0, U+5BD2-5BD4, U+5BD6-5BDB, U+5BDD-5BE2, U+5BE4-5BE9, U+5BEB-5BEC, U+5BEE-5BF1, U+5BF3-5BF6, U+5BF8, U+5BFA, U+5BFD-5BFF, U+5C01-5C0F, U+5C11-5C14, U+5C16-5C17, U+5C19-5C1A, U+5C1E-5C20, U+5C22-5C24, U+5C26, U+5C28-5C2E, U+5C30-5C32, U+5C35-5C36, U+5C38-5C41, U+5C45-5C46, U+5C48, U+5C4A-5C4B, U+5C4D-5C51, U+5C53, U+5C55, U+5C59-5C5C, U+5C5E-5C65, U+5C67-5C69, U+5C6C-5C71, U+5C74-5C76, U+5C79-5C7D, U+5C87-5C88, U+5C8A, U+5C8C, U+5C8F-5C92, U+5C94, U+5C9D, U+5C9F-5CA3, U+5CA6-5CAD, U+5CB1-5CB8, U+5CBA-5CBC, U+5CBE, U+5CC5, U+5CC7, U+5CC9, U+5CCB, U+5CD0, U+5CD2, U+5CD7", + "bytes": 51460 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.013.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E", + "bytes": 49304 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.013.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E", + "bytes": 51496 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.013.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E", + "bytes": 50904 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.013.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E", + "bytes": 50916 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.013.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E", + "bytes": 51940 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.013.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E", + "bytes": 52328 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.013.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E", + "bytes": 52568 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.013.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+5CD9, U+5CDD, U+5CE0-5CE1, U+5CE6, U+5CE8-5CEA, U+5CED-5CF2, U+5CF4-5CF6, U+5CFA-5CFB, U+5CFD, U+5D01, U+5D06-5D07, U+5D0B, U+5D0D-5D0E, U+5D10-5D12, U+5D14-5D1B, U+5D1D, U+5D1F-5D20, U+5D22-5D24, U+5D26-5D27, U+5D29, U+5D2B, U+5D31, U+5D34, U+5D39, U+5D3D, U+5D3F, U+5D42-5D43, U+5D46-5D48, U+5D4A-5D4C, U+5D4E, U+5D50-5D53, U+5D55, U+5D59, U+5D5C, U+5D5F-5D62, U+5D64, U+5D69-5D6A, U+5D6C-5D6D, U+5D6F-5D70, U+5D73, U+5D76, U+5D79-5D7A, U+5D7E-5D7F, U+5D81-5D84, U+5D87-5D88, U+5D8A-5D8C, U+5D90, U+5D92-5D95, U+5D97, U+5D99, U+5D9B, U+5D9D, U+5D9F-5DA0, U+5DA2, U+5DA4, U+5DA7, U+5DAB-5DAC, U+5DAE, U+5DB0, U+5DB2, U+5DB4, U+5DB7-5DBA, U+5DBC-5DBD, U+5DC3, U+5DC7, U+5DC9, U+5DCB-5DCE, U+5DD0-5DD3, U+5DD6-5DD9, U+5DDB, U+5DDD-5DDE, U+5DE0-5DE9, U+5DEB, U+5DEE, U+5DF1-5DF5, U+5DF7-5DF9, U+5DFB, U+5DFD-5E00, U+5E02-5E03, U+5E06-5E07, U+5E0B-5E0D, U+5E11-5E12, U+5E14-5E16, U+5E18-5E1B, U+5E1D, U+5E1F-5E20, U+5E25, U+5E28, U+5E2B, U+5E2D-5E30, U+5E32-5E33, U+5E35-5E38, U+5E3D-5E3E, U+5E40, U+5E43-5E45, U+5E47, U+5E49, U+5E4B-5E4C, U+5E4E, U+5E50-5E51, U+5E54-5E58, U+5E5B-5E5C, U+5E5E-5E5F, U+5E61-5E64, U+5E68, U+5E6A-5E6E, U+5E70, U+5E72-5E81, U+5E83-5E84, U+5E87, U+5E8A-5E8B, U+5E8E-5E8F, U+5E95-5E97, U+5E99-5E9A, U+5E9C, U+5EA0, U+5EA2, U+5EA4-5EA8, U+5EAA-5EAD, U+5EB1, U+5EB3, U+5EB5-5EB9, U+5EBD-5EBF, U+5EC1-5EC3, U+5EC6, U+5EC8-5ECC, U+5ECE-5ED6, U+5ED9-5EE3, U+5EE5, U+5EE8-5EE9, U+5EEB-5EEC, U+5EF0-5EF1, U+5EF3-5EF4, U+5EF6-5F04, U+5F06-5F11, U+5F13-5F19, U+5F1B-5F1E", + "bytes": 52200 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.014.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D", + "bytes": 48212 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.014.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D", + "bytes": 49568 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.014.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D", + "bytes": 49464 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.014.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D", + "bytes": 49236 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.014.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D", + "bytes": 50344 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.014.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D", + "bytes": 50424 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.014.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D", + "bytes": 50980 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.014.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+5F1F, U+5F21-5F29, U+5F2B-5F31, U+5F34-5F38, U+5F3A-5F41, U+5F44-5F45, U+5F47-5F48, U+5F4A, U+5F4C-5F4E, U+5F50-5F51, U+5F53-5F54, U+5F56-5F59, U+5F5B-5F5D, U+5F60-5F67, U+5F69-5F6D, U+5F6F-5F75, U+5F77-5F7A, U+5F7C-5F85, U+5F87-5F8D, U+5F8F-5F93, U+5F96-5F99, U+5F9C-5F9E, U+5FA0-5FA2, U+5FA4, U+5FA7-5FB1, U+5FB3-5FB5, U+5FB7-5FB9, U+5FBC-5FBD, U+5FC3-5FC5, U+5FC7-5FC9, U+5FCB-5FCD, U+5FD0-5FD4, U+5FD6-5FD9, U+5FDC-5FDE, U+5FE0-5FE2, U+5FE4, U+5FE8-5FF3, U+5FF5-5FF6, U+5FF8, U+5FFA-5FFD, U+5FFF, U+6007, U+600A, U+600D-6010, U+6012-601D, U+601F-6022, U+6024-602B, U+602D, U+602F, U+6031, U+6033, U+6035, U+603A, U+6040-6043, U+6046-604D, U+6050-6052, U+6054-6057, U+6059-605A, U+605D, U+605F-6065, U+6067-606D, U+606F-6071, U+6075, U+6077, U+607E-607F, U+6081-6086, U+6088-608E, U+6091-6098, U+609A-609B, U+609D-60A0, U+60A2-60AA, U+60B0-60B8, U+60BB-60BE, U+60C2, U+60C4-60CB, U+60CE-60CF, U+60D1, U+60D3-60D5, U+60D8-60E3, U+60E5, U+60E7-60E8, U+60EE, U+60F0-60FD, U+6100-6103, U+6106-610A, U+610C-610D", + "bytes": 50768 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.015.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318", + "bytes": 54892 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.015.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318", + "bytes": 56888 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.015.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318", + "bytes": 56352 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.015.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318", + "bytes": 56320 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.015.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318", + "bytes": 57540 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.015.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318", + "bytes": 58084 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.015.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318", + "bytes": 58848 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.015.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+610E-6117, U+6119-611C, U+611E-6122, U+6127-6128, U+612A-612C, U+6130-6131, U+6134-6137, U+6139-613A, U+613C-613F, U+6141-6142, U+6144-614E, U+6153, U+6155, U+6158-615A, U+615D-6160, U+6162-6165, U+6167-6168, U+616B-616C, U+616E-6178, U+617B-6184, U+6187, U+618A-618B, U+618D-618E, U+6190-6194, U+6196-619A, U+619C-619D, U+619F-61A0, U+61A4-61A5, U+61A7-61AE, U+61B2, U+61B6, U+61B8-61BA, U+61BC, U+61BE, U+61C0-61C3, U+61C6-61D0, U+61D5, U+61DC-61DF, U+61E1-61E3, U+61E5-61E9, U+61EC-61ED, U+61EF, U+61F2, U+61F4-61F8, U+61FA, U+61FC-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6216, U+621A-6223, U+6226-6227, U+6229-622B, U+622E-6234, U+6236, U+6238-6239, U+623B, U+623D-6244, U+6246-6249, U+624B-624E, U+6250-6256, U+6258, U+625A-625C, U+625E, U+6260-6261, U+6263-6264, U+6268, U+626D-626F, U+6271, U+6273, U+6276, U+6279-6280, U+6282-6285, U+6289-628A, U+628D-6299, U+629B-629C, U+629E, U+62A6, U+62A8, U+62AB-62AC, U+62B1, U+62B3, U+62B5-62B7, U+62B9-62BF, U+62C2, U+62C4-62CA, U+62CC-62DD, U+62E0-62E1, U+62EA, U+62EC-62EF, U+62F1-62F7, U+62FC-62FF, U+6301-6304, U+6307-630D, U+6310-6311, U+6313, U+6316, U+6318", + "bytes": 58320 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.016.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562", + "bytes": 58536 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.016.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562", + "bytes": 60900 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.016.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562", + "bytes": 60272 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.016.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562", + "bytes": 60164 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.016.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562", + "bytes": 61156 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.016.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562", + "bytes": 61376 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.016.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562", + "bytes": 61696 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.016.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6319, U+631B, U+631F, U+6327-632B, U+632D, U+632F, U+6332, U+6335-6336, U+6339-633F, U+6341-6344, U+6346, U+6349-6350, U+6352-6355, U+6357-6359, U+635B-635C, U+6365-6369, U+636B-636E, U+6371-6372, U+6374-6378, U+637A-637D, U+637F-6380, U+6382-6384, U+6387-638A, U+638C, U+638E-6390, U+6392, U+6394-6396, U+6398-639B, U+639E-63AF, U+63B2, U+63B4-63B5, U+63BB, U+63BD-63BE, U+63C0-63C1, U+63C3-63C6, U+63C8-63C9, U+63CE-63D6, U+63DA-63DC, U+63E0-63E1, U+63E3, U+63E5, U+63E9-63EE, U+63F2-63FA, U+6406, U+6409-640A, U+640D, U+640F-6410, U+6412-6414, U+6416-6418, U+641C, U+641E, U+6420, U+6422, U+6424-6426, U+6428-642A, U+642C-642D, U+642F-6430, U+6434-6436, U+643A, U+643D-643F, U+6442, U+644B, U+644E-644F, U+6451-6454, U+6458, U+645A-645D, U+645F-6461, U+6463, U+6467, U+6469, U+646D, U+646F, U+6473-6474, U+6476, U+6478-647B, U+647D, U+6483, U+6485, U+6487-6488, U+648F-6493, U+6495, U+6498-649B, U+649D-649F, U+64A1, U+64A3-64A6, U+64A8-64A9, U+64AB-64AE, U+64B0, U+64B2-64B3, U+64B9, U+64BB-64BF, U+64C1-64C2, U+64C4-64C5, U+64C7, U+64C9-64CE, U+64D0-64D2, U+64D4-64D5, U+64D7-64D8, U+64DA, U+64E0-64E7, U+64E9-64EA, U+64EC-64ED, U+64EF-64F2, U+64F4-64F7, U+64FA-64FB, U+64FD-6501, U+6504-6505, U+6508-650A, U+650F, U+6513-6514, U+6516, U+6518-6519, U+651B-651F, U+6522-6524, U+6526, U+6529-652C, U+652E-652F, U+6531-6532, U+6534-653F, U+6543-6545, U+6547-6549, U+654D-6552, U+6554-6559, U+655D-6560, U+6562", + "bytes": 60856 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.017.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D", + "bytes": 47800 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.017.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D", + "bytes": 48828 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.017.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D", + "bytes": 48492 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.017.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D", + "bytes": 48468 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.017.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D", + "bytes": 49276 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.017.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D", + "bytes": 49468 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.017.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D", + "bytes": 49892 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.017.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6563, U+6566-6567, U+656B-656C, U+6570, U+6572, U+6574-6575, U+6577-6578, U+657A, U+657D, U+6581-6585, U+6587-658A, U+658C, U+658E, U+6590-6592, U+6595, U+6597-6599, U+659B-659D, U+659F-65A1, U+65A3-65A7, U+65AB-65B0, U+65B2-65B5, U+65B7-65B9, U+65BC-65BF, U+65C1-65C6, U+65C8-65C9, U+65CB-65CC, U+65CE-65D0, U+65D2, U+65D4, U+65D6-65D9, U+65DB, U+65DF-65E3, U+65E5-65E9, U+65EC-65ED, U+65F0-65F2, U+65F4-65F5, U+65F9-65FC, U+65FE-6600, U+6602-6604, U+6606-660A, U+660C-660F, U+6611-6616, U+661C-6631, U+6633-6637, U+6639-663C, U+663F-6646, U+6648-664C, U+664E-664F, U+6651-6652, U+6657-6670, U+6673-667C, U+667E-6681, U+6683-6684, U+6687-6689, U+668B-668E, U+6690-6692, U+6696-669D, U+669F-66A0, U+66A2, U+66A4, U+66A6, U+66AB, U+66AD-66AE, U+66B1-66B5, U+66B8-66B9, U+66BB-66BC, U+66BE-66C4, U+66C6-66C9, U+66CC, U+66CE-66CF, U+66D4, U+66D6, U+66D9-66DD, U+66DF-66E0, U+66E6, U+66E8-66E9, U+66EB-66EC, U+66EE, U+66F0, U+66F2-66F5, U+66F7-6701, U+6703, U+6705, U+6707-6709, U+670B, U+670D-670F, U+6712-6717, U+6719, U+671B-6720, U+6722, U+6725-6728, U+672A-672E, U+6731, U+6733-6738, U+673A, U+673D-673F, U+6741, U+6743, U+6745-6749, U+674C-6751, U+6753-6756, U+6759, U+675C-675D", + "bytes": 49724 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.018.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E", + "bytes": 45700 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.018.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E", + "bytes": 47704 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.018.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E", + "bytes": 47208 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.018.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E", + "bytes": 46860 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.018.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E", + "bytes": 48376 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.018.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E", + "bytes": 48268 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.018.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E", + "bytes": 48736 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.018.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+675E-6766, U+676A, U+676C-6777, U+677B-677C, U+677E-6781, U+6784-6785, U+6787, U+6789, U+678B-678C, U+678E-6793, U+6795-679D, U+67A0-67A2, U+67A4, U+67A6, U+67A9, U+67AF-67B9, U+67BB-67BE, U+67C0-67C6, U+67C8-67CA, U+67CE-67D4, U+67D7-67DE, U+67E1-67E2, U+67E4, U+67E6-67E7, U+67E9, U+67EC, U+67EE-67F7, U+67F9-67FC, U+67FE-67FF, U+6801-6805, U+6810, U+6813-6814, U+6816-6819, U+681D-681F, U+6821-6822, U+6827-682D, U+682F-6834, U+6838-6839, U+683B-6846, U+6848-684A, U+684C-684E, U+6850-6855, U+6857-6859, U+685B-685D, U+685F, U+6863, U+6867, U+686B, U+686E-6872, U+6874-6877, U+6879-687C, U+687E-687F, U+6881-6886, U+6888, U+688D-6890, U+6893-6894, U+6896-689D, U+689F-68A3, U+68A5-68AB, U+68AD-68B6, U+68B9-68BC, U+68C3-68C6, U+68C8-68CD, U+68CF-68DA, U+68DC-68DD, U+68DF-68E1, U+68E3-68E5, U+68E7-68E8, U+68EA-68F2, U+68F5-68F7, U+68F9-68FD, U+6900-6901, U+6903-6913, U+6916-6917, U+6919-691C, U+6921-6923, U+6925-6926, U+6928, U+692A, U+6930-6931, U+6933-6936, U+6938-6939, U+693B, U+693D, U+693F, U+6942, U+6945-6946, U+6949-694A, U+694E, U+6953-6955, U+6957, U+6959-695E", + "bytes": 47792 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.019.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D", + "bytes": 59996 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.019.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D", + "bytes": 61924 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.019.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D", + "bytes": 61692 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.019.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D", + "bytes": 61616 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.019.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D", + "bytes": 63328 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.019.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D", + "bytes": 63416 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.019.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D", + "bytes": 64248 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.019.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6960-6966, U+6968-6975, U+6977-6982, U+6986, U+698A, U+698D-698E, U+6991-6992, U+6994-6996, U+6998, U+699B-699C, U+69A0-69A1, U+69A5-69A8, U+69AB, U+69AD-69B2, U+69B4, U+69B7-69B8, U+69BA-69BC, U+69BE-69C1, U+69C3, U+69C5, U+69C7-69C8, U+69CA-69D1, U+69D3, U+69D6-69D9, U+69DD-69DE, U+69E2-69E3, U+69E5, U+69E7-69EB, U+69ED-69EF, U+69F1-69F6, U+69F9, U+69FB, U+69FD-6A03, U+6A05, U+6A0A-6A0C, U+6A0F, U+6A11-6A15, U+6A17, U+6A19-6A1B, U+6A1D-6A24, U+6A28-6A2B, U+6A2E, U+6A30, U+6A32-6A3B, U+6A3D-6A3F, U+6A44-6A4B, U+6A4E, U+6A50-6A52, U+6A54-6A56, U+6A58-6A59, U+6A5B, U+6A5F, U+6A61-6A62, U+6A64, U+6A66-6A67, U+6A6A-6A6B, U+6A71-6A73, U+6A78, U+6A7A, U+6A7E-6A81, U+6A83-6A84, U+6A86-6A87, U+6A89, U+6A8B, U+6A8D-6A8E, U+6A90-6A91, U+6A94, U+6A97, U+6A9B-6AA3, U+6AA5, U+6AAA-6AAC, U+6AAE-6AB1, U+6AB3-6AB4, U+6AB8, U+6ABB, U+6ABD-6ABF, U+6AC1-6AC3, U+6AC6, U+6AC8-6AC9, U+6ACC, U+6AD0-6AD1, U+6AD3-6AD6, U+6ADA-6ADF, U+6AE2, U+6AE4, U+6AE7-6AE8, U+6AEA, U+6AEC, U+6AF0-6AF3, U+6AF8, U+6AFA-6AFD, U+6B02-6B07, U+6B09-6B0B, U+6B0F-6B12, U+6B16-6B17, U+6B1B, U+6B1D-6B21, U+6B23-6B24, U+6B27-6B28, U+6B2B-6B2C, U+6B2F, U+6B32, U+6B35-6B3B, U+6B3D-6B3F, U+6B43, U+6B46-6B47, U+6B49-6B4A, U+6B4C-6B4E, U+6B50, U+6B52-6B54, U+6B56, U+6B58-6B59, U+6B5B, U+6B5D, U+6B5F-6B67, U+6B69-6B6C, U+6B6E-6B70, U+6B72-6B75, U+6B77-6B7B, U+6B7D-6B86, U+6B89-6B8B, U+6B8D", + "bytes": 63476 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.020.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8", + "bytes": 48928 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.020.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8", + "bytes": 50848 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.020.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8", + "bytes": 50760 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.020.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8", + "bytes": 50580 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.020.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8", + "bytes": 51892 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.020.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8", + "bytes": 52304 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.020.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8", + "bytes": 53064 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.020.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6B95-6B98, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA4, U+6BA8-6BB5, U+6BB7-6BC0, U+6BC3-6BC9, U+6BCB-6BCF, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDB, U+6BDF, U+6BE1, U+6BE3, U+6BE6-6BE7, U+6BEB-6BEC, U+6BEE-6BEF, U+6BF1, U+6BF3, U+6BF7, U+6BF9, U+6BFF, U+6C02, U+6C04-6C05, U+6C08-6C0A, U+6C0D-6C14, U+6C17, U+6C19, U+6C1B, U+6C1F, U+6C23-6C24, U+6C26-6C28, U+6C2C, U+6C2E, U+6C33-6C38, U+6C3A-6C3B, U+6C3E-6C42, U+6C4A-6C4B, U+6C4D-6C50, U+6C52, U+6C54-6C55, U+6C57, U+6C59-6C60, U+6C62, U+6C67-6C68, U+6C6A-6C6B, U+6C6D, U+6C6F-6C70, U+6C72-6C74, U+6C76, U+6C78-6C7B, U+6C7D-6C7E, U+6C81-6C89, U+6C8C-6C8D, U+6C90, U+6C92-6C9C, U+6C9F, U+6CA1-6CA2, U+6CAA-6CAE, U+6CB0-6CB4, U+6CB8-6CBF, U+6CC1-6CC2, U+6CC4-6CC6, U+6CC9-6CCA, U+6CCC-6CCD, U+6CCF-6CD7, U+6CD9-6CDD, U+6CE0-6CE3, U+6CE5, U+6CE7-6CF4, U+6CFB, U+6D00-6D01, U+6D04, U+6D07, U+6D0A-6D0C, U+6D0E-6D0F, U+6D11-6D13, U+6D17, U+6D19-6D1B, U+6D1E-6D1F, U+6D24-6D2B, U+6D2E-6D2F, U+6D31-6D36, U+6D38-6D39, U+6D3B-6D3F, U+6D41, U+6D44-6D45, U+6D57-6D5C, U+6D5E-6D61, U+6D63-6D67, U+6D69-6D6A, U+6D6C, U+6D6E-6D70, U+6D74, U+6D77-6D79, U+6D7C, U+6D80-6D82, U+6D85, U+6D87-6D8A, U+6D8C-6D8E, U+6D91-6D99, U+6D9B-6D9C, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB2, U+6DB4-6DB5, U+6DB7-6DB9, U+6DBC-6DBD, U+6DBF-6DC0, U+6DC2, U+6DC4-6DC8, U+6DCA-6DCC, U+6DCE-6DD2, U+6DD5-6DD6, U+6DD8", + "bytes": 52316 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.021.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E", + "bytes": 62260 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.021.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E", + "bytes": 64200 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.021.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E", + "bytes": 64128 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.021.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E", + "bytes": 64368 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.021.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E", + "bytes": 65428 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.021.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E", + "bytes": 65844 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.021.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E", + "bytes": 66848 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.021.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6DD9-6DDB, U+6DDD-6DE2, U+6DE4-6DE6, U+6DE8-6DEC, U+6DEE-6DFC, U+6E00, U+6E04-6E05, U+6E07-6E0B, U+6E13, U+6E15, U+6E17, U+6E19-6E1B, U+6E1D-6E27, U+6E29, U+6E2B-6E2F, U+6E32, U+6E34, U+6E36, U+6E38-6E3C, U+6E3E, U+6E42-6E45, U+6E48-6E4F, U+6E51-6E54, U+6E56-6E58, U+6E5B-6E5F, U+6E62-6E63, U+6E67-6E68, U+6E6B, U+6E6E-6E6F, U+6E72-6E73, U+6E76, U+6E7B, U+6E7D-6E80, U+6E82, U+6E89, U+6E8C-6E8D, U+6E8F-6E90, U+6E93, U+6E96, U+6E98-6E99, U+6E9C-6E9D, U+6E9F-6EA0, U+6EA2, U+6EA5, U+6EA7, U+6EAA-6EAB, U+6EAD-6EAF, U+6EB1-6EB4, U+6EB6-6EB7, U+6EBA-6EBD, U+6EBF-6EC5, U+6EC7-6ECF, U+6ED1, U+6ED3-6ED5, U+6ED9-6EDB, U+6EDD-6EDE, U+6EE6, U+6EEB-6EEF, U+6EF2, U+6EF4, U+6EF7-6EF9, U+6EFB, U+6EFD-6EFF, U+6F01-6F02, U+6F04, U+6F06, U+6F08-6F0A, U+6F0C-6F0D, U+6F0F-6F11, U+6F13-6F16, U+6F18, U+6F1A-6F1B, U+6F20, U+6F22-6F23, U+6F25-6F26, U+6F29-6F2D, U+6F2F-6F33, U+6F35-6F36, U+6F38, U+6F3B-6F3C, U+6F3E-6F3F, U+6F41, U+6F45, U+6F4F, U+6F51-6F54, U+6F57-6F62, U+6F64, U+6F66, U+6F68, U+6F6C-6F70, U+6F74, U+6F78, U+6F7A, U+6F7C-6F7E, U+6F80-6F84, U+6F86-6F88, U+6F8B-6F8E, U+6F90-6F94, U+6F96-6F98, U+6F9A, U+6F9D, U+6F9F-6FA1, U+6FA3-6FA8, U+6FAA, U+6FAE-6FB1, U+6FB3, U+6FB5-6FB7, U+6FB9, U+6FBC, U+6FBE, U+6FC0-6FC3, U+6FC5-6FCA, U+6FD4-6FD5, U+6FD8, U+6FDA-6FDB, U+6FDE-6FE1, U+6FE4, U+6FE8-6FE9, U+6FEB-6FEC, U+6FEE-6FF1, U+6FF3, U+6FF5-6FF6, U+6FF9-6FFA, U+6FFC-6FFE, U+7000-7001, U+7005-7007, U+7009-700B, U+700D, U+700F, U+7011, U+7015, U+7017-7018, U+701A-701B, U+701D-701E", + "bytes": 66416 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.022.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED", + "bytes": 60924 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.022.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED", + "bytes": 62800 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.022.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED", + "bytes": 62800 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.022.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED", + "bytes": 62688 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.022.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED", + "bytes": 64156 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.022.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED", + "bytes": 64524 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.022.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED", + "bytes": 65436 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.022.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+701F-7020, U+7023, U+7026-7028, U+702C, U+702F-7030, U+7032, U+7034, U+7037, U+7039-703A, U+703C, U+703E, U+7043-7044, U+7047-704C, U+704E, U+7051, U+7054-7055, U+7058, U+705D-705E, U+7063-7065, U+7069, U+706B-706C, U+706E-7070, U+7075-7076, U+7078, U+707C-707E, U+7081, U+7085-7086, U+7089-708A, U+708E, U+7092, U+7094-7099, U+709B, U+709F, U+70A4, U+70AB-70B1, U+70B3-70B4, U+70B7-70BB, U+70C8, U+70CA-70CB, U+70CF, U+70D1, U+70D3-70D6, U+70D8-70D9, U+70DC-70DD, U+70DF, U+70E4, U+70EC, U+70F1, U+70F9-70FA, U+70FD, U+7103-7109, U+710B-710C, U+710F, U+7114, U+7119-711A, U+711C, U+711E, U+7120-7121, U+7126, U+712B, U+712D-7131, U+7136, U+7138, U+713C, U+7141, U+7145-7147, U+7149-714C, U+714E, U+7150-7153, U+7155-7157, U+7159-715A, U+715C, U+715E, U+7160, U+7162, U+7164-7169, U+716C, U+716E, U+7179, U+717D, U+7180, U+7184-7185, U+7187-7188, U+718A, U+718C, U+718F, U+7192, U+7194-7196, U+7199-719B, U+719F-71A0, U+71A2, U+71A8, U+71AC, U+71AE-71B3, U+71B9-71BA, U+71BE-71C1, U+71C3-71C4, U+71C8-71C9, U+71CB-71CC, U+71CE, U+71D0, U+71D2-71D7, U+71D9-71DA, U+71DC, U+71DF-71E0, U+71E5-71E7, U+71EC-71EE, U+71F4-71F5, U+71F8-71F9, U+71FB-71FC, U+71FE-7200, U+7206-7209, U+720D, U+7210, U+7213, U+7215, U+7217, U+721A-721B, U+721D, U+721F, U+7224, U+7228, U+722A-722D, U+722F-7230, U+7232, U+7234-7236, U+7238-7243, U+7245-7248, U+724B-724C, U+724E-7250, U+7252-7253, U+7255-7263, U+7267-7269, U+726B, U+726E-726F, U+7271-7272, U+7274, U+7277-7279, U+727B-7282, U+7284, U+7287, U+7289, U+728D-728E, U+7292-7293, U+7296, U+729B, U+72A0, U+72A2, U+72A7-72A8, U+72AC-72B2, U+72B4, U+72B6, U+72B9, U+72BE, U+72C0-72C4, U+72C6-72C7, U+72C9, U+72CC, U+72CE, U+72D0, U+72D2, U+72D5-72D9, U+72DB, U+72DF-72E2, U+72E5, U+72E9, U+72EC-72ED", + "bytes": 64372 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.023.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C", + "bytes": 56352 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.023.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C", + "bytes": 58004 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.023.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C", + "bytes": 57348 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.023.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C", + "bytes": 57272 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.023.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C", + "bytes": 58316 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.023.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C", + "bytes": 58620 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.023.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C", + "bytes": 59088 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.023.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+72F3-72F4, U+72F7-72FE, U+7302, U+7304-7305, U+7307, U+730A-730B, U+730D, U+7312-7313, U+7316-7319, U+731B-731F, U+7322, U+7324-7325, U+7327-732C, U+732E-732F, U+7331-7337, U+7339-733B, U+733D-733F, U+7343-7345, U+734D-7350, U+7352, U+7356-7358, U+735D-7360, U+7363, U+7366-736C, U+736E-7372, U+7375, U+7377-737C, U+7380-7381, U+7383-7387, U+7389-738B, U+738E, U+7390, U+7393-7398, U+739C, U+739E-73A0, U+73A2, U+73A5-73A6, U+73A8-73AB, U+73AD, U+73B2-73B3, U+73B5, U+73B7, U+73B9-73BD, U+73BF-73C0, U+73C2, U+73C5-73C6, U+73C8-73CF, U+73D2-73D3, U+73D6, U+73D9, U+73DD-73DE, U+73E0-73E1, U+73E3-73E7, U+73E9-73EA, U+73ED-73EE, U+73F1, U+73F4-73F5, U+73F7-73FB, U+73FD-7401, U+7403-7407, U+7409-740A, U+7411, U+7413, U+741A-741B, U+7421-7422, U+7424-7426, U+7428-7436, U+7439-743A, U+743F-7441, U+7443-7444, U+7446-7447, U+744B, U+744D, U+7451-7453, U+7455, U+7457, U+7459-7460, U+7462-7464, U+7466-746B, U+746D-7473, U+7476, U+747E, U+7480-7481, U+7483, U+7485-7489, U+748B, U+748F-7492, U+7497-749A, U+749C, U+749E-74A3, U+74A5-74AB, U+74AE-74B2, U+74B5, U+74B9-74BB, U+74BD, U+74BF, U+74C8-74CA, U+74CC, U+74CF-74D0, U+74D3-74D4, U+74D6, U+74D8, U+74DA-74DC, U+74DE-74E0, U+74E2-74E4, U+74E6-74EB, U+74EE-74F2, U+74F4, U+74F6-74F8, U+74FA-74FC, U+74FF, U+7501, U+7503-7506, U+750C-750E, U+7511-7513, U+7515-7518, U+751A, U+751C, U+751E-752C", + "bytes": 58892 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.024.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720", + "bytes": 49164 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.024.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720", + "bytes": 51456 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.024.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720", + "bytes": 51812 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.024.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720", + "bytes": 51832 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.024.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720", + "bytes": 52648 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.024.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720", + "bytes": 52948 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.024.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720", + "bytes": 53328 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.024.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+752F-7533, U+7536-7540, U+7543-7544, U+7546-7552, U+7554, U+7557, U+7559-7562, U+7564-7567, U+7569-756D, U+756F-757F, U+7581-7582, U+7585-7587, U+7589-758C, U+758E-7595, U+7599-759A, U+759C-759D, U+75A2-75A5, U+75AB, U+75B0-75B5, U+75B7-75BA, U+75BC-75C7, U+75CA, U+75CC-75CF, U+75D2-75D5, U+75D7-75D9, U+75DB-75E4, U+75E7, U+75E9, U+75EC, U+75EE-75F4, U+75F9-75FA, U+75FC, U+75FE-7604, U+7607-760D, U+760F, U+7612-7613, U+7615-7616, U+7618-7619, U+761B-7629, U+762D, U+7630, U+7632-7635, U+7638-763C, U+7640-764C, U+764E, U+7652, U+7655-7656, U+7658-7659, U+765C, U+765F, U+7661-7662, U+7664-7665, U+7667-766A, U+766C-7672, U+7674, U+7676, U+7678, U+767A-767E, U+7680-7688, U+768B-768E, U+7690, U+7693, U+7695-7696, U+7699-76A8, U+76AA, U+76AD-76B0, U+76B4, U+76B6-76BA, U+76BD, U+76BF, U+76C1-76C3, U+76C5-76C6, U+76C8-76CE, U+76D2, U+76D4, U+76D6-76D7, U+76D9, U+76DB-76DC, U+76DE-76E1, U+76E3-76E8, U+76EA-76EC, U+76EE, U+76F0-76F2, U+76F4, U+76F6, U+76F8-76F9, U+76FB-76FC, U+76FE, U+7700-7701, U+7704, U+7706-770C, U+770E, U+7712, U+7714-7715, U+7717, U+7719-771C, U+771E-7720", + "bytes": 52344 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.025.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F", + "bytes": 53344 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.025.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F", + "bytes": 54744 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.025.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F", + "bytes": 54472 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.025.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F", + "bytes": 54252 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.025.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F", + "bytes": 55320 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.025.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F", + "bytes": 55456 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.025.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F", + "bytes": 55828 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.025.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7722, U+7724-7726, U+7728-7729, U+772D-772F, U+7734-773A, U+773C-773E, U+7740, U+7742, U+7745-7747, U+774A, U+774D-774F, U+7752, U+7756-7758, U+775A-775C, U+775E-7768, U+776A-776C, U+7770, U+7772-7774, U+7779-777A, U+777C-7780, U+7784, U+778B-778E, U+7791, U+7794-7796, U+779A, U+779E-77A0, U+77A2, U+77A4-77A5, U+77A7, U+77A9-77AA, U+77AC-77B1, U+77B3, U+77B5-77B7, U+77B9, U+77BB-77BF, U+77C3, U+77C7, U+77C9, U+77CD, U+77D1-77D2, U+77D5, U+77D7, U+77D9-77DC, U+77DE-77E0, U+77E2-77E7, U+77E9-77EA, U+77EC-77F1, U+77F3-77F4, U+77F8, U+77FB-77FC, U+7802, U+7805-7806, U+7809, U+780C-780E, U+7811-7812, U+7814-7815, U+7819, U+781D, U+7820-7823, U+7825-7827, U+782C-782E, U+7830, U+7832, U+7834-7835, U+7837, U+783A, U+783F, U+7843-7845, U+7847-7848, U+784C, U+784E-784F, U+7851-7852, U+785C-785E, U+7860-7861, U+7863-7864, U+7868, U+786A-786C, U+786E-786F, U+7872, U+7874, U+787A, U+787C, U+787E, U+7881, U+7886-7887, U+788A, U+788C-788F, U+7891, U+7893-7895, U+7897-7898, U+789A, U+789D-789F, U+78A1, U+78A3-78A4, U+78A7-78AA, U+78AC-78AD, U+78AF-78B3, U+78B5, U+78BA-78BF, U+78C1, U+78C5-78CC, U+78CE, U+78D0-78D6, U+78DA-78DB, U+78DF-78E1, U+78E4, U+78E6-78E8, U+78EA, U+78EC, U+78EF, U+78F2-78F4, U+78F6-78F7, U+78F9-78FB, U+78FD-7901, U+7906-7907, U+790C, U+790E, U+7910-7912, U+7919-791C, U+791E-7920, U+7925-792E, U+7930-7931, U+7934-7935, U+793A-7942, U+7944-794B, U+794F-7951, U+7953-7958, U+795A-7960, U+7962, U+7965, U+7967-7969, U+796B, U+796D, U+7972, U+7977, U+7979-797C, U+797E-7981, U+7984-7985, U+798A-798F", + "bytes": 55308 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.026.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2", + "bytes": 54232 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.026.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2", + "bytes": 56776 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.026.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2", + "bytes": 55892 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.026.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2", + "bytes": 55980 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.026.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2", + "bytes": 57848 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.026.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2", + "bytes": 58572 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.026.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2", + "bytes": 59640 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.026.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7991, U+7993-7996, U+7998, U+799B-799D, U+79A1, U+79A6-79AB, U+79AE-79B1, U+79B3-79B4, U+79B8-79BB, U+79BD-79C2, U+79C4, U+79C7-79CD, U+79CF, U+79D1-79D2, U+79D4-79D6, U+79D8, U+79DA, U+79DD-79E7, U+79E9-79ED, U+79F0-79F1, U+79F8, U+79FB-79FC, U+7A00, U+7A02-7A03, U+7A05, U+7A07-7A0E, U+7A11, U+7A14-7A15, U+7A17-7A1C, U+7A1E-7A21, U+7A27, U+7A2B, U+7A2D-7A32, U+7A34-7A35, U+7A37-7A40, U+7A42-7A49, U+7A4C-7A50, U+7A55-7A57, U+7A59, U+7A5C-7A5D, U+7A5F-7A63, U+7A65, U+7A67, U+7A69-7A6B, U+7A6D, U+7A70, U+7A74-7A76, U+7A78-7A7A, U+7A7D-7A86, U+7A88, U+7A8A-7A8B, U+7A90-7A98, U+7A9E-7AA0, U+7AA3, U+7AA9-7AAA, U+7AAC, U+7AAE-7AB0, U+7AB3, U+7AB5-7AB6, U+7AB9-7ABF, U+7AC3-7ACF, U+7AD1-7AD3, U+7AD5, U+7AD9-7ADD, U+7ADF-7AE3, U+7AE5-7AED, U+7AEF-7AF1, U+7AF4, U+7AF6, U+7AF8-7AFB, U+7AFD-7AFF, U+7B02, U+7B04, U+7B06-7B08, U+7B0A-7B0B, U+7B0F, U+7B11-7B12, U+7B14, U+7B18-7B19, U+7B1B, U+7B1E-7B20, U+7B23, U+7B25-7B31, U+7B33-7B36, U+7B39, U+7B3B, U+7B3D, U+7B3F-7B41, U+7B45-7B49, U+7B4B-7B56, U+7B5D, U+7B60, U+7B64-7B67, U+7B69-7B6A, U+7B6C-7B75, U+7B77, U+7B79-7B7A, U+7B7F, U+7B84, U+7B86-7B87, U+7B89, U+7B8B, U+7B8D-7B92, U+7B94-7BA1, U+7BA5, U+7BAA, U+7BAC-7BAD, U+7BAF-7BB2", + "bytes": 58584 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.027.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5", + "bytes": 64112 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.027.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5", + "bytes": 66768 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.027.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5", + "bytes": 65524 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.027.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5", + "bytes": 64952 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.027.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5", + "bytes": 67476 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.027.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5", + "bytes": 68100 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.027.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5", + "bytes": 69420 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.027.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7BB4-7BB6, U+7BB8, U+7BBA-7BBD, U+7BC0-7BC2, U+7BC4-7BCC, U+7BCF, U+7BD4, U+7BD6-7BD7, U+7BD9-7BDB, U+7BDD, U+7BE0, U+7BE4-7BE6, U+7BE8-7BEA, U+7BED, U+7BF0, U+7BF2-7BFA, U+7BFC, U+7BFE, U+7C00-7C04, U+7C06-7C07, U+7C09, U+7C0B-7C0F, U+7C11-7C14, U+7C17, U+7C19, U+7C1B, U+7C1E-7C21, U+7C23, U+7C25-7C28, U+7C2A-7C2C, U+7C2F, U+7C31, U+7C33-7C34, U+7C36-7C3A, U+7C3D-7C40, U+7C42-7C43, U+7C45-7C46, U+7C4A, U+7C4C-7C4D, U+7C4F-7C61, U+7C63-7C65, U+7C67, U+7C69, U+7C6C-7C70, U+7C72-7C73, U+7C75, U+7C79, U+7C7B-7C7E, U+7C81-7C83, U+7C86-7C87, U+7C89, U+7C8B, U+7C8D, U+7C8F-7C90, U+7C92, U+7C94-7C95, U+7C97-7C98, U+7C9B, U+7C9E-7CA2, U+7CA4-7CA8, U+7CAB, U+7CAD-7CAE, U+7CB0-7CB3, U+7CB6-7CB7, U+7CB9-7CC0, U+7CC2, U+7CC4-7CC5, U+7CC7-7CCA, U+7CCD-7CCF, U+7CD2-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE7, U+7CE9, U+7CEB, U+7CEF, U+7CF2, U+7CF4-7CF6, U+7CF8, U+7CFA-7CFB, U+7CFE, U+7D00, U+7D02-7D0B, U+7D0D, U+7D0F-7D1E, U+7D20-7D23, U+7D26, U+7D2A-7D33, U+7D35, U+7D39-7D3A, U+7D3C-7D48, U+7D4B-7D51, U+7D53, U+7D55-7D57, U+7D59-7D5E, U+7D61-7D63, U+7D65-7D68, U+7D6A, U+7D6E, U+7D70-7D73, U+7D75-7D76, U+7D78-7D7B, U+7D7D, U+7D7F, U+7D81-7D83, U+7D85-7D86, U+7D88-7D89, U+7D8B-7D8D, U+7D8F, U+7D91, U+7D93, U+7D96-7D97, U+7D99-7DA0, U+7DA2-7DA3, U+7DA6-7DA7, U+7DAA-7DB5", + "bytes": 68460 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.028.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060", + "bytes": 65344 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.028.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060", + "bytes": 68352 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.028.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060", + "bytes": 66856 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.028.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060", + "bytes": 66144 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.028.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060", + "bytes": 68228 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.028.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060", + "bytes": 68504 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.028.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060", + "bytes": 69556 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.028.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7DB6-7DBB, U+7DBD-7DC0, U+7DC2-7DC7, U+7DCA-7DD2, U+7DD5-7DDA, U+7DDC-7DDE, U+7DE0-7DE6, U+7DE8-7DED, U+7DEF, U+7DF1-7DF2, U+7DF4-7DF6, U+7DF9-7DFB, U+7E00-7E01, U+7E04-7E05, U+7E08-7E0B, U+7E10-7E12, U+7E15, U+7E17, U+7E1B-7E23, U+7E26-7E28, U+7E2B-7E2F, U+7E31-7E33, U+7E35-7E37, U+7E39-7E3B, U+7E3D-7E3F, U+7E41, U+7E43-7E48, U+7E4A-7E4B, U+7E4D-7E4E, U+7E50, U+7E52, U+7E54-7E56, U+7E58-7E5A, U+7E5D-7E5F, U+7E61-7E62, U+7E65-7E67, U+7E69-7E6B, U+7E6D-7E70, U+7E73, U+7E75, U+7E78-7E79, U+7E7B-7E7F, U+7E81-7E83, U+7E86-7E8A, U+7E8C-7E96, U+7E98, U+7E9A-7E9E, U+7F36, U+7F38, U+7F3A-7F3F, U+7F43-7F45, U+7F47, U+7F4C-7F55, U+7F58, U+7F5B-7F5D, U+7F5F-7F61, U+7F63-7F6B, U+7F6D-7F6E, U+7F70-7F72, U+7F75, U+7F77-7F79, U+7F7D-7F80, U+7F82-7F83, U+7F85-7F88, U+7F8A-7F91, U+7F94, U+7F96-7F97, U+7F9A, U+7F9C-7F9E, U+7FA1-7FA4, U+7FA6, U+7FA8-7FAA, U+7FAD-7FAF, U+7FB2, U+7FB4, U+7FB6, U+7FB8-7FB9, U+7FBC-7FBD, U+7FBF-7FC1, U+7FC3, U+7FC5-7FC6, U+7FC8, U+7FCA, U+7FCC, U+7FCE-7FCF, U+7FD2, U+7FD4-7FD5, U+7FDB, U+7FDF-7FE1, U+7FE3, U+7FE5-7FE6, U+7FE8-7FE9, U+7FEB-7FEC, U+7FEE-7FF0, U+7FF2-7FF3, U+7FF9-8008, U+800A-8019, U+801C-8021, U+8024, U+8026, U+8028, U+802C, U+802E, U+8030, U+8033-8037, U+8039-8040, U+8043-8044, U+8046, U+804A, U+8052, U+8056, U+8058, U+805A, U+805E-8060", + "bytes": 68792 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.029.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281", + "bytes": 53272 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.029.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281", + "bytes": 55844 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.029.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281", + "bytes": 55384 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.029.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281", + "bytes": 54480 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.029.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281", + "bytes": 56500 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.029.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281", + "bytes": 56988 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.029.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281", + "bytes": 57316 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.029.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8061-8062, U+8064, U+8066, U+8068, U+806D, U+806F-8077, U+8079, U+807B, U+807D-807F, U+8081, U+8084-8089, U+808B-808C, U+808E, U+8093, U+8096, U+8098-809E, U+80A1-80A2, U+80A4-80A7, U+80A9-80AD, U+80AF, U+80B1-80B2, U+80B4, U+80B8-80BA, U+80C3-80C6, U+80C8, U+80CA, U+80CC-80CF, U+80D2, U+80D4-80DB, U+80DD-80DE, U+80E0-80E1, U+80E4-80E6, U+80ED-80FE, U+8102-8103, U+8105-810B, U+810D, U+8116-8118, U+811A-811C, U+811E, U+8120, U+8123-8124, U+8127, U+8129, U+812B-812C, U+812F-8131, U+8133, U+8135, U+8139-813A, U+813C-813E, U+8141, U+8145-8147, U+814A-814C, U+814E, U+8150-8155, U+8157, U+815F-8161, U+8165-8169, U+816B, U+816D-8171, U+8173-8174, U+8177-817A, U+817F-8186, U+8188, U+818A-818B, U+818E-8190, U+8193, U+8195-8196, U+8198, U+819A-819E, U+81A0, U+81A2-81A4, U+81A8-81A9, U+81AE, U+81B0, U+81B2-81B5, U+81B8, U+81BA-81BB, U+81BD-81C3, U+81C5-81C6, U+81C8-81CB, U+81CD-81CF, U+81D1, U+81D3, U+81D5-81DB, U+81DD-81E1, U+81E3-81E5, U+81E7-81E8, U+81EA-81ED, U+81EF-81F6, U+81F8-8205, U+8207-8210, U+8212-8214, U+8216-821F, U+8221-8222, U+8228-822C, U+822E, U+8232-823A, U+823C, U+8240, U+8243-8247, U+8249, U+824B, U+824E-824F, U+8251, U+8256-825A, U+825C-825D, U+825F-8260, U+8262-8264, U+8266-8268, U+826A-826B, U+826D-826F, U+8271-8272, U+8274, U+8276-8279, U+827B, U+827D-8281", + "bytes": 56332 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.030.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA", + "bytes": 42432 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.030.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA", + "bytes": 43716 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.030.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA", + "bytes": 43640 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.030.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA", + "bytes": 44200 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.030.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA", + "bytes": 45336 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.030.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA", + "bytes": 45668 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.030.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA", + "bytes": 46180 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.030.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8283-8284, U+8287, U+8289-828B, U+828D-828E, U+8291-8294, U+8296, U+8298-829B, U+829D, U+829F-82A1, U+82A3-82B4, U+82B7-82BF, U+82C5-82C6, U+82D0-82D5, U+82D7, U+82D9-82DC, U+82DE-82E8, U+82EA-82EB, U+82ED, U+82EF, U+82F1, U+82F3-82F4, U+82F6-82F7, U+82F9-82FB, U+82FD-82FE, U+8300-830C, U+830E, U+8316-8318, U+831B-831F, U+8321-8323, U+8328, U+832B-833A, U+833C-833D, U+8340, U+8342-8347, U+8349-834A, U+834D-8358, U+835A, U+8362-8363, U+8370, U+8373, U+8375, U+8377-8378, U+837B-837D, U+837F-8380, U+8382, U+8384-8387, U+8389-838A, U+838D-838E, U+8392-8396, U+8398-83A0, U+83A2, U+83A6-83AD, U+83B1, U+83B5, U+83BD-83C1, U+83C5, U+83C7, U+83C9-83CA, U+83CC, U+83CE-83D1, U+83D3-83D4, U+83D6, U+83D8, U+83DC-83DD, U+83DF-83E1, U+83E5, U+83E8-83EB, U+83EF-83F2, U+83F4, U+83F6-83F9, U+83FB-83FD, U+8401, U+8403-8404, U+8406-8407, U+840A-840F, U+8411, U+8413, U+8415, U+8417, U+8419, U+8420, U+8422, U+8429-842A, U+842C, U+842F, U+8431, U+8435, U+8438-8439, U+843C-843D, U+8445-844A, U+844D-844F, U+8451-8452, U+8456-845C, U+845F-8467, U+8469-8471, U+8473-847A, U+847C-847D, U+8481-8482, U+8484-8485, U+848B, U+8490, U+8492-8495, U+8497, U+8499, U+849C, U+849E-849F, U+84A1, U+84A6, U+84A8-84AA, U+84AD, U+84AF, U+84B1-84B2, U+84B4, U+84B8-84C2, U+84C4, U+84C6-84CA", + "bytes": 45692 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.031.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B", + "bytes": 59844 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.031.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B", + "bytes": 62204 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.031.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B", + "bytes": 61764 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.031.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B", + "bytes": 62064 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.031.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B", + "bytes": 63204 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.031.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B", + "bytes": 64216 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.031.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B", + "bytes": 64740 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.031.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+84CB-84D1, U+84D3, U+84D6, U+84D9-84DA, U+84DC, U+84E7, U+84EA, U+84EC, U+84EE-84F2, U+84F4, U+84F7, U+84FA-84FD, U+84FF-8500, U+8502-8503, U+8506-8507, U+850C, U+850E, U+8510-8511, U+8513-8515, U+8517-8518, U+851A-851C, U+851E-851F, U+8521-8527, U+852A-852D, U+852F, U+8532-8536, U+853D-8541, U+8543, U+8546, U+8548-854B, U+854E-8553, U+8555-855A, U+855C-8564, U+8568-856B, U+856D, U+856F, U+8577, U+8579-857B, U+857D-8581, U+8584-858C, U+858F-8591, U+8593-8594, U+8597-8599, U+859B-859D, U+859F-85A0, U+85A2, U+85A4-85B0, U+85B4, U+85B6-85BA, U+85BC-85BF, U+85C1-85C2, U+85C7, U+85C9-85CB, U+85CD-85D0, U+85D5, U+85D8-85DA, U+85DC-85DD, U+85DF-85E1, U+85E4-85E6, U+85E8-85EA, U+85ED, U+85F3-85F4, U+85F6-85F7, U+85F9-85FC, U+85FE-8600, U+8602, U+8604-8607, U+860A-860B, U+860D-860E, U+8610-8613, U+8616-861B, U+861E, U+8621-8622, U+8624, U+8627, U+8629, U+862D, U+862F-8630, U+8636, U+8638-863A, U+863C-863D, U+863F-8642, U+8646, U+864D-864E, U+8650, U+8652-8664, U+8667, U+8669, U+866B-866C, U+866F, U+8671, U+8675-8677, U+8679-867B, U+867D, U+8687-868D, U+8691, U+8693, U+8695-8696, U+8698, U+869A, U+869C-869D, U+86A1, U+86A3-86A4, U+86A6-86AB, U+86AD, U+86AF-86B1, U+86B3-86B9, U+86BF-86C1, U+86C3-86C7, U+86C9, U+86CB, U+86CD-86CE, U+86D1-86D2, U+86D4-86D5, U+86D7, U+86D9-86DC, U+86DE-86E0, U+86E3-86E7, U+86E9, U+86EC-86EF, U+86F8-86FE, U+8700, U+8702-870B", + "bytes": 64108 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.032.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945", + "bytes": 60648 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.032.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945", + "bytes": 62656 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.032.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945", + "bytes": 62320 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.032.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945", + "bytes": 61796 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.032.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945", + "bytes": 63400 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.032.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945", + "bytes": 63644 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.032.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945", + "bytes": 64384 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.032.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+870D-8714, U+8718-871A, U+871C, U+871E-871F, U+8721-8723, U+8725, U+8728-8729, U+872E-872F, U+8731-8732, U+8734, U+8737, U+8739-8740, U+8743, U+8745, U+8749, U+874B-874E, U+8751, U+8753, U+8755, U+8757-8759, U+875D, U+875F-8761, U+8763-8766, U+8768, U+876A, U+876E-876F, U+8771-8772, U+8774, U+8776, U+8778, U+877B-877C, U+877F, U+8782-8789, U+878B-878E, U+8790, U+8793, U+8795, U+8797-8799, U+879E-87A0, U+87A2-87A3, U+87A7, U+87AB-87AF, U+87B1, U+87B3, U+87B5, U+87BA-87BB, U+87BD-87C1, U+87C4, U+87C6-87CB, U+87CE, U+87D0, U+87D2, U+87D5-87D6, U+87D9-87DA, U+87DC, U+87DF-87E0, U+87E2-87E6, U+87EA-87ED, U+87EF, U+87F1-87F3, U+87F5-87FB, U+87FE-87FF, U+8801, U+8803, U+8805-8807, U+8809-880B, U+880D-8816, U+8818-881C, U+881E-881F, U+8821-8823, U+8827-8828, U+882D-882E, U+8830-8832, U+8835-8836, U+8839-883C, U+8840-8846, U+8848-884E, U+8851-8853, U+8855-8864, U+8868-8869, U+886B, U+886E-8872, U+8875, U+8877, U+8879, U+887B, U+887D-8882, U+8888, U+888B, U+888D, U+8892, U+8896-889C, U+889E-88A0, U+88A2, U+88A4, U+88A8, U+88AA-88AB, U+88AE, U+88B0-88B1, U+88B4-88B5, U+88B7, U+88BA, U+88BC-88C6, U+88CA-88CF, U+88D1-88D5, U+88D8-88D9, U+88DB-88E1, U+88E7-88E8, U+88EF-88F5, U+88F7-88F9, U+88FC-88FE, U+8901-8902, U+8904, U+8906-8907, U+890A, U+890C-8910, U+8912-8913, U+8915-8916, U+8918-891A, U+891C-891E, U+8920, U+8925-8928, U+892A-892B, U+8930-8932, U+8935-893B, U+893E, U+8940-8945", + "bytes": 63556 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.033.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B", + "bytes": 54384 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.033.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B", + "bytes": 56300 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.033.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B", + "bytes": 56256 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.033.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B", + "bytes": 55820 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.033.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B", + "bytes": 56868 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.033.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B", + "bytes": 57184 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.033.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B", + "bytes": 57800 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.033.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8946, U+8949, U+894C-894D, U+894F, U+8952, U+8956-8957, U+895A-895C, U+895E-8964, U+8966, U+896A-896B, U+896D-8970, U+8972-8975, U+8977, U+897A-8981, U+8983, U+8986-898B, U+898D, U+898F-8990, U+8993-8998, U+899A-899C, U+899F-89A1, U+89A5-89A7, U+89A9-89AA, U+89AC, U+89AF-89B0, U+89B2-89B7, U+89BA, U+89BC-89BD, U+89BF-89C0, U+89D2, U+89D4-89D8, U+89DA, U+89DC-89DD, U+89E3, U+89E5-89E7, U+89E9, U+89EB, U+89ED, U+89F1, U+89F3-89F4, U+89F6, U+89F8-89F9, U+89FD, U+89FF-8A05, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A18, U+8A1B, U+8A1D-8A26, U+8A2A-8A2D, U+8A2F, U+8A31, U+8A33-8A37, U+8A3A-8A3E, U+8A40-8A41, U+8A43, U+8A45-8A49, U+8A4D-8A4E, U+8A50-8A58, U+8A5B-8A5E, U+8A60-8A63, U+8A65-8A67, U+8A69, U+8A6B-8A6E, U+8A70-8A73, U+8A75-8A77, U+8A79-8A7C, U+8A7E-8A80, U+8A82-8A87, U+8A89, U+8A8B-8A8D, U+8A8F-8A93, U+8A95-8A9A, U+8A9E-8AA1, U+8AA3-8AAA, U+8AAC-8AB0, U+8AB2-8AB3, U+8AB6-8AB7, U+8AB9, U+8ABB-8ABC, U+8ABE-8ABF, U+8AC2-8AC4, U+8AC6-8ACD, U+8ACF-8AD7, U+8ADA-8AE2, U+8AE4, U+8AE6-8AE7, U+8AEB-8AEE, U+8AF0-8AF1, U+8AF3-8AF8, U+8AFA, U+8AFC, U+8AFE-8B02, U+8B04-8B07, U+8B0A-8B11, U+8B14, U+8B16-8B17, U+8B19-8B21, U+8B26, U+8B28, U+8B2B-8B2D, U+8B30, U+8B33, U+8B37, U+8B39, U+8B3C, U+8B3E, U+8B41-8B46, U+8B48-8B49, U+8B4C-8B4F, U+8B51-8B54, U+8B56, U+8B58-8B5B", + "bytes": 57360 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.034.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61", + "bytes": 57612 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.034.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61", + "bytes": 59068 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.034.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61", + "bytes": 58736 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.034.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61", + "bytes": 58720 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.034.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61", + "bytes": 60048 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.034.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61", + "bytes": 60560 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.034.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61", + "bytes": 60776 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.034.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8B5C, U+8B5E-8B5F, U+8B63, U+8B66, U+8B69, U+8B6B-8B6D, U+8B6F-8B72, U+8B74, U+8B76-8B79, U+8B7C-8B81, U+8B83-8B85, U+8B8A-8B90, U+8B92-8B96, U+8B99-8B9A, U+8B9C-8B9F, U+8C37-8C3A, U+8C3D-8C3F, U+8C41, U+8C45-8C4C, U+8C4E-8C51, U+8C53-8C55, U+8C57-8C5B, U+8C5D, U+8C61-8C64, U+8C66, U+8C68-8C6D, U+8C73, U+8C75-8C76, U+8C78-8C7C, U+8C7E, U+8C82, U+8C85-8C87, U+8C89-8C8E, U+8C90, U+8C92-8C94, U+8C98-8C99, U+8C9B-8CA2, U+8CA4, U+8CA7-8CB0, U+8CB2-8CB4, U+8CB6-8CBD, U+8CBF-8CCB, U+8CCD-8CCF, U+8CD1-8CD3, U+8CD5-8CD6, U+8CD9-8CDE, U+8CE0-8CE4, U+8CE6, U+8CE8, U+8CEA, U+8CEC-8CED, U+8CEF-8CF2, U+8CF4-8CF5, U+8CF7-8CF8, U+8CFA-8CFF, U+8D01, U+8D03-8D05, U+8D07-8D0B, U+8D0D-8D10, U+8D12-8D14, U+8D16-8D17, U+8D1B-8D1C, U+8D64-8D67, U+8D69, U+8D6B-8D6E, U+8D70-8D71, U+8D73-8D74, U+8D76-8D77, U+8D7F, U+8D81-8D82, U+8D84-8D85, U+8D88, U+8D8A, U+8D8D, U+8D90-8D91, U+8D95, U+8D99, U+8D9E-8DA0, U+8DA3, U+8DA6, U+8DA8, U+8DAB-8DAC, U+8DAF, U+8DB2-8DB3, U+8DB5, U+8DB7, U+8DB9-8DBC, U+8DBE, U+8DC0, U+8DC2, U+8DC5-8DC8, U+8DCA-8DCC, U+8DCE-8DCF, U+8DD1, U+8DD4-8DD7, U+8DD9-8DDB, U+8DDD, U+8DDF, U+8DE1, U+8DE3-8DE5, U+8DE7-8DE8, U+8DEA-8DEC, U+8DEF-8DF5, U+8DFC-8DFD, U+8DFF, U+8E01, U+8E04-8E06, U+8E08-8E0C, U+8E0F-8E11, U+8E14, U+8E16, U+8E1D-8E23, U+8E26-8E27, U+8E2A, U+8E30-8E31, U+8E33-8E39, U+8E3D, U+8E40-8E42, U+8E44, U+8E47-8E50, U+8E54-8E55, U+8E59, U+8E5B-8E61", + "bytes": 60240 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.035.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087", + "bytes": 54968 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.035.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087", + "bytes": 58188 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.035.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087", + "bytes": 57548 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.035.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087", + "bytes": 55784 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.035.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087", + "bytes": 58224 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.035.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087", + "bytes": 58260 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.035.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087", + "bytes": 58880 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.035.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8E62-8E64, U+8E69, U+8E6C-8E6D, U+8E6F-8E72, U+8E74-8E77, U+8E79-8E7C, U+8E81-8E85, U+8E87, U+8E89-8E8B, U+8E8D, U+8E90-8E95, U+8E98-8E9B, U+8E9D-8E9E, U+8EA1-8EA2, U+8EA7, U+8EA9-8EB1, U+8EB3, U+8EB5-8EB6, U+8EBA-8EBB, U+8EBE, U+8EC0-8EC1, U+8EC3-8EC8, U+8ECA-8ECD, U+8ECF, U+8ED1-8ED2, U+8ED4, U+8EDB-8EDC, U+8EDF, U+8EE2-8EE3, U+8EE8, U+8EEB, U+8EED-8EEE, U+8EF0-8EF1, U+8EF7-8EFE, U+8F00, U+8F02-8F03, U+8F05, U+8F07-8F0A, U+8F0C, U+8F0F-8F10, U+8F12-8F19, U+8F1B-8F21, U+8F23, U+8F25-8F2F, U+8F33-8F3B, U+8F3E-8F47, U+8F49-8F4A, U+8F4C-8F4F, U+8F51-8F55, U+8F57-8F58, U+8F5C-8F5F, U+8F61-8F65, U+8F9B-8FA8, U+8FAD-8FB2, U+8FB4-8FB8, U+8FBA-8FBC, U+8FBE-8FC2, U+8FC4-8FC6, U+8FC8, U+8FCA-8FCB, U+8FCD-8FCE, U+8FD0-8FD5, U+8FDA, U+8FE0, U+8FE2-8FE6, U+8FE8-8FEB, U+8FED-8FF1, U+8FF4-8FFB, U+8FFD-8FFE, U+9000-9006, U+9008, U+900B-9011, U+9013-901B, U+901D-9023, U+9027-902A, U+902C-902F, U+9031-9039, U+903C, U+903E-903F, U+9041-9045, U+9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9063, U+9065-9069, U+906C-9070, U+9072, U+9074-907A, U+907C-907D, U+907F-9085, U+9087", + "bytes": 56664 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.036.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F", + "bytes": 54668 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.036.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F", + "bytes": 57280 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.036.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F", + "bytes": 56980 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.036.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F", + "bytes": 55644 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.036.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F", + "bytes": 58704 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.036.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F", + "bytes": 58968 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.036.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F", + "bytes": 59348 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.036.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+9088-908C, U+908E-9091, U+9095, U+9097-9099, U+909B, U+90A0-90A3, U+90A5-90A6, U+90A8, U+90AA, U+90AF-90B6, U+90B8, U+90BD-90BE, U+90C1, U+90C3-90C5, U+90C7-90CA, U+90CC, U+90CE, U+90D2, U+90D5, U+90D7-90D9, U+90DB-90DF, U+90E1-90E2, U+90E4-90E5, U+90E8, U+90EB, U+90ED, U+90EF-90F0, U+90F2, U+90F4-90F7, U+90FD-9100, U+9102, U+9104-9106, U+9108, U+910D, U+9110, U+9112, U+9114-911A, U+911C, U+911E, U+9120, U+9122-9123, U+9125, U+9127, U+9129, U+912D-9132, U+9134, U+9136-9137, U+9139-913A, U+913C-913D, U+9143, U+9146-914F, U+9152-9154, U+9156-915B, U+9161-9165, U+9167, U+9169-916A, U+916C-916D, U+9172-9175, U+9177-917B, U+9181-9183, U+9185-9187, U+9189-918B, U+918D-918E, U+9190-9195, U+9197-9198, U+919C, U+919E, U+91A1-91A2, U+91A4, U+91A6, U+91A8, U+91AA-91B6, U+91B8, U+91BA-91BD, U+91BF-91C9, U+91CB-91D1, U+91D3-91D4, U+91D6-91DF, U+91E1, U+91E3-91E7, U+91E9-91EA, U+91EC-91F1, U+91F5-91F7, U+91F9, U+91FB-91FD, U+91FF-9201, U+9204-9207, U+9209-920A, U+920C-920E, U+9210-9218, U+921C-921E, U+9223-9226, U+9228-9229, U+922C, U+922E-9230, U+9233-923A, U+923C, U+923E-9240, U+9242-924B, U+924D-9251, U+9256-925E, U+9260-9262, U+9264-9269, U+926E-9271, U+9275-9279, U+927B-9280, U+9283, U+9285, U+9288-928A, U+928D-928E, U+9291-9293, U+9295-929C, U+929F", + "bytes": 57724 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.037.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC", + "bytes": 62708 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.037.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC", + "bytes": 64824 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.037.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC", + "bytes": 64900 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.037.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC", + "bytes": 64660 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.037.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC", + "bytes": 67312 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.037.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC", + "bytes": 68116 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.037.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC", + "bytes": 69016 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.037.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+92A0, U+92A4-92A5, U+92A7-92A8, U+92AB, U+92AD, U+92AF, U+92B2-92B3, U+92B6-92BD, U+92BF-92C3, U+92C5-92C8, U+92CB-92D0, U+92D2-92D3, U+92D5, U+92D7-92D9, U+92DC-92DD, U+92DF-92E1, U+92E3-92E5, U+92E7-92EA, U+92EC-92EE, U+92F0, U+92F2-92F3, U+92F7-92FC, U+92FF-9300, U+9302, U+9304, U+9306, U+9308, U+930D, U+930F-9311, U+9314-9315, U+9318-931A, U+931C-932C, U+932E-932F, U+9332-9337, U+933A-933B, U+9344, U+9347-934B, U+934D, U+9350-9352, U+9354-9358, U+935A-935C, U+935E, U+9360, U+9364-9365, U+9367, U+9369-9371, U+9373-9376, U+937A, U+937C-9382, U+9388, U+938A-938D, U+938F, U+9392, U+9394-9398, U+939A-939B, U+939E, U+93A1, U+93A3-93A4, U+93A6-93A9, U+93AB-93AE, U+93B0, U+93B4-93B6, U+93B9-93BB, U+93C1, U+93C3-93CD, U+93D0-93D1, U+93D3, U+93D6-93D9, U+93DC-93DF, U+93E1-93E2, U+93E4-93E8, U+93F1, U+93F5, U+93F7-93FB, U+93FD, U+9401-9404, U+9407-9409, U+940D-9410, U+9413-941A, U+941F, U+9421, U+942B, U+942E-942F, U+9431-9436, U+9438, U+943A-943B, U+943D, U+943F, U+9441, U+9443-9445, U+9448, U+944A, U+944C, U+9451-9453, U+9455, U+9459-945C, U+945E-9463, U+9468, U+946A-946B, U+946D-9472, U+9475, U+9477, U+947C-947F, U+9481, U+9483-9484, U+9577-9579, U+957E, U+9580, U+9582-9584, U+9586-958F, U+9591-9594, U+9596, U+9598-9599, U+959D-95A9, U+95AB-95AD, U+95B1-95B2, U+95B4, U+95B6, U+95B9-95BF, U+95C3, U+95C6-95CC", + "bytes": 68312 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.038.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808", + "bytes": 55416 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.038.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808", + "bytes": 57752 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.038.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808", + "bytes": 57036 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.038.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808", + "bytes": 56744 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.038.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808", + "bytes": 58068 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.038.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808", + "bytes": 58208 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.038.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808", + "bytes": 58668 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.038.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+95CD, U+95D0-95D6, U+95D8-95DA, U+95DC-95E2, U+95E4-95E6, U+95E8, U+961C-961E, U+9621-9622, U+9624-9626, U+9628, U+962A, U+962C, U+962E-962F, U+9631-9634, U+9637-963D, U+963F-9642, U+9644, U+964B-964D, U+964F-9650, U+9652, U+9654, U+9656-9658, U+965B-965F, U+9661-9666, U+966A, U+966C, U+966E, U+9670, U+9672-9678, U+967A-967F, U+9681-9686, U+9688-968B, U+968D-968F, U+9691, U+9694-969D, U+969F-96A0, U+96A3-96AA, U+96AE-96B4, U+96B6-96BD, U+96C0-96C1, U+96C4-96C7, U+96C9-96CE, U+96D1-96D2, U+96D5-96D6, U+96D8-96DF, U+96E2-96E3, U+96E8-96EB, U+96EF-96F2, U+96F6-96F7, U+96F9-96FB, U+9700, U+9702-970A, U+970D-970F, U+9711, U+9713-9714, U+9716, U+9719-971E, U+9721-9724, U+9727-9728, U+972A, U+9730-9733, U+9736, U+9738-9739, U+973B, U+973D-973E, U+9741-9744, U+9746-974A, U+974D-974F, U+9751-9752, U+9755-975C, U+975E, U+9760-9764, U+9766-976B, U+976D-976E, U+9771, U+9773-9774, U+9776-977D, U+977F-9781, U+9784-9786, U+9789, U+978B, U+978D, U+978F-9790, U+9795-979A, U+979C, U+979E-97A0, U+97A2-97A3, U+97A6, U+97A8, U+97AB-97AE, U+97B1-97B6, U+97B8-97BA, U+97BC, U+97BE-97BF, U+97C1, U+97C3-97CE, U+97D0-97D1, U+97D3-97D4, U+97D7-97D9, U+97DB-97DE, U+97E0-97E1, U+97E4, U+97ED-97EF, U+97F1-97F8, U+97FA-97FB, U+97FF, U+9801-9808", + "bytes": 58240 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.039.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1", + "bytes": 65648 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.039.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1", + "bytes": 68600 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.039.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1", + "bytes": 68120 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.039.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1", + "bytes": 67860 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.039.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1", + "bytes": 70112 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.039.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1", + "bytes": 70160 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.039.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1", + "bytes": 70604 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.039.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+980A, U+980C-9814, U+9816-981A, U+981C, U+981E, U+9820-9821, U+9823-9826, U+982B-9830, U+9832-9835, U+9837-9839, U+983B-983E, U+9844, U+9846-9847, U+984A-984F, U+9851-985B, U+985E, U+9862-9863, U+9865-9867, U+986A-986C, U+986F-9871, U+9873-9874, U+98A8, U+98AA-98AB, U+98AD-98B1, U+98B4, U+98B6-98B8, U+98BA-98BC, U+98BF, U+98C2-98C8, U+98CB-98CC, U+98DB-98DC, U+98DF-98E3, U+98E5-98E7, U+98E9-98EB, U+98ED-98F4, U+98F6, U+98FC-98FE, U+9902-9903, U+9905, U+9907-990A, U+990C, U+9910-9918, U+991A-9922, U+9924, U+9926-9928, U+992B-992C, U+992E, U+9931-9935, U+9939-993E, U+9940-9942, U+9945-9949, U+994B-994E, U+9950-9952, U+9954-9955, U+9957-9959, U+995B-995C, U+995E-9960, U+9996-9999, U+999B, U+999D-999F, U+99A3, U+99A5-99A6, U+99A8, U+99AC-99AE, U+99B0-99B5, U+99B9-99BA, U+99BC-99BD, U+99BF, U+99C1, U+99C3-99C6, U+99C8-99C9, U+99D0-99D5, U+99D8-99DF, U+99E1-99E2, U+99E7, U+99EA-99EE, U+99F0-99F2, U+99F4-99F5, U+99F8-99F9, U+99FB-99FF, U+9A01-9A05, U+9A08, U+9A0A-9A0C, U+9A0E-9A13, U+9A16, U+9A19-9A1A, U+9A1E, U+9A20, U+9A22-9A24, U+9A27-9A28, U+9A2B, U+9A2D-9A2E, U+9A30-9A31, U+9A33, U+9A35-9A38, U+9A3E, U+9A40-9A45, U+9A47, U+9A4A-9A4E, U+9A51-9A52, U+9A54-9A58, U+9A5A-9A5B, U+9A5D, U+9A5F, U+9A62, U+9A64-9A65, U+9A69-9A6B, U+9AA8, U+9AAA, U+9AAC-9AB0, U+9AB2, U+9AB4-9AB9, U+9ABB-9AC1, U+9AC3-9AC4, U+9AC6, U+9AC8, U+9ACE-9AD1", + "bytes": 68940 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.040.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44", + "bytes": 66160 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.040.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44", + "bytes": 70008 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.040.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44", + "bytes": 69004 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.040.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44", + "bytes": 68308 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.040.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44", + "bytes": 70896 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.040.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44", + "bytes": 71532 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.040.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44", + "bytes": 71936 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.040.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+9AD2-9AD9, U+9ADB-9ADC, U+9ADE-9AE0, U+9AE2-9AE7, U+9AE9-9AEF, U+9AF1-9AF5, U+9AF7, U+9AF9-9AFB, U+9AFD, U+9AFF-9B06, U+9B08-9B09, U+9B0B-9B0E, U+9B10, U+9B12, U+9B16, U+9B18-9B1D, U+9B1F-9B20, U+9B22-9B23, U+9B25-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3D, U+9B41-9B45, U+9B48, U+9B4B-9B4F, U+9B51, U+9B54-9B58, U+9B5A-9B5B, U+9B5E, U+9B61, U+9B63, U+9B65-9B66, U+9B68, U+9B6A-9B6F, U+9B72-9B79, U+9B7F-9B80, U+9B83-9B87, U+9B89-9B8B, U+9B8D-9B94, U+9B96-9B97, U+9B9A, U+9B9D-9BA0, U+9BA6-9BAE, U+9BB0-9BB2, U+9BB4, U+9BB7-9BB9, U+9BBB-9BBC, U+9BBE-9BC1, U+9BC6-9BCA, U+9BCE-9BD2, U+9BD4, U+9BD6-9BD8, U+9BDB, U+9BDD, U+9BDF, U+9BE1-9BE5, U+9BE7-9BE8, U+9BEA-9BEB, U+9BEE-9BF3, U+9BF5, U+9BF7-9BFA, U+9BFD, U+9BFF-9C00, U+9C02, U+9C04, U+9C06, U+9C08-9C0D, U+9C0F-9C16, U+9C18-9C1E, U+9C21-9C2A, U+9C2D-9C32, U+9C35-9C37, U+9C39-9C3B, U+9C3D-9C3E, U+9C41, U+9C43-9C4A, U+9C4E-9C50, U+9C52-9C54, U+9C56-9C58, U+9C5A-9C61, U+9C63, U+9C65, U+9C67-9C6B, U+9C6D-9C6E, U+9C70, U+9C72, U+9C75-9C78, U+9C7A-9C7B, U+9CE5-9CE7, U+9CE9, U+9CEB-9CEC, U+9CF0, U+9CF2-9CF4, U+9CF6-9CF7, U+9CF9, U+9D02-9D03, U+9D06-9D09, U+9D0B, U+9D0E, U+9D11-9D12, U+9D15, U+9D17-9D18, U+9D1B-9D1F, U+9D23, U+9D26, U+9D28, U+9D2A-9D2C, U+9D2F-9D30, U+9D32-9D34, U+9D3A-9D3F, U+9D41-9D44", + "bytes": 69652 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.041.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4", + "bytes": 63472 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.041.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4", + "bytes": 67164 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.041.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4", + "bytes": 66884 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.041.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4", + "bytes": 66080 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.041.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4", + "bytes": 69320 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.041.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4", + "bytes": 69920 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.041.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4", + "bytes": 70740 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.041.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+9D45-9D48, U+9D4A, U+9D50-9D54, U+9D59, U+9D5C-9D65, U+9D69-9D6C, U+9D6F-9D70, U+9D72-9D73, U+9D76-9D77, U+9D7A-9D7C, U+9D7E, U+9D83-9D84, U+9D86-9D87, U+9D89-9D8A, U+9D8D-9D8F, U+9D92-9D93, U+9D95-9D9A, U+9DA1, U+9DA4, U+9DA9-9DAC, U+9DAE-9DAF, U+9DB1-9DB2, U+9DB4-9DB5, U+9DB8-9DBD, U+9DBF-9DC4, U+9DC6-9DC7, U+9DC9-9DCA, U+9DCF, U+9DD3-9DD7, U+9DD9-9DDA, U+9DDE-9DE0, U+9DE3, U+9DE5-9DE7, U+9DE9, U+9DEB, U+9DED-9DF0, U+9DF2-9DF4, U+9DF8-9DFA, U+9DFD-9DFE, U+9E02, U+9E07, U+9E0A, U+9E0D-9E0E, U+9E10-9E12, U+9E15-9E16, U+9E19-9E1E, U+9E75, U+9E78-9E7D, U+9E7F-9E85, U+9E87-9E88, U+9E8B-9E8C, U+9E8E-9E8F, U+9E91-9E93, U+9E95-9E98, U+9E9B, U+9E9D-9E9F, U+9EA4-9EA6, U+9EA8-9EAA, U+9EAC-9EB0, U+9EB3-9EB5, U+9EB8-9EBF, U+9EC3-9EC4, U+9EC6, U+9EC8, U+9ECB-9ED2, U+9ED4-9ED5, U+9ED8-9ED9, U+9EDB-9EE0, U+9EE4-9EE5, U+9EE7-9EE8, U+9EEC-9EF2, U+9EF4-9EF9, U+9EFB-9EFD, U+9EFF, U+9F02-9F03, U+9F07-9F09, U+9F0E-9F17, U+9F19-9F1B, U+9F1F-9F22, U+9F26, U+9F2A-9F2C, U+9F2F, U+9F31-9F32, U+9F34, U+9F37, U+9F39-9F3F, U+9F41, U+9F43-9F47, U+9F4A-9F4B, U+9F4E-9F4F, U+9F52-9F58, U+9F5A, U+9F5D-9F63, U+9F66-9F6A, U+9F6C-9F73, U+9F75-9F77, U+9F7A, U+9F7D, U+9F8D, U+9F8F-9F92, U+9F94-9F97, U+9F9C-9F9E, U+9FA0-9FA3, U+9FA5, U+9FB4", + "bytes": 68672 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.042.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100", + "bytes": 106732 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.042.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100", + "bytes": 116904 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.042.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100", + "bytes": 118636 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.042.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100", + "bytes": 112548 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.042.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100", + "bytes": 121616 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.042.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100", + "bytes": 121724 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.042.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100", + "bytes": 121352 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.042.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+F860-F862, U+F87A, U+F87F, U+F909, U+F91D, U+F91F, U+F928-F929, U+F936, U+F95F, U+F970, U+F983, U+F992-F993, U+F999-F99A, U+F9A2, U+F9C3, U+F9D0, U+F9DC, U+F9EC, U+FA03, U+FA0E-FA2D, U+FA30-FA6A, U+FB00-FB04, U+FE10-FE12, U+FE19, U+FE30-FE33, U+FE35-FE48, U+FF01-FF9F, U+FFE0-FFE5, U+FFE8, U+1F100", + "bytes": 113628 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.043.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2", + "bytes": 53164 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.043.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2", + "bytes": 53748 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.043.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2", + "bytes": 53848 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.043.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2", + "bytes": 54036 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.043.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2", + "bytes": 55056 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.043.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2", + "bytes": 55284 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.043.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2", + "bytes": 55728 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.043.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+2000B, U+20089-2008A, U+200A2, U+200A4, U+200B0, U+200F5, U+20158, U+201A2, U+20213, U+2032B, U+20371, U+20381, U+203F9, U+2044A, U+20509, U+2053F, U+205B1, U+205D6, U+20611, U+20628, U+206EC, U+2074F, U+207C8, U+20807, U+2083A, U+208B9, U+2090E, U+2097C, U+20984, U+2099D, U+20A64, U+20AD3, U+20B1D, U+20B9F, U+20BB7, U+20D45, U+20D58, U+20DE1, U+20E64, U+20E6D, U+20E95, U+20F5F, U+21201, U+2123D, U+21255, U+21274, U+2127B, U+212D7, U+212E4, U+212FD, U+2131B, U+21336, U+21344, U+213C4, U+2146D-2146E, U+215D7, U+21647, U+216B4, U+21706, U+21742, U+218BD, U+219C3, U+21A1A, U+21C56, U+21D2D, U+21D45, U+21D62, U+21D78, U+21D92, U+21D9C, U+21DA1, U+21DB7, U+21DE0, U+21E33-21E34, U+21F1E, U+21F76, U+21FFA, U+2217B, U+22218, U+2231E, U+223AD, U+22609, U+226F3, U+2285B, U+228AB, U+2298F, U+22AB8, U+22B46, U+22B4F-22B50, U+22BA6, U+22C1D, U+22C24, U+22DE1, U+22E42, U+22FEB, U+231B6, U+231C3-231C4, U+231F5, U+23372, U+233D0, U+233D2-233D3, U+233D5, U+233DA, U+233DF, U+233E4, U+233FE, U+2344A-2344B, U+23451, U+23465, U+234E4, U+2355A, U+23594, U+235C4, U+23638-2363A, U+23647, U+2370C, U+2371C, U+2373F, U+23763-23764, U+237E7, U+237FF, U+23824, U+2383D, U+23A98, U+23C7F, U+23CBE, U+23CFE, U+23D00, U+23D0E, U+23D40, U+23DD3, U+23DF9-23DFA, U+23F7E, U+2404B, U+24096, U+24103, U+241C6, U+241FE, U+242EE, U+243BC, U+243D0, U+24629, U+246A5, U+247F1, U+24896, U+24A4D, U+24B56, U+24B6F, U+24C16, U+24D14, U+24E04, U+24E0E, U+24E37, U+24E6A, U+24E8B, U+24FF2, U+2504A, U+25055, U+25122, U+251A9, U+251CD, U+251E5, U+2521E, U+2524C, U+2542E, U+2548E, U+254D9, U+2550E, U+255A7, U+2567F, U+25771, U+257A9, U+257B4, U+25874, U+259C4, U+259CC, U+259D4, U+25AD7, U+25AE3-25AE4, U+25AF1, U+25BB2, U+25C4B, U+25C64, U+25DA1, U+25E2E, U+25E56, U+25E62, U+25E65, U+25EC2, U+25ED8, U+25EE8, U+25F23, U+25F5C, U+25FD4, U+25FE0, U+25FFB, U+2600C, U+26017, U+26060, U+260ED, U+26222, U+2626A, U+26270, U+26286, U+2634C, U+26402, U+2667E, U+266B0, U+2671D, U+268DD, U+268EA, U+26951, U+2696F, U+26999, U+269DD, U+26A1E, U+26A58, U+26A8C, U+26AB7, U+26AFF, U+26C29, U+26C73, U+26C9E, U+26CDD, U+26E40, U+26E65, U+26F94, U+26FF6-26FF8, U+270F4, U+2710D, U+27139, U+273DA-273DB, U+273FE, U+27410, U+27449, U+27614-27615, U+27631, U+27684, U+27693, U+2770E, U+27723, U+27752, U+27985, U+279B4, U+27A84, U+27BB3, U+27BBE, U+27BC7, U+27C3C, U+27CB8, U+27D73, U+27DA0, U+27E10, U+27FB7, U+2808A, U+280BB, U+28277, U+28282, U+282F3, U+283CD, U+2840C, U+28455, U+2856B, U+285C8-285C9, U+286D7, U+286FA, U+28946, U+28949, U+2896B, U+28987-28988, U+289BA-289BB, U+28A1E, U+28A29, U+28A43, U+28A71, U+28A99, U+28ACD, U+28ADD, U+28AE4, U+28BC1, U+28BEF, U+28CDD, U+28D10, U+28D71, U+28DFB, U+28E17, U+28E1F, U+28E36, U+28E89, U+28EEB, U+28EF6, U+28F32, U+28FF8, U+292A0, U+292B1, U+29490, U+295CF, U+2967F, U+296F0, U+29719, U+29750, U+298C6, U+29A72, U+29D4B, U+29DDB, U+29E15, U+29E3D, U+29E49, U+29E8A, U+29EC4, U+29EDB, U+29EE9, U+29FCE, U+29FD7, U+2A01A, U+2A02F, U+2A082, U+2A0F9, U+2A190, U+2A2B2, U+2A38C, U+2A437, U+2A5F1, U+2A602, U+2A61A, U+2A6B2", + "bytes": 55952 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Thin.044.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4", + "bytes": 9536 + }, + { + "file": "FluxerSansJP/FluxerSansJP-ExtraLight.044.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4", + "bytes": 9696 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Light.044.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4", + "bytes": 9760 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Regular.044.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4", + "bytes": 9684 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Text.044.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4", + "bytes": 9880 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Medium.044.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4", + "bytes": 9904 + }, + { + "file": "FluxerSansJP/FluxerSansJP-SemiBold.044.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4", + "bytes": 9956 + }, + { + "file": "FluxerSansJP/FluxerSansJP-Bold.044.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+2F804, U+2F80F, U+2F815, U+2F818, U+2F81A, U+2F822, U+2F828, U+2F82C, U+2F833, U+2F83F, U+2F846, U+2F852, U+2F862, U+2F86D, U+2F873, U+2F877, U+2F884, U+2F899-2F89A, U+2F8A6, U+2F8AC, U+2F8B2, U+2F8B6, U+2F8D3, U+2F8DB-2F8DC, U+2F8E1, U+2F8E5, U+2F8EA, U+2F8ED, U+2F8FC, U+2F903, U+2F90B, U+2F90F, U+2F91A, U+2F920-2F921, U+2F945, U+2F947, U+2F96C, U+2F995, U+2F9D0, U+2F9DE-2F9DF, U+2F9F4", + "bytes": 9972 + } + ] + }, + { + "id": "FluxerSansSC", + "cssFamily": "Fluxer Sans SC", + "stylesheet": "css/script-sc.css", + "mode": "subset", + "latinCore": false, + "chunks": 69, + "faces": [ + { + "file": "FluxerSansSC/FluxerSansSC-Thin.000.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573", + "bytes": 51856 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.000.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573", + "bytes": 55656 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.000.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573", + "bytes": 55776 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.000.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573", + "bytes": 52696 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.000.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573", + "bytes": 54188 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.000.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573", + "bytes": 55104 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.000.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573", + "bytes": 54948 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.000.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A4-00A5, U+00A8-00A9, U+00AE, U+00B0-00B1, U+00B7, U+00D7, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F7, U+00F9-00FA, U+00FC, U+0101, U+0113, U+011B, U+012B, U+0144, U+0148, U+014D, U+016B, U+01CE, U+01D0, U+01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+01F9, U+0251, U+0261, U+02C6-02C7, U+02C9-02CB, U+02D9, U+02DC, U+0300-0301, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1E3F, U+2003, U+2010-2011, U+2013-2016, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2030, U+2032-2033, U+2035, U+203B, U+205D, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-216B, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+2208, U+220F, U+2211, U+2215, U+221A, U+221D-2220, U+2223, U+2225, U+2227-222B, U+222E, U+2234-2237, U+223C-223D, U+2248, U+224C, U+2252, U+2260-2261, U+2264-2267, U+226E-226F, U+2295, U+2299, U+22A5, U+22BF, U+2312, U+2329, U+2460-2469, U+2474-249B, U+2500-254B, U+2550-2573", + "bytes": 51628 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.001.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F", + "bytes": 37024 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.001.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F", + "bytes": 37752 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.001.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F", + "bytes": 37868 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.001.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F", + "bytes": 38108 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.001.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F", + "bytes": 38344 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.001.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F", + "bytes": 38308 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.001.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F", + "bytes": 38268 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.001.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+2581-258F, U+2593-2595, U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640, U+2642, U+2B0E-2B11, U+2E80-2E99, U+2E9B-2EF3, U+2F00-2FD5, U+2FF0-2FFB, U+3000-3003, U+3005-3017, U+301C-301E, U+3021-3029, U+3033-3035, U+3038-303A, U+303E-303F", + "bytes": 37728 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.002.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 21708 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.002.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 23468 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.002.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 23668 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.002.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 23004 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.002.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 23708 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.002.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 23732 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.002.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 23748 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.002.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+3041-3096, U+309B-309E, U+30A1-30FE, U+3105-312C, U+31A0-31B7, U+3220-3229, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 22580 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.003.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+3400-359B", + "bytes": 51652 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.003.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+3400-359B", + "bytes": 52704 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.003.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+3400-359B", + "bytes": 52928 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.003.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+3400-359B", + "bytes": 53068 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.003.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+3400-359B", + "bytes": 53580 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.003.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+3400-359B", + "bytes": 54080 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.003.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+3400-359B", + "bytes": 54208 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.003.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+3400-359B", + "bytes": 54020 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.004.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+359C-3737", + "bytes": 61816 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.004.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+359C-3737", + "bytes": 62728 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.004.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+359C-3737", + "bytes": 62656 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.004.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+359C-3737", + "bytes": 62960 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.004.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+359C-3737", + "bytes": 64056 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.004.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+359C-3737", + "bytes": 64956 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.004.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+359C-3737", + "bytes": 65300 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.004.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+359C-3737", + "bytes": 65280 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.005.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+3738-38D3", + "bytes": 54380 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.005.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+3738-38D3", + "bytes": 55576 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.005.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+3738-38D3", + "bytes": 55832 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.005.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+3738-38D3", + "bytes": 55824 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.005.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+3738-38D3", + "bytes": 56448 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.005.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+3738-38D3", + "bytes": 57060 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.005.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+3738-38D3", + "bytes": 57256 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.005.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+3738-38D3", + "bytes": 57208 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.006.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+38D4-3A6F", + "bytes": 60984 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.006.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+38D4-3A6F", + "bytes": 61864 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.006.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+38D4-3A6F", + "bytes": 62056 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.006.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+38D4-3A6F", + "bytes": 62100 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.006.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+38D4-3A6F", + "bytes": 63092 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.006.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+38D4-3A6F", + "bytes": 63512 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.006.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+38D4-3A6F", + "bytes": 64272 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.006.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+38D4-3A6F", + "bytes": 63832 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.007.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+3A70-3C0B", + "bytes": 60256 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.007.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+3A70-3C0B", + "bytes": 61272 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.007.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+3A70-3C0B", + "bytes": 61556 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.007.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+3A70-3C0B", + "bytes": 61808 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.007.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+3A70-3C0B", + "bytes": 62772 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.007.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+3A70-3C0B", + "bytes": 63128 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.007.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+3A70-3C0B", + "bytes": 63912 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.007.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+3A70-3C0B", + "bytes": 63508 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.008.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+3C0C-3DA7", + "bytes": 67240 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.008.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+3C0C-3DA7", + "bytes": 68520 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.008.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+3C0C-3DA7", + "bytes": 69024 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.008.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+3C0C-3DA7", + "bytes": 69320 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.008.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+3C0C-3DA7", + "bytes": 70440 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.008.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+3C0C-3DA7", + "bytes": 71232 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.008.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+3C0C-3DA7", + "bytes": 72092 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.008.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+3C0C-3DA7", + "bytes": 71884 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.009.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+3DA8-3F43", + "bytes": 63276 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.009.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+3DA8-3F43", + "bytes": 64424 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.009.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+3DA8-3F43", + "bytes": 64804 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.009.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+3DA8-3F43", + "bytes": 64904 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.009.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+3DA8-3F43", + "bytes": 65992 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.009.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+3DA8-3F43", + "bytes": 66452 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.009.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+3DA8-3F43", + "bytes": 67164 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.009.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+3DA8-3F43", + "bytes": 66716 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.010.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+3F44-40DF", + "bytes": 60392 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.010.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+3F44-40DF", + "bytes": 60608 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.010.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+3F44-40DF", + "bytes": 60524 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.010.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+3F44-40DF", + "bytes": 60740 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.010.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+3F44-40DF", + "bytes": 61136 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.010.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+3F44-40DF", + "bytes": 61588 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.010.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+3F44-40DF", + "bytes": 62088 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.010.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+3F44-40DF", + "bytes": 61696 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.011.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+40E0-427B", + "bytes": 65844 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.011.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+40E0-427B", + "bytes": 67308 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.011.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+40E0-427B", + "bytes": 67276 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.011.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+40E0-427B", + "bytes": 67076 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.011.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+40E0-427B", + "bytes": 68652 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.011.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+40E0-427B", + "bytes": 69548 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.011.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+40E0-427B", + "bytes": 70444 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.011.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+40E0-427B", + "bytes": 69072 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.012.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+427C-4417", + "bytes": 64804 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.012.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+427C-4417", + "bytes": 66204 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.012.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+427C-4417", + "bytes": 66080 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.012.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+427C-4417", + "bytes": 65968 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.012.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+427C-4417", + "bytes": 67916 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.012.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+427C-4417", + "bytes": 68568 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.012.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+427C-4417", + "bytes": 69728 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.012.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+427C-4417", + "bytes": 69008 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.013.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+4418-45B3", + "bytes": 61964 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.013.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+4418-45B3", + "bytes": 63460 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.013.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+4418-45B3", + "bytes": 63660 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.013.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+4418-45B3", + "bytes": 63932 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.013.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+4418-45B3", + "bytes": 64832 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.013.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+4418-45B3", + "bytes": 65772 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.013.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+4418-45B3", + "bytes": 66200 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.013.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+4418-45B3", + "bytes": 65728 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.014.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+45B4-474F", + "bytes": 66576 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.014.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+45B4-474F", + "bytes": 67744 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.014.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+45B4-474F", + "bytes": 67924 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.014.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+45B4-474F", + "bytes": 68208 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.014.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+45B4-474F", + "bytes": 69136 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.014.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+45B4-474F", + "bytes": 69628 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.014.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+45B4-474F", + "bytes": 70044 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.014.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+45B4-474F", + "bytes": 69096 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.015.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+4750-48EB", + "bytes": 61212 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.015.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+4750-48EB", + "bytes": 62500 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.015.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+4750-48EB", + "bytes": 62392 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.015.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+4750-48EB", + "bytes": 62268 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.015.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+4750-48EB", + "bytes": 63340 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.015.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+4750-48EB", + "bytes": 63844 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.015.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+4750-48EB", + "bytes": 64044 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.015.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+4750-48EB", + "bytes": 63000 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.016.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+48EC-4A87", + "bytes": 66876 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.016.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+48EC-4A87", + "bytes": 68616 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.016.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+48EC-4A87", + "bytes": 68300 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.016.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+48EC-4A87", + "bytes": 68516 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.016.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+48EC-4A87", + "bytes": 70052 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.016.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+48EC-4A87", + "bytes": 70980 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.016.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+48EC-4A87", + "bytes": 71040 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.016.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+48EC-4A87", + "bytes": 69888 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.017.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+4A88-4C23", + "bytes": 72636 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.017.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+4A88-4C23", + "bytes": 74500 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.017.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+4A88-4C23", + "bytes": 75192 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.017.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+4A88-4C23", + "bytes": 74240 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.017.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+4A88-4C23", + "bytes": 76400 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.017.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+4A88-4C23", + "bytes": 76940 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.017.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+4A88-4C23", + "bytes": 77812 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.017.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+4A88-4C23", + "bytes": 76144 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.018.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+4C24-4DBF", + "bytes": 76692 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.018.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+4C24-4DBF", + "bytes": 78688 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.018.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+4C24-4DBF", + "bytes": 79060 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.018.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+4C24-4DBF", + "bytes": 79020 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.018.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+4C24-4DBF", + "bytes": 81556 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.018.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+4C24-4DBF", + "bytes": 82140 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.018.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+4C24-4DBF", + "bytes": 82952 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.018.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+4C24-4DBF", + "bytes": 80828 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.019.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+4E00-4FAB", + "bytes": 48072 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.019.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+4E00-4FAB", + "bytes": 48700 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.019.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+4E00-4FAB", + "bytes": 48968 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.019.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+4E00-4FAB", + "bytes": 49044 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.019.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+4E00-4FAB", + "bytes": 49788 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.019.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+4E00-4FAB", + "bytes": 50000 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.019.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+4E00-4FAB", + "bytes": 50220 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.019.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+4E00-4FAB", + "bytes": 50128 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.020.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+4FAC-5157", + "bytes": 58840 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.020.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+4FAC-5157", + "bytes": 59336 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.020.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+4FAC-5157", + "bytes": 59152 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.020.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+4FAC-5157", + "bytes": 59304 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.020.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+4FAC-5157", + "bytes": 60352 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.020.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+4FAC-5157", + "bytes": 60632 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.020.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+4FAC-5157", + "bytes": 61156 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.020.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+4FAC-5157", + "bytes": 60700 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.021.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+5158-5303", + "bytes": 57756 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.021.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+5158-5303", + "bytes": 58772 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.021.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+5158-5303", + "bytes": 58872 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.021.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+5158-5303", + "bytes": 59224 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.021.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+5158-5303", + "bytes": 59736 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.021.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+5158-5303", + "bytes": 60280 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.021.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+5158-5303", + "bytes": 60608 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.021.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+5158-5303", + "bytes": 60376 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.022.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+5304-54AF", + "bytes": 51040 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.022.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+5304-54AF", + "bytes": 51832 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.022.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+5304-54AF", + "bytes": 51960 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.022.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+5304-54AF", + "bytes": 52248 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.022.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+5304-54AF", + "bytes": 52828 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.022.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+5304-54AF", + "bytes": 53204 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.022.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+5304-54AF", + "bytes": 53560 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.022.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+5304-54AF", + "bytes": 53388 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.023.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+54B0-565B", + "bytes": 57260 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.023.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+54B0-565B", + "bytes": 57736 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.023.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+54B0-565B", + "bytes": 57976 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.023.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+54B0-565B", + "bytes": 58388 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.023.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+54B0-565B", + "bytes": 58896 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.023.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+54B0-565B", + "bytes": 59508 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.023.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+54B0-565B", + "bytes": 59988 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.023.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+54B0-565B", + "bytes": 60308 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.024.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+565C-5807", + "bytes": 58320 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.024.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+565C-5807", + "bytes": 59176 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.024.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+565C-5807", + "bytes": 59356 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.024.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+565C-5807", + "bytes": 59628 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.024.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+565C-5807", + "bytes": 60488 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.024.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+565C-5807", + "bytes": 61216 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.024.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+565C-5807", + "bytes": 61616 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.024.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+565C-5807", + "bytes": 61356 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.025.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+5808-59B3", + "bytes": 61276 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.025.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+5808-59B3", + "bytes": 61804 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.025.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+5808-59B3", + "bytes": 61916 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.025.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+5808-59B3", + "bytes": 62248 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.025.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+5808-59B3", + "bytes": 63028 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.025.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+5808-59B3", + "bytes": 63484 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.025.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+5808-59B3", + "bytes": 63828 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.025.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+5808-59B3", + "bytes": 63704 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.026.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+59B4-5B5F", + "bytes": 68428 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.026.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+59B4-5B5F", + "bytes": 69388 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.026.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+59B4-5B5F", + "bytes": 69520 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.026.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+59B4-5B5F", + "bytes": 69692 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.026.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+59B4-5B5F", + "bytes": 71432 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.026.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+59B4-5B5F", + "bytes": 72168 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.026.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+59B4-5B5F", + "bytes": 72692 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.026.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+59B4-5B5F", + "bytes": 71616 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.027.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+5B60-5D0B", + "bytes": 52120 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.027.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+5B60-5D0B", + "bytes": 53448 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.027.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+5B60-5D0B", + "bytes": 53588 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.027.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+5B60-5D0B", + "bytes": 53920 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.027.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+5B60-5D0B", + "bytes": 54560 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.027.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+5B60-5D0B", + "bytes": 54876 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.027.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+5B60-5D0B", + "bytes": 55128 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.027.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+5B60-5D0B", + "bytes": 54740 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.028.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+5D0C-5EB7", + "bytes": 58104 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.028.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+5D0C-5EB7", + "bytes": 59176 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.028.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+5D0C-5EB7", + "bytes": 59088 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.028.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+5D0C-5EB7", + "bytes": 59284 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.028.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+5D0C-5EB7", + "bytes": 60092 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.028.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+5D0C-5EB7", + "bytes": 60592 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.028.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+5D0C-5EB7", + "bytes": 61060 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.028.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+5D0C-5EB7", + "bytes": 61196 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.029.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+5EB8-6063", + "bytes": 59492 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.029.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+5EB8-6063", + "bytes": 60608 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.029.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+5EB8-6063", + "bytes": 60592 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.029.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+5EB8-6063", + "bytes": 60588 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.029.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+5EB8-6063", + "bytes": 61824 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.029.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+5EB8-6063", + "bytes": 62348 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.029.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+5EB8-6063", + "bytes": 62800 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.029.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+5EB8-6063", + "bytes": 62196 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.030.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6064-620F", + "bytes": 67560 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.030.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6064-620F", + "bytes": 68824 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.030.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6064-620F", + "bytes": 69000 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.030.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6064-620F", + "bytes": 69096 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.030.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6064-620F", + "bytes": 70284 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.030.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6064-620F", + "bytes": 71064 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.030.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6064-620F", + "bytes": 72144 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.030.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6064-620F", + "bytes": 72048 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.031.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6210-63BB", + "bytes": 58884 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.031.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6210-63BB", + "bytes": 59948 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.031.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6210-63BB", + "bytes": 60344 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.031.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6210-63BB", + "bytes": 60756 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.031.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6210-63BB", + "bytes": 61432 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.031.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6210-63BB", + "bytes": 61604 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.031.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6210-63BB", + "bytes": 62008 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.031.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6210-63BB", + "bytes": 61572 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.032.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+63BC-6567", + "bytes": 72436 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.032.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+63BC-6567", + "bytes": 73304 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.032.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+63BC-6567", + "bytes": 73560 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.032.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+63BC-6567", + "bytes": 74172 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.032.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+63BC-6567", + "bytes": 75072 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.032.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+63BC-6567", + "bytes": 75216 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.032.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+63BC-6567", + "bytes": 75680 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.032.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+63BC-6567", + "bytes": 75008 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.033.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6568-6713", + "bytes": 58088 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.033.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6568-6713", + "bytes": 58436 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.033.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6568-6713", + "bytes": 58700 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.033.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6568-6713", + "bytes": 58848 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.033.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6568-6713", + "bytes": 59400 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.033.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6568-6713", + "bytes": 59848 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.033.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6568-6713", + "bytes": 60416 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.033.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6568-6713", + "bytes": 60348 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.034.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6714-68BF", + "bytes": 54788 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.034.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6714-68BF", + "bytes": 56532 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.034.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6714-68BF", + "bytes": 57052 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.034.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6714-68BF", + "bytes": 56900 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.034.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6714-68BF", + "bytes": 58504 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.034.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6714-68BF", + "bytes": 58088 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.034.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6714-68BF", + "bytes": 58584 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.034.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6714-68BF", + "bytes": 57504 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.035.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+68C0-6A6B", + "bytes": 65052 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.035.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+68C0-6A6B", + "bytes": 66372 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.035.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+68C0-6A6B", + "bytes": 66740 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.035.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+68C0-6A6B", + "bytes": 67072 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.035.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+68C0-6A6B", + "bytes": 68600 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.035.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+68C0-6A6B", + "bytes": 68484 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.035.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+68C0-6A6B", + "bytes": 68960 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.035.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+68C0-6A6B", + "bytes": 68176 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.036.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6A6C-6C17", + "bytes": 72580 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.036.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6A6C-6C17", + "bytes": 73784 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.036.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6A6C-6C17", + "bytes": 74112 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.036.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6A6C-6C17", + "bytes": 74408 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.036.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6A6C-6C17", + "bytes": 75660 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.036.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6A6C-6C17", + "bytes": 76452 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.036.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6A6C-6C17", + "bytes": 77020 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.036.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6A6C-6C17", + "bytes": 76112 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.037.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6C18-6DC3", + "bytes": 58028 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.037.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6C18-6DC3", + "bytes": 59652 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.037.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6C18-6DC3", + "bytes": 60372 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.037.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6C18-6DC3", + "bytes": 60688 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.037.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6C18-6DC3", + "bytes": 61472 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.037.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6C18-6DC3", + "bytes": 61988 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.037.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6C18-6DC3", + "bytes": 62716 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.037.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6C18-6DC3", + "bytes": 61976 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.038.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6DC4-6F6F", + "bytes": 70388 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.038.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6DC4-6F6F", + "bytes": 71560 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.038.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6DC4-6F6F", + "bytes": 72184 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.038.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6DC4-6F6F", + "bytes": 72492 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.038.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6DC4-6F6F", + "bytes": 73548 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.038.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6DC4-6F6F", + "bytes": 74040 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.038.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6DC4-6F6F", + "bytes": 75056 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.038.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6DC4-6F6F", + "bytes": 74800 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.039.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6F70-711B", + "bytes": 77416 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.039.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6F70-711B", + "bytes": 78860 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.039.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6F70-711B", + "bytes": 79632 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.039.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6F70-711B", + "bytes": 79820 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.039.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6F70-711B", + "bytes": 81080 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.039.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6F70-711B", + "bytes": 82024 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.039.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6F70-711B", + "bytes": 83096 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.039.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6F70-711B", + "bytes": 82264 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.040.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+711C-72C7", + "bytes": 70364 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.040.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+711C-72C7", + "bytes": 71760 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.040.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+711C-72C7", + "bytes": 72388 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.040.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+711C-72C7", + "bytes": 72504 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.040.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+711C-72C7", + "bytes": 74380 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.040.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+711C-72C7", + "bytes": 74944 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.040.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+711C-72C7", + "bytes": 75932 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.040.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+711C-72C7", + "bytes": 74256 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.041.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+72C8-7473", + "bytes": 61104 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.041.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+72C8-7473", + "bytes": 61620 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.041.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+72C8-7473", + "bytes": 61608 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.041.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+72C8-7473", + "bytes": 61920 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.041.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+72C8-7473", + "bytes": 62620 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.041.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+72C8-7473", + "bytes": 62808 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.041.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+72C8-7473", + "bytes": 62960 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.041.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+72C8-7473", + "bytes": 62612 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.042.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7474-761F", + "bytes": 64780 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.042.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7474-761F", + "bytes": 65504 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.042.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7474-761F", + "bytes": 65532 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.042.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7474-761F", + "bytes": 65432 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.042.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7474-761F", + "bytes": 66080 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.042.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7474-761F", + "bytes": 66748 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.042.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7474-761F", + "bytes": 67368 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.042.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7474-761F", + "bytes": 65908 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.043.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7620-77CB", + "bytes": 62996 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.043.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7620-77CB", + "bytes": 63632 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.043.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7620-77CB", + "bytes": 63424 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.043.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7620-77CB", + "bytes": 63800 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.043.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7620-77CB", + "bytes": 64380 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.043.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7620-77CB", + "bytes": 64760 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.043.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7620-77CB", + "bytes": 65268 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.043.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7620-77CB", + "bytes": 64952 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.044.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+77CC-7977", + "bytes": 60768 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.044.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+77CC-7977", + "bytes": 61708 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.044.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+77CC-7977", + "bytes": 61812 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.044.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+77CC-7977", + "bytes": 61748 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.044.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+77CC-7977", + "bytes": 62724 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.044.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+77CC-7977", + "bytes": 62788 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.044.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+77CC-7977", + "bytes": 63156 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.044.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+77CC-7977", + "bytes": 62688 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.045.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7978-7B23", + "bytes": 64192 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.045.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7978-7B23", + "bytes": 65484 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.045.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7978-7B23", + "bytes": 65312 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.045.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7978-7B23", + "bytes": 65256 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.045.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7978-7B23", + "bytes": 66760 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.045.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7978-7B23", + "bytes": 67188 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.045.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7978-7B23", + "bytes": 68108 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.045.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7978-7B23", + "bytes": 66808 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.046.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7B24-7CCF", + "bytes": 67760 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.046.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7B24-7CCF", + "bytes": 69340 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.046.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7B24-7CCF", + "bytes": 69296 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.046.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7B24-7CCF", + "bytes": 69292 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.046.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7B24-7CCF", + "bytes": 71620 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.046.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7B24-7CCF", + "bytes": 72988 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.046.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7B24-7CCF", + "bytes": 74992 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.046.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7B24-7CCF", + "bytes": 74744 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.047.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7CD0-7E7B", + "bytes": 79636 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.047.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7CD0-7E7B", + "bytes": 80476 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.047.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7CD0-7E7B", + "bytes": 79548 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.047.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7CD0-7E7B", + "bytes": 78456 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.047.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7CD0-7E7B", + "bytes": 81720 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.047.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7CD0-7E7B", + "bytes": 81696 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.047.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7CD0-7E7B", + "bytes": 82384 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.047.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7CD0-7E7B", + "bytes": 77792 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.048.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7E7C-8027", + "bytes": 90048 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.048.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7E7C-8027", + "bytes": 91764 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.048.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7E7C-8027", + "bytes": 91464 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.048.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7E7C-8027", + "bytes": 91036 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.048.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7E7C-8027", + "bytes": 94232 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.048.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7E7C-8027", + "bytes": 95028 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.048.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7E7C-8027", + "bytes": 96108 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.048.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7E7C-8027", + "bytes": 93124 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.049.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8028-81D3", + "bytes": 59620 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.049.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8028-81D3", + "bytes": 60752 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.049.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8028-81D3", + "bytes": 61180 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.049.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8028-81D3", + "bytes": 61496 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.049.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8028-81D3", + "bytes": 62780 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.049.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8028-81D3", + "bytes": 63212 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.049.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8028-81D3", + "bytes": 64120 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.049.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8028-81D3", + "bytes": 63176 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.050.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+81D4-8277, U+8279-8380", + "bytes": 58120 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.050.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+81D4-8277, U+8279-8380", + "bytes": 59648 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.050.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+81D4-8277, U+8279-8380", + "bytes": 59944 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.050.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+81D4-8277, U+8279-8380", + "bytes": 60424 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.050.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+81D4-8277, U+8279-8380", + "bytes": 61752 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.050.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+81D4-8277, U+8279-8380", + "bytes": 62204 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.050.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+81D4-8277, U+8279-8380", + "bytes": 62868 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.050.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+81D4-8277, U+8279-8380", + "bytes": 62064 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.051.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8381-852C", + "bytes": 61056 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.051.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8381-852C", + "bytes": 62608 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.051.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8381-852C", + "bytes": 62956 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.051.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8381-852C", + "bytes": 63460 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.051.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8381-852C", + "bytes": 64476 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.051.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8381-852C", + "bytes": 65484 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.051.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8381-852C", + "bytes": 66132 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.051.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8381-852C", + "bytes": 65568 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.052.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+852D-86D8", + "bytes": 71844 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.052.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+852D-86D8", + "bytes": 74224 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.052.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+852D-86D8", + "bytes": 74864 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.052.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+852D-86D8", + "bytes": 75288 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.052.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+852D-86D8", + "bytes": 76184 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.052.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+852D-86D8", + "bytes": 77392 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.052.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+852D-86D8", + "bytes": 77828 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.052.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+852D-86D8", + "bytes": 77628 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.053.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+86D9-8884", + "bytes": 71948 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.053.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+86D9-8884", + "bytes": 72828 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.053.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+86D9-8884", + "bytes": 72804 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.053.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+86D9-8884", + "bytes": 72840 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.053.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+86D9-8884", + "bytes": 73828 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.053.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+86D9-8884", + "bytes": 74344 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.053.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+86D9-8884", + "bytes": 74924 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.053.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+86D9-8884", + "bytes": 74212 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.054.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8885-898A, U+898C-8A31", + "bytes": 64860 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.054.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8885-898A, U+898C-8A31", + "bytes": 66864 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.054.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8885-898A, U+898C-8A31", + "bytes": 67084 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.054.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8885-898A, U+898C-8A31", + "bytes": 66368 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.054.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8885-898A, U+898C-8A31", + "bytes": 67940 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.054.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8885-898A, U+898C-8A31", + "bytes": 67940 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.054.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8885-898A, U+898C-8A31", + "bytes": 68564 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.054.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8885-898A, U+898C-8A31", + "bytes": 67296 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.055.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8A32-8BDD", + "bytes": 60444 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.055.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8A32-8BDD", + "bytes": 61732 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.055.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8A32-8BDD", + "bytes": 62412 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.055.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8A32-8BDD", + "bytes": 62868 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.055.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8A32-8BDD", + "bytes": 63332 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.055.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8A32-8BDD", + "bytes": 63708 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.055.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8A32-8BDD", + "bytes": 64304 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.055.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8A32-8BDD", + "bytes": 63980 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.056.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8BDE-8C9C, U+8C9E-8D8A", + "bytes": 76376 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.056.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8BDE-8C9C, U+8C9E-8D8A", + "bytes": 78132 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.056.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8BDE-8C9C, U+8C9E-8D8A", + "bytes": 78660 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.056.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8BDE-8C9C, U+8C9E-8D8A", + "bytes": 78980 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.056.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8BDE-8C9C, U+8C9E-8D8A", + "bytes": 80332 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.056.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8BDE-8C9C, U+8C9E-8D8A", + "bytes": 81076 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.056.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8BDE-8C9C, U+8C9E-8D8A", + "bytes": 81180 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.056.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8BDE-8C9C, U+8C9E-8D8A", + "bytes": 80484 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.057.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8D8B-8EC9, U+8ECB-8F37", + "bytes": 63716 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.057.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8D8B-8EC9, U+8ECB-8F37", + "bytes": 64356 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.057.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8D8B-8EC9, U+8ECB-8F37", + "bytes": 64528 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.057.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8D8B-8EC9, U+8ECB-8F37", + "bytes": 64592 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.057.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8D8B-8EC9, U+8ECB-8F37", + "bytes": 65520 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.057.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8D8B-8EC9, U+8ECB-8F37", + "bytes": 65832 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.057.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8D8B-8EC9, U+8ECB-8F37", + "bytes": 66588 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.057.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8D8B-8EC9, U+8ECB-8F37", + "bytes": 65532 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.058.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8F38-90E3", + "bytes": 63852 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.058.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8F38-90E3", + "bytes": 65640 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.058.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8F38-90E3", + "bytes": 65416 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.058.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8F38-90E3", + "bytes": 64776 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.058.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8F38-90E3", + "bytes": 66152 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.058.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8F38-90E3", + "bytes": 66420 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.058.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8F38-90E3", + "bytes": 66744 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.058.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8F38-90E3", + "bytes": 64816 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.059.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+90E4-91C5, U+91C7-9290", + "bytes": 61284 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.059.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+90E4-91C5, U+91C7-9290", + "bytes": 63192 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.059.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+90E4-91C5, U+91C7-9290", + "bytes": 63256 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.059.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+90E4-91C5, U+91C7-9290", + "bytes": 62404 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.059.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+90E4-91C5, U+91C7-9290", + "bytes": 65080 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.059.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+90E4-91C5, U+91C7-9290", + "bytes": 66452 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.059.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+90E4-91C5, U+91C7-9290", + "bytes": 67080 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.059.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+90E4-91C5, U+91C7-9290", + "bytes": 65388 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.060.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+9291-943C", + "bytes": 72488 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.060.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+9291-943C", + "bytes": 75368 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.060.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+9291-943C", + "bytes": 75028 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.060.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+9291-943C", + "bytes": 73264 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.060.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+9291-943C", + "bytes": 77848 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.060.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+9291-943C", + "bytes": 80320 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.060.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+9291-943C", + "bytes": 81672 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.060.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+9291-943C", + "bytes": 79428 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.061.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+943D-9576, U+9578-957F, U+9581-95EA", + "bytes": 90480 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.061.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+943D-9576, U+9578-957F, U+9581-95EA", + "bytes": 94492 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.061.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+943D-9576, U+9578-957F, U+9581-95EA", + "bytes": 95124 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.061.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+943D-9576, U+9578-957F, U+9581-95EA", + "bytes": 94068 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.061.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+943D-9576, U+9578-957F, U+9581-95EA", + "bytes": 97776 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.061.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+943D-9576, U+9578-957F, U+9581-95EA", + "bytes": 99596 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.061.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+943D-9576, U+9578-957F, U+9581-95EA", + "bytes": 101056 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.061.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+943D-9576, U+9578-957F, U+9581-95EA", + "bytes": 97472 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.062.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+95EB-9796", + "bytes": 66036 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.062.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+95EB-9796", + "bytes": 67512 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.062.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+95EB-9796", + "bytes": 67804 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.062.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+95EB-9796", + "bytes": 68160 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.062.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+95EB-9796", + "bytes": 68996 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.062.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+95EB-9751, U+9753-9796", + "bytes": 69180 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.062.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+95EB-9796", + "bytes": 69564 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.062.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+95EB-9796", + "bytes": 69080 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.063.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946", + "bytes": 70852 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.063.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946", + "bytes": 73724 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.063.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946", + "bytes": 73816 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.063.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946", + "bytes": 73932 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.063.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946", + "bytes": 75428 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.063.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946", + "bytes": 76176 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.063.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946", + "bytes": 77156 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.063.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+9797-97CA, U+97CC-9800, U+9802-98A7, U+98A9-98DA, U+98DC-9946", + "bytes": 74728 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.064.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+9947-99AB, U+99AD-9AF3", + "bytes": 77456 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.064.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+9947-99AB, U+99AD-9AF3", + "bytes": 79276 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.064.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+9947-99AB, U+99AD-9AF3", + "bytes": 79840 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.064.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+9947-99AB, U+99AD-9AF3", + "bytes": 79784 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.064.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+9947-99AB, U+99AD-9AF3", + "bytes": 81584 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.064.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+9947-99AB, U+99AD-9AF3", + "bytes": 82240 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.064.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+9947-99AB, U+99AD-9AF3", + "bytes": 83684 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.064.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+9947-99AB, U+99AD-9AF3", + "bytes": 82576 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.065.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1", + "bytes": 74300 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.065.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1", + "bytes": 78484 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.065.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1", + "bytes": 78748 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.065.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1", + "bytes": 78016 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.065.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1", + "bytes": 81020 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.065.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1", + "bytes": 80788 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.065.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1", + "bytes": 80960 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.065.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+9AF4-9B24, U+9B26-9B59, U+9B5B-9CA1", + "bytes": 78008 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.066.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+9CA2-9E4D", + "bytes": 79996 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.066.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+9CA2-9E4D", + "bytes": 83000 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.066.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+9CA2-9E4D", + "bytes": 82720 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.066.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+9CA2-9E4D", + "bytes": 81160 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.066.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+9CA2-9E4D", + "bytes": 85636 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.066.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+9CA2-9E4D", + "bytes": 86776 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.066.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+9CA2-9E4D", + "bytes": 87460 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.066.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+9CA2-9E4D", + "bytes": 84860 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.067.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF", + "bytes": 82836 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.067.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF", + "bytes": 86348 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.067.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF", + "bytes": 87304 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.067.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF", + "bytes": 87168 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.067.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF", + "bytes": 89928 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.067.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF", + "bytes": 90924 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.067.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF", + "bytes": 91868 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.067.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+9E4E-9E74, U+9E76-9EA4, U+9EA6-9EFC, U+9EFE-9F49, U+9F4B-9F51, U+9F53-9F8C, U+9F8E-9F9B, U+9F9D-9FFF", + "bytes": 89500 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Thin.068.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93", + "bytes": 71372 + }, + { + "file": "FluxerSansSC/FluxerSansSC-ExtraLight.068.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93", + "bytes": 72920 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Light.068.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93", + "bytes": 73156 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Regular.068.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93", + "bytes": 72656 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Text.068.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93", + "bytes": 73896 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Medium.068.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93", + "bytes": 74244 + }, + { + "file": "FluxerSansSC/FluxerSansSC-SemiBold.068.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93", + "bytes": 74444 + }, + { + "file": "FluxerSansSC/FluxerSansSC-Bold.068.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+E78D-E795, U+E7C7-E7C8, U+E7E7-E7F3, U+E815-E864, U+F92C, U+F979, U+FA0C-FA0F, U+FA11, U+FA13-FA14, U+FA18, U+FA1F-FA21, U+FA23-FA24, U+FA27-FA29, U+FE10-FE18, U+FE30-FE31, U+FE33-FE44, U+FE47-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF5E, U+FFE0-FFE5, U+20087, U+20089, U+200CC, U+20164, U+20509, U+20676, U+2099D, U+20CD0, U+2139A, U+21413, U+215D7, U+2298F, U+235CB, U+23C97-23C98, U+23E23, U+241FE, U+249DB, U+24A7D, U+24AC9, U+25532, U+25562, U+255A8, U+25ED7, U+26221, U+2648D, U+26676, U+2677C, U+26B5C, U+26C21, U+27FF9, U+28408, U+28678, U+28695, U+287E0, U+28B49, U+28C47, U+28C4F, U+28C51, U+28C54, U+28E99, U+29F7E, U+29F83, U+29F8C, U+2A7DD, U+2A8FB, U+2A917, U+2AA30, U+2AA36, U+2AA58, U+2AFA2, U+2B127-2B128, U+2B137-2B138, U+2B1ED, U+2B300, U+2B363, U+2B36F, U+2B372, U+2B37D, U+2B404, U+2B410, U+2B413, U+2B461, U+2B4E7, U+2B4EF, U+2B4F6, U+2B4F9, U+2B50D-2B50E, U+2B536, U+2B5AE-2B5AF, U+2B5B3, U+2B5E7, U+2B5F4, U+2B61C-2B61D, U+2B626-2B628, U+2B62A, U+2B62C, U+2B695-2B696, U+2B6AD, U+2B6ED, U+2B7A9, U+2B7C5, U+2B7E6, U+2B7F9, U+2B7FC, U+2B806, U+2B80A, U+2B81C, U+2B8B8, U+2BAC7, U+2BB5F, U+2BB62, U+2BB7C, U+2BB83, U+2BC1B, U+2BD77, U+2BD87, U+2BDF7, U+2BE29, U+2C029-2C02A, U+2C0A9, U+2C0CA, U+2C1D5, U+2C1D9, U+2C1F9, U+2C27C, U+2C288, U+2C2A4, U+2C317, U+2C35B, U+2C361, U+2C364, U+2C488, U+2C494, U+2C497, U+2C542, U+2C613, U+2C618, U+2C621, U+2C629, U+2C62B-2C62D, U+2C62F, U+2C642, U+2C64A-2C64B, U+2C72C, U+2C72F, U+2C79F, U+2C7C1, U+2C7FD, U+2C8D9, U+2C8DE, U+2C8E1, U+2C8F3, U+2C907, U+2C90A, U+2C91D, U+2CA02, U+2CA0E, U+2CA7D, U+2CAA9, U+2CB29, U+2CB2D-2CB2E, U+2CB31, U+2CB38-2CB39, U+2CB3B, U+2CB3F, U+2CB41, U+2CB4A, U+2CB4E, U+2CB5A-2CB5B, U+2CB64, U+2CB69, U+2CB6C, U+2CB6F, U+2CB73, U+2CB76, U+2CB78, U+2CB7C, U+2CBB1, U+2CBBF-2CBC0, U+2CBCE, U+2CC56, U+2CC5F, U+2CCF5-2CCF6, U+2CCFD, U+2CCFF, U+2CD02-2CD03, U+2CD0A, U+2CD8B, U+2CD8D, U+2CD8F-2CD90, U+2CD9F-2CDA0, U+2CDA8, U+2CDAD-2CDAE, U+2CDD5, U+2CE18, U+2CE1A, U+2CE23, U+2CE26, U+2CE2A, U+2CE7C, U+2CE88, U+2CE93", + "bytes": 73248 + } + ] + }, + { + "id": "FluxerSansTC", + "cssFamily": "Fluxer Sans TC", + "stylesheet": "css/script-tc.css", + "mode": "subset", + "latinCore": false, + "chunks": 50, + "faces": [ + { + "file": "FluxerSansTC/FluxerSansTC-Thin.000.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595", + "bytes": 46172 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.000.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595", + "bytes": 49888 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.000.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595", + "bytes": 50392 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.000.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595", + "bytes": 48348 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.000.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595", + "bytes": 51548 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.000.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595", + "bytes": 50504 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.000.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595", + "bytes": 50556 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.000.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A0, U+00A2-00A3, U+00A5, U+00A8-00A9, U+00AC, U+00AE-00B0, U+00B7, U+00C0-00C1, U+00C8-00CA, U+00D2-00D3, U+00E0-00E1, U+00E8-00EA, U+00EC-00ED, U+00F2-00F3, U+00F8-00FA, U+00FC, U+0100-0101, U+0112-0113, U+011A-011B, U+012B, U+014B-014D, U+0153, U+016B, U+01CD-01CE, U+01D0-01D2, U+01D4, U+01D6, U+01D8, U+01DA, U+01DC, U+0250-0251, U+0254, U+025B, U+0261, U+026A, U+0275, U+0283, U+028A, U+02BB-02BC, U+02C6-02C7, U+02C9-02CB, U+02CD, U+02D9, U+0300, U+0302, U+0304, U+0308, U+030C, U+0332, U+0336, U+0391-03A1, U+03A3-03A9, U+03B1-03C1, U+03C3-03C9, U+0401, U+0410-044F, U+0451, U+1EBE-1EC1, U+2002, U+2011-2015, U+2018-2019, U+201C-201D, U+2022, U+2025-2026, U+2032, U+2035, U+203B, U+20AC, U+2103, U+2105, U+2109, U+2116, U+2121-2122, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21BB, U+21C4, U+21C6, U+21E7, U+2215, U+2219-221A, U+221E-2220, U+2223, U+2225, U+2229-222B, U+222E, U+2234-2235, U+223C, U+2252, U+2260-2261, U+2266-2267, U+2295, U+2299, U+22A5, U+22BF, U+22EF, U+2329-232A, U+23DA-23DB, U+2400-241F, U+2421, U+2460-2469, U+2474-247D, U+24C7, U+2500, U+2502, U+250C, U+2510, U+2514, U+2518, U+251C, U+2524, U+252C, U+2534, U+253C, U+2550-2574, U+2581-258F, U+2593-2595", + "bytes": 47516 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.001.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129", + "bytes": 39704 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.001.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129", + "bytes": 40696 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.001.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129", + "bytes": 40780 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.001.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129", + "bytes": 37428 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.001.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129", + "bytes": 43344 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.001.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129", + "bytes": 40908 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.001.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129", + "bytes": 40960 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.001.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+25A0-25A1, U+25B2-25B3, U+25BC-25BD, U+25C6-25C7, U+25CB, U+25CE-25CF, U+25E2-25E5, U+2605-2606, U+2609, U+2640-2642, U+273D, U+2B0E-2B11, U+2E80, U+2E84, U+2E86-2E88, U+2E8A, U+2E8C-2E8D, U+2E95, U+2E9C-2E9D, U+2EA5, U+2EA7, U+2EAA, U+2EAC, U+2EAE, U+2EB6, U+2EBC, U+2EBE, U+2EC6, U+2ECA, U+2ECC-2ECD, U+2ECF, U+2ED6-2ED7, U+2EDE, U+2EE3, U+2F00-2FD5, U+3000-3003, U+3005-3012, U+3014-3015, U+301D-301E, U+3021-3029, U+3038-303A, U+3041-3093, U+309B-309E, U+30A1-30F6, U+30FC-30FE, U+3105-3129", + "bytes": 39720 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.002.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 4416 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.002.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 4504 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.002.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 4548 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.002.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 4464 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.002.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 4488 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.002.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 4460 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.002.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 4472 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.002.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+31C0-31CF, U+3231, U+32A3, U+338E-338F, U+339C-339E, U+33A1, U+33C4, U+33CE, U+33D1-33D2, U+33D5", + "bytes": 4456 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.003.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C", + "bytes": 93784 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.003.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C", + "bytes": 95504 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.003.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C", + "bytes": 95980 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.003.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C", + "bytes": 96184 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.003.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C", + "bytes": 97996 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.003.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C", + "bytes": 98832 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.003.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C", + "bytes": 99672 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.003.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+3435, U+3440, U+344A, U+344C, U+3464, U+3473, U+347A, U+347D-347E, U+3493, U+3496, U+34A5, U+34AF, U+34BC, U+34C1, U+34C8, U+34DF, U+34E4, U+34E6, U+34FB, U+3506, U+353E, U+3551, U+3553, U+3559, U+3561, U+356D, U+3570, U+3572, U+3577-3578, U+3584, U+3597-3598, U+35A1, U+35A5, U+35AD, U+35BF, U+35C1, U+35C5, U+35C7, U+35CA, U+35CE, U+35D2, U+35D6, U+35DB, U+35DD, U+35F1-35F3, U+35FB, U+35FE, U+3609, U+3618, U+361A, U+361D, U+3623, U+3625, U+362D, U+3635, U+3639, U+363E, U+3647-3649, U+364E, U+365F, U+3661, U+367A, U+3681, U+369A, U+36A5, U+36AA, U+36AC, U+36B0-36B1, U+36B5, U+36B9, U+36BC, U+36C1, U+36C3-36C5, U+36C7-36C8, U+36D3-36D4, U+36D6, U+36DD, U+36E1-36E2, U+36E5-36E6, U+36F5, U+3701, U+3703, U+3708, U+370A, U+370D, U+371C, U+3722-3723, U+3725, U+372C-372D, U+3730, U+3732-3733, U+373A, U+3740, U+3743, U+3762, U+376F, U+3797, U+37A0, U+37B9, U+37BE, U+37D6, U+37F2, U+37F8, U+37FB, U+380F, U+3819, U+3820, U+382D, U+3836, U+3838, U+3863, U+3875, U+38A0, U+38C3, U+38CC, U+38D1, U+38D4, U+38FA, U+3908, U+3914, U+3927, U+3932, U+393F, U+394D, U+3963, U+3978, U+3980, U+3989-398A, U+3992, U+3999, U+399B, U+39A1, U+39A4, U+39B8, U+39DC, U+39E2, U+39E5, U+39EC, U+39F8, U+39FB, U+39FE, U+3A01, U+3A03, U+3A06, U+3A17-3A18, U+3A29-3A2A, U+3A34, U+3A4B, U+3A52, U+3A57, U+3A5C, U+3A5E, U+3A66-3A67, U+3A97, U+3AAB, U+3ABD, U+3ADE, U+3AE0, U+3AF0, U+3AF2, U+3AF5, U+3AFB, U+3B0E, U+3B19, U+3B22, U+3B2B, U+3B39, U+3B42, U+3B58, U+3B60, U+3B71-3B72, U+3B7B-3B7C, U+3B80, U+3B95-3B96, U+3B99, U+3BA1, U+3BBC, U+3BBE, U+3BC2, U+3BC4, U+3BD7, U+3BDD, U+3BEC, U+3BF2-3BF4, U+3C0D, U+3C11, U+3C15, U+3C18, U+3C54, U+3C8B, U+3CCB, U+3CCD, U+3CD1, U+3CD6, U+3CDC, U+3CEB, U+3CEF, U+3D12-3D13, U+3D1D, U+3D32, U+3D3B, U+3D46, U+3D4C, U+3D4E, U+3D51, U+3D5F, U+3D62, U+3D69-3D6A, U+3D6F, U+3D75, U+3D7D, U+3D85, U+3D88, U+3D8A, U+3D8F, U+3D91, U+3DA5, U+3DAD, U+3DB4, U+3DBF, U+3DC6-3DC7, U+3DC9, U+3DCC-3DCD, U+3DD3, U+3DDB, U+3DE7-3DE8, U+3DEB, U+3DF3-3DF4, U+3DF7, U+3DFC-3DFD, U+3E06, U+3E40, U+3E43, U+3E48, U+3E55, U+3E74, U+3EA8-3EAA, U+3EAD, U+3EB1, U+3EB8, U+3EBF, U+3EC2, U+3EC7, U+3ECA, U+3ECC, U+3ED0-3ED1, U+3ED6-3ED7, U+3EDA-3EDB, U+3EDE, U+3EE1-3EE2, U+3EE7, U+3EE9, U+3EEB-3EEC, U+3EF0, U+3EF3-3EF4, U+3EFA, U+3EFC, U+3EFF-3F00, U+3F04, U+3F06-3F07, U+3F0E, U+3F53, U+3F58-3F59, U+3F63, U+3F7C, U+3F93, U+3FC0, U+3FC8, U+3FD7, U+3FDC, U+3FE5, U+3FED, U+3FF9-3FFA, U+4004, U+4009, U+401D, U+4039, U+4045, U+4053, U+4057, U+4062, U+4065, U+406A, U+406F, U+4071, U+40A8, U+40B4, U+40BB, U+40BF, U+40C8, U+40D8, U+40DF, U+40F8, U+40FA, U+4102-4104, U+4109, U+410E, U+4131-4132, U+4167, U+416C, U+416E, U+417C, U+417F, U+4181, U+4190, U+41B2, U+41C4, U+41CA, U+41CF, U+41DB, U+41ED, U+41EF, U+41F9, U+4211, U+4223, U+4240, U+4260, U+426A, U+4276, U+427A, U+428C, U+4294, U+42A2, U+42B5, U+42B9, U+42BC, U+42F4, U+42FB-42FC, U+430A, U+432B, U+436E, U+4397, U+439A, U+43BA, U+43C1, U+43D9, U+43DF, U+43ED, U+43F0, U+43F2, U+4401-4402, U+4413, U+4425, U+442D, U+447A, U+448F, U+4491, U+449F-44A0, U+44A2, U+44B0, U+44B7, U+44BD, U+44C0, U+44C3, U+44C5, U+44CE, U+44DD-44DF, U+44E1, U+44E4, U+44E9-44EC, U+44F4, U+4503-4504, U+4509, U+450B, U+4516, U+451B, U+451D, U+4523, U+4527, U+452E, U+4533, U+4536, U+453B, U+453D, U+453F, U+4543, U+4551-4552, U+4555, U+4558, U+455C, U+4561-4562, U+456A, U+456D, U+4577-4578, U+4585, U+45A6, U+45AC, U+45B3, U+45DA, U+45E9-45EA, U+4603, U+4606, U+460F, U+4615, U+4617, U+465B, U+467A, U+4680, U+46A1, U+46AE, U+46BB, U+46CF-46D0, U+46F5, U+46F7, U+4713, U+4718, U+4736, U+4744, U+474E-474F, U+477C, U+4798, U+47A6, U+47B6, U+47D5, U+47ED, U+47F4, U+4800, U+480B, U+4837, U+485D, U+4871, U+489B, U+48AD-48AE, U+48B4, U+48D0, U+48DD, U+48ED, U+48F3, U+48FA, U+4906, U+4911, U+491E, U+4925, U+492A, U+492D, U+492F-4930, U+4935, U+493C, U+493E, U+4945, U+4951, U+4953, U+4965, U+496A, U+4972, U+4989, U+49A1, U+49A7, U+49DF, U+49E5, U+49E7, U+4A0F, U+4A1D, U+4A24, U+4A35, U+4A96, U+4AA4, U+4AB4, U+4AB8, U+4AD1, U+4AE4, U+4AFF, U+4B10, U+4B19, U+4B20, U+4B2C, U+4B37, U+4B6F-4B70, U+4B72, U+4B7B, U+4B7E, U+4B8E, U+4B90, U+4B93, U+4B96-4B97, U+4B9D, U+4BBD-4BBE, U+4BC0, U+4C04, U+4C07, U+4C0E, U+4C32, U+4C3B, U+4C3E, U+4C40, U+4C47, U+4C57, U+4C5B, U+4C6D, U+4C77, U+4C7B, U+4C7D, U+4C81, U+4C85, U+4CA4, U+4CAE, U+4CB0, U+4CB7, U+4CCD, U+4CE1-4CE2, U+4CED, U+4D07, U+4D09, U+4D10, U+4D34, U+4D76-4D77, U+4D89, U+4D91, U+4D9C", + "bytes": 99804 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.004.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8", + "bytes": 50400 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.004.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8", + "bytes": 51160 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.004.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8", + "bytes": 51204 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.004.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8", + "bytes": 51144 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.004.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8", + "bytes": 52312 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.004.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8", + "bytes": 52284 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.004.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8", + "bytes": 52904 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.004.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+4E00-4E01, U+4E03-4E04, U+4E07-4E11, U+4E14-4E16, U+4E18-4E1A, U+4E1C, U+4E1E-4E1F, U+4E21, U+4E24, U+4E26, U+4E28, U+4E2A-4E33, U+4E36-4E39, U+4E3B-4E3D, U+4E3F, U+4E41-4E43, U+4E45, U+4E47-4E49, U+4E4B, U+4E4D-4E4F, U+4E52-4E53, U+4E56, U+4E58-4E5F, U+4E69-4E6A, U+4E73, U+4E78, U+4E7E-4E89, U+4E8B-4E8E, U+4E91-4E95, U+4E98-4E9B, U+4E9E-4EA6, U+4EA8, U+4EAB-4EAE, U+4EB3, U+4EB6-4EB7, U+4EB9-4EBC, U+4EBF-4EC4, U+4EC6-4ECB, U+4ECD-4ECE, U+4ED4-4EDA, U+4EDC-4EDF, U+4EE1, U+4EE3-4EE5, U+4EE8-4EEB, U+4EEE, U+4EF0-4EF8, U+4EFB, U+4EFD-4F05, U+4F08-4F0B, U+4F0D-4F15, U+4F17-4F1A, U+4F1D, U+4F22, U+4F28-4F29, U+4F2C-4F2D, U+4F2F-4F30, U+4F32-4F34, U+4F36-4F3F, U+4F41-4F43, U+4F45-4F49, U+4F4B-4F64, U+4F67, U+4F69-4F6C, U+4F6E-4F70, U+4F72-4F8B, U+4F8D, U+4F8F-4F92, U+4F94-4F98, U+4F9A-4F9E, U+4FA2, U+4FA8, U+4FAB, U+4FAE-4FB0, U+4FB2-4FB7, U+4FB9-4FBB, U+4FBD, U+4FBF-4FC5, U+4FC7-4FD1, U+4FD3-4FD4, U+4FD6-4FE1, U+4FE4-4FE5, U+4FEC, U+4FEE-4FFA, U+4FFD-4FFE, U+5000, U+5003, U+5005-5009, U+500B-500F, U+5011-501C, U+501E-5023, U+5025-5031, U+5033-5035, U+5037, U+503B-503C, U+5040-5041, U+5043, U+5045-504F, U+5051, U+5053, U+5055-5058, U+505A-5066, U+5068-5070, U+5072-5077, U+507A, U+507D, U+5080-5083, U+5085, U+5087-5088, U+508B-508E, U+5090-5092, U+5094-5096, U+5098-509E, U+50A2-50A3, U+50A6, U+50AC-50B8", + "bytes": 52764 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.005.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370", + "bytes": 64084 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.005.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370", + "bytes": 65236 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.005.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370", + "bytes": 65432 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.005.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370", + "bytes": 65476 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.005.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370", + "bytes": 66508 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.005.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370", + "bytes": 66812 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.005.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370", + "bytes": 67380 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.005.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+50BA-50BF, U+50C1-50C2, U+50C4-50CB, U+50CD-50D1, U+50D3-50D7, U+50D9-50DB, U+50DD-50E1, U+50E3-50EA, U+50EC-50F1, U+50F3-50F6, U+50F8-50F9, U+50FB-510E, U+5110-5115, U+5117-5118, U+511A, U+511C, U+511F-5122, U+5124-5126, U+5129-512B, U+512D-512E, U+5130-5135, U+5137-513D, U+513F-5141, U+5143-5149, U+514B-514D, U+5151-5152, U+5154-5157, U+5159-5163, U+5165, U+5167-516E, U+5171, U+5174-5179, U+517C, U+5180, U+5182, U+5186-518A, U+518D, U+518F, U+5191-5198, U+519A, U+519C, U+519E, U+51A0, U+51A2, U+51A4-51A5, U+51A7-51A8, U+51AA-51AC, U+51AE, U+51B0-51B9, U+51BC-51BE, U+51C3-51D4, U+51D7-51D8, U+51DB-51E2, U+51E4, U+51ED, U+51F0-51F1, U+51F3-51F6, U+51F8-51FA, U+51FC-51FE, U+5200-5203, U+5205-520C, U+520E, U+5210-5213, U+5216-5217, U+521C-5221, U+5224-522A, U+522E, U+5230-5238, U+523A-523C, U+5241, U+5243-5244, U+5246-5247, U+5249-524F, U+5252, U+5254-5257, U+5259-5262, U+5268-526F, U+5272-5275, U+5277-527D, U+527F-5284, U+5287-528D, U+528F-5291, U+5293-5294, U+5296-529B, U+529F-52A1, U+52A3-52A4, U+52A6, U+52A8-52AE, U+52B5, U+52B9, U+52BB-52BC, U+52BE, U+52C0-52C3, U+52C5, U+52C7, U+52C9, U+52CC-52CD, U+52D0-52D3, U+52D5-52D9, U+52DB, U+52DD-52E4, U+52E6, U+52E9, U+52EB, U+52EF-52F1, U+52F3-52F5, U+52F7-52FC, U+52FE-52FF, U+5301, U+5305-5306, U+5308-530B, U+530D-5312, U+5315-5317, U+5319-531A, U+531C-531D, U+531F-5324, U+5327, U+532A, U+532C-532D, U+532F-5334, U+5337-5339, U+533B-5345, U+5347-534A, U+534C-534E, U+5351-5354, U+5357, U+535A, U+535C-5361, U+5363-5364, U+5366-5367, U+5369, U+536C-5370", + "bytes": 67092 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.006.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA", + "bytes": 54736 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.006.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA", + "bytes": 55396 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.006.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA", + "bytes": 55432 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.006.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA", + "bytes": 55708 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.006.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA", + "bytes": 56520 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.006.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA", + "bytes": 56736 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.006.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA", + "bytes": 57152 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.006.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+5371-5375, U+5377-5379, U+537B-537F, U+5382, U+5384, U+538A, U+538E-538F, U+5392-5394, U+5396-539A, U+539C-53A0, U+53A2, U+53A4-53AE, U+53B0, U+53B2, U+53B4, U+53B6, U+53B9, U+53BB, U+53C1-53C3, U+53C5, U+53C8-53CD, U+53D0-53D2, U+53D4, U+53D6-53DB, U+53DF-53E6, U+53E8-53F3, U+53F5-53F8, U+53FB-53FC, U+53FE, U+5401, U+5403-5404, U+5406-5414, U+5416, U+5418-5421, U+5423-5439, U+543B-5443, U+5445-5448, U+544A-544F, U+5454, U+5460-546D, U+546F-5478, U+547A-5482, U+5484-5488, U+548B-5498, U+549A, U+549C, U+549E, U+54A0-54B4, U+54B6-54C9, U+54CB-54D0, U+54D6, U+54DA, U+54DE, U+54E0-54EB, U+54ED-54EF, U+54F1-54F3, U+54F7-54F8, U+54FA-54FD, U+54FF, U+5501-5514, U+5517-5518, U+551A, U+551E, U+5523, U+5525-5528, U+552A-5539, U+553B-553C, U+553E-5541, U+5543-554B, U+554D-5553, U+5555-5557, U+555C-555F, U+5561-5566, U+5569-556B, U+5571-5573, U+5575-5577, U+5579, U+557B-5584, U+5586-5595, U+5598-559A, U+559C-559D, U+559F, U+55A1-55AE, U+55B0-55B5, U+55B9-55BC, U+55BF-55DF, U+55E1-55EA, U+55EC, U+55EF-55F2, U+55F5-55F7, U+55F9-55FA", + "bytes": 57220 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.007.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892", + "bytes": 66976 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.007.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892", + "bytes": 68256 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.007.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892", + "bytes": 68556 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.007.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892", + "bytes": 68764 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.007.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892", + "bytes": 69856 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.007.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892", + "bytes": 70240 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.007.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892", + "bytes": 70940 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.007.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+55FB-5602, U+5604-5606, U+5608-5609, U+560C-5617, U+561B-5623, U+5625, U+5627, U+5629-562A, U+562C-5630, U+5632-563B, U+563D-5643, U+5645-5646, U+5648-564A, U+564C-5650, U+5652-5654, U+5657-565A, U+565D-565E, U+5660-5666, U+5668-5674, U+5676-567C, U+567E-5687, U+5689-5690, U+5692-5693, U+5695, U+5697-569A, U+569C-569F, U+56A1, U+56A4-56A8, U+56AA-56AF, U+56B1-56B7, U+56B9, U+56BC-56C3, U+56C5-56C6, U+56C8-56CD, U+56D1, U+56D3-56D4, U+56D6-56D7, U+56DA-56DB, U+56DD-56E2, U+56E4-56E5, U+56E7, U+56EA-56EB, U+56ED-56F1, U+56F7, U+56F9-56FB, U+56FD, U+56FF-5704, U+5707-570D, U+5712-5716, U+5718, U+571A-5720, U+5722-5723, U+5728-572A, U+572C-5730, U+5732-5734, U+573B, U+573D-5743, U+5745-5747, U+5749-5752, U+5754, U+5757, U+575B, U+575F, U+5761-5762, U+5764, U+5766-576B, U+576D, U+576F-5777, U+577A-5780, U+5782-5783, U+5788, U+578A-578D, U+578F-5790, U+5793-5795, U+5797-57A5, U+57A7, U+57AA, U+57AE, U+57B3-57B6, U+57B8-57BF, U+57C1-57C4, U+57C6-57C8, U+57CB-57CC, U+57CE-57D0, U+57D2, U+57D4-57D5, U+57D7, U+57DC-57E7, U+57E9, U+57EC-57FE, U+5800-580E, U+5810, U+5812, U+5814, U+5818-5819, U+581B-582A, U+582C-583B, U+583D, U+583F-5840, U+5844, U+5847-584F, U+5851-5855, U+5857-585F, U+5862-5865, U+5868-5869, U+586B-586D, U+586F, U+5871-5876, U+5879-5883, U+5885-588B, U+588E-5892", + "bytes": 71084 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.008.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13", + "bytes": 73148 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.008.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13", + "bytes": 74948 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.008.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13", + "bytes": 74856 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.008.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13", + "bytes": 74192 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.008.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13", + "bytes": 76748 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.008.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13", + "bytes": 77468 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.008.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13", + "bytes": 77900 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.008.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+5893-5894, U+5896, U+5898-589A, U+589C-58A1, U+58A3, U+58A5-58AC, U+58AE-58B1, U+58B3, U+58B5-58B6, U+58BA-58BF, U+58C1-58C2, U+58C5-58C9, U+58CB, U+58CE-58D6, U+58D8-58E0, U+58E2-58E4, U+58E7-58E9, U+58EB-58EC, U+58EF-58F0, U+58F2-58F4, U+58F9-58FF, U+5902-5907, U+590A, U+590C-590F, U+5911-5912, U+5914-5917, U+5919-591A, U+591C-591D, U+591F-5920, U+5922, U+5924-5925, U+5927, U+5929-592F, U+5931-5932, U+5934, U+5937-5938, U+593C, U+593E, U+5940, U+5944-5945, U+5947-594A, U+594E-5951, U+5953-5955, U+5957-5958, U+595A, U+595C, U+5960-5962, U+5965, U+5967, U+5969-596B, U+596D-596E, U+5970-5979, U+597B-5985, U+5989-598A, U+598D-5990, U+5992-5994, U+5996-599A, U+599D-59A8, U+59AC, U+59AE-59C1, U+59C3-59D4, U+59D6, U+59D8-59DE, U+59E0-59E1, U+59E3-59E6, U+59E8-5A03, U+5A09-5A0D, U+5A0F, U+5A11-5A13, U+5A15-5A1C, U+5A1E-5A21, U+5A23-5A25, U+5A27, U+5A29-5A2E, U+5A33, U+5A35-5A39, U+5A3C-5A3E, U+5A40-5A4A, U+5A4C-5A4D, U+5A50-5A6E, U+5A70-5A71, U+5A77-5A7F, U+5A81-5A84, U+5A86, U+5A88, U+5A8A-5A8C, U+5A8E-5A97, U+5A99-5AA2, U+5AA4-5AA7, U+5AA9-5AAC, U+5AAE-5AC4, U+5AC6-5ACF, U+5AD1, U+5AD3, U+5AD5-5AE6, U+5AE8-5AEE, U+5AF0, U+5AF2-5AFB, U+5AFD-5AFF, U+5B01-5B03, U+5B05, U+5B07-5B09, U+5B0B-5B0D, U+5B0F-5B11, U+5B13", + "bytes": 76920 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.009.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5", + "bytes": 64380 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.009.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5", + "bytes": 65800 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.009.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5", + "bytes": 66104 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.009.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5", + "bytes": 66512 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.009.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5", + "bytes": 67560 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.009.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5", + "bytes": 67884 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.009.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5", + "bytes": 68288 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.009.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+5B14-5B17, U+5B19-5B1B, U+5B1D-5B21, U+5B23-5B28, U+5B2A-5B30, U+5B32, U+5B34, U+5B38, U+5B3C-5B41, U+5B43-5B48, U+5B4A-5B51, U+5B53-5B58, U+5B5A-5B5D, U+5B5F, U+5B62-5B66, U+5B68-5B69, U+5B6B-5B6E, U+5B70-5B78, U+5B7A-5B7D, U+5B7F-5B85, U+5B87-5B89, U+5B8B-5B8C, U+5B8E-5B90, U+5B92-5B93, U+5B95-5B9F, U+5BA2-5BA8, U+5BAA, U+5BAC-5BAE, U+5BB0, U+5BB3-5BB9, U+5BBF-5BC7, U+5BCA-5BCE, U+5BD0-5BD9, U+5BDB, U+5BDE-5BEC, U+5BEE-5BF3, U+5BF5-5BF6, U+5BF8, U+5BFA, U+5BFF, U+5C01, U+5C03-5C05, U+5C07-5C16, U+5C1A, U+5C1C, U+5C1E-5C20, U+5C22-5C25, U+5C28, U+5C2A, U+5C2C, U+5C30-5C31, U+5C33, U+5C37-5C3C, U+5C3E-5C41, U+5C44-5C51, U+5C53-5C56, U+5C58-5C59, U+5C5C-5C5E, U+5C60, U+5C62-5C65, U+5C67-5C6A, U+5C6C-5C6F, U+5C71, U+5C73-5C74, U+5C78-5C7C, U+5C7E, U+5C85-5C86, U+5C88-5C8D, U+5C8F-5C95, U+5C99-5C9A, U+5C9C-5CB1, U+5CB3, U+5CB5-5CB8, U+5CBA, U+5CC1-5CC2, U+5CC6-5CCC, U+5CCE-5CDB, U+5CDE-5CDF, U+5CE5, U+5CE8-5CEA, U+5CEC-5CF1, U+5CF4-5CF9, U+5CFB-5CFD, U+5CFF-5D01, U+5D06-5D07, U+5D0B-5D12, U+5D14-5D1B, U+5D1D-5D20, U+5D22-5D29, U+5D2C, U+5D2E-5D3A, U+5D3C-5D43, U+5D45-5D4C, U+5D4E, U+5D50-5D52, U+5D55-5D57, U+5D59, U+5D5B, U+5D5E, U+5D62-5D63, U+5D65, U+5D67-5D69, U+5D6B-5D6C, U+5D6F-5D72, U+5D74, U+5D77-5D82, U+5D84-5D8B, U+5D8D-5D8E, U+5D92-5D95, U+5D97, U+5D99-5D9A, U+5D9C-5DA2, U+5DA4, U+5DA7-5DB2, U+5DB4-5DB5", + "bytes": 68116 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.010.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067", + "bytes": 64200 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.010.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067", + "bytes": 65816 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.010.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067", + "bytes": 65824 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.010.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067", + "bytes": 65704 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.010.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067", + "bytes": 66932 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.010.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067", + "bytes": 67192 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.010.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067", + "bytes": 67868 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.010.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+5DB6-5DBA, U+5DBC-5DBD, U+5DC0-5DC3, U+5DC6-5DC7, U+5DC9, U+5DCB, U+5DCD, U+5DCF, U+5DD1-5DD2, U+5DD4-5DD8, U+5DDB, U+5DDD-5DE2, U+5DE5-5DE8, U+5DEB, U+5DEE, U+5DF0-5DF5, U+5DF7, U+5DF9, U+5DFD-5DFF, U+5E02-5E04, U+5E06, U+5E09-5E0C, U+5E0E, U+5E11-5E12, U+5E14-5E1B, U+5E1D, U+5E1F-5E25, U+5E28-5E29, U+5E2B, U+5E2D-5E2E, U+5E33-5E34, U+5E36-5E38, U+5E3D-5E3E, U+5E40-5E45, U+5E48, U+5E4A-5E4F, U+5E53-5E55, U+5E57-5E59, U+5E5B-5E63, U+5E66-5E70, U+5E72-5E76, U+5E78-5E80, U+5E82-5E84, U+5E86-5E8D, U+5E8F, U+5E92, U+5E95-5E97, U+5E99-5E9C, U+5EA0, U+5EA2-5EA8, U+5EAA-5EAE, U+5EB0-5EB9, U+5EBD-5EBE, U+5EC1-5EC2, U+5EC4-5ECE, U+5ED0-5EE3, U+5EE5-5EE9, U+5EEC, U+5EEE-5EEF, U+5EF1-5EF4, U+5EF6-5EFC, U+5EFE-5EFF, U+5F01-5F02, U+5F04-5F05, U+5F07-5F08, U+5F0A-5F0F, U+5F12-5F15, U+5F17-5F18, U+5F1A-5F1B, U+5F1D, U+5F1F, U+5F22-5F29, U+5F2D-5F2E, U+5F30-5F31, U+5F33, U+5F35-5F38, U+5F3A-5F3C, U+5F40, U+5F43-5F44, U+5F46, U+5F48-5F51, U+5F54, U+5F56-5F59, U+5F5C-5F5D, U+5F61-5F65, U+5F67, U+5F69-5F6D, U+5F6F-5F74, U+5F76-5F79, U+5F7B-5F83, U+5F85-5F8C, U+5F90-5F92, U+5F96-5F99, U+5F9B-5F9C, U+5F9E-5FA1, U+5FA4-5FAF, U+5FB1-5FB2, U+5FB5-5FB7, U+5FB9-5FC5, U+5FC9, U+5FCC-5FCD, U+5FCF-5FD2, U+5FD4-5FD9, U+5FDB, U+5FDD-5FE1, U+5FE3-5FE5, U+5FE8, U+5FEA-5FEB, U+5FED-5FEF, U+5FF1, U+5FF3-5FF5, U+5FF7-5FF8, U+5FFA-5FFB, U+5FFD, U+5FFF-6000, U+6009-6017, U+6019-601E, U+6020-602F, U+6031-6035, U+6037, U+6039, U+603B, U+6040-6047, U+6049-604A, U+604C-604D, U+6050, U+6052-6055, U+6058-605B, U+605D-605F, U+6062-6067", + "bytes": 67308 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.011.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2", + "bytes": 70876 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.011.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2", + "bytes": 72472 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.011.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2", + "bytes": 73136 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.011.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2", + "bytes": 72992 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.011.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2", + "bytes": 74688 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.011.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2", + "bytes": 75308 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.011.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2", + "bytes": 76348 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.011.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6068-6070, U+6072, U+6075, U+6077, U+607E-6081, U+6083-608A, U+608C-608E, U+6090, U+6092, U+6094-6097, U+609A-60A0, U+60A2-60A4, U+60A6-60A8, U+60B0-60C1, U+60C3-60CF, U+60D1, U+60D3-60D5, U+60D7-60E4, U+60E6-60EA, U+60F0-6101, U+6103-6110, U+6112-6116, U+6118-611D, U+611F-6120, U+6122-6123, U+6127-6129, U+612B-612C, U+612E-6130, U+6132, U+6134, U+6136-6137, U+613B, U+613D-6142, U+6144-6150, U+6152-6156, U+6158-6168, U+616A-616C, U+616E-6177, U+6179-617A, U+617C-617E, U+6180-6183, U+6187, U+6189-618E, U+6190-6196, U+6198-619D, U+619F, U+61A1-61A2, U+61A4, U+61A7-61BA, U+61BC, U+61BE-61C3, U+61C5-61CD, U+61CF-61D0, U+61D3, U+61D6, U+61D8, U+61DA, U+61DE-61E0, U+61E2-61EB, U+61ED-61EE, U+61F0-61F2, U+61F5-6201, U+6203-6204, U+6207-620A, U+620C-620E, U+6210-6212, U+6214-6216, U+6219-621B, U+621F-6225, U+6227, U+6229-622E, U+6230, U+6232-6234, U+6236-6237, U+6239-623A, U+623D-6243, U+6246-624E, U+6250-6254, U+6258-625C, U+625E, U+6260-6266, U+6268, U+626D-6274, U+6276-6277, U+6279-628A, U+628C, U+628E-6298, U+629D, U+62A4, U+62A6, U+62A8-62B1, U+62B3-62B6, U+62B8-62B9, U+62BB-62BF, U+62C1-62DC, U+62DF, U+62E5, U+62EB-62F2", + "bytes": 76288 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.012.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576", + "bytes": 77212 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.012.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576", + "bytes": 79032 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.012.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576", + "bytes": 79424 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.012.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576", + "bytes": 79968 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.012.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576", + "bytes": 80944 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.012.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576", + "bytes": 81064 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.012.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576", + "bytes": 81444 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.012.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+62F3-6303, U+6307-6309, U+630B-6311, U+6313-6316, U+6318, U+6328-632F, U+6331-633E, U+6340-6351, U+6354-635A, U+635D, U+6364-6365, U+6367-6369, U+636B-6372, U+6375-637D, U+637F-6385, U+6387-6392, U+6394, U+6396-6399, U+639B-63A5, U+63A7-63B1, U+63B9, U+63BD-63BE, U+63C0-63D3, U+63D5-63EB, U+63ED-63F6, U+63F8-63F9, U+63FB-63FC, U+63FE, U+6406-6407, U+6409-6410, U+6412-6418, U+641A-641C, U+641E-6428, U+642A-6430, U+6432-643B, U+643D-6441, U+6443, U+644B, U+644D-644E, U+6450-6454, U+6458-6461, U+6465-6469, U+646B-647D, U+647F, U+6482, U+6485, U+6487-648D, U+648F-6493, U+6495-649A, U+649C-64A0, U+64A2-64A6, U+64A9, U+64AB-64B4, U+64B6, U+64BB-64C5, U+64C7, U+64C9-64CB, U+64CD-64D0, U+64D2-64D4, U+64D6-64DB, U+64DD, U+64E0-64ED, U+64EF-64F4, U+64F7-64F8, U+64FA-6501, U+6503-6504, U+6506-6507, U+6509-650A, U+650C-6511, U+6513-6519, U+651B-6526, U+6529-6530, U+6532-6539, U+653B, U+653D-653F, U+6541, U+6543, U+6545-6546, U+6548-654A, U+654D, U+654F, U+6551, U+6553-655A, U+655C-655F, U+6562-6568, U+656A-656D, U+656F, U+6572-6576", + "bytes": 81100 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.013.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA", + "bytes": 59944 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.013.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA", + "bytes": 61068 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.013.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA", + "bytes": 61288 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.013.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA", + "bytes": 61296 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.013.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA", + "bytes": 62460 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.013.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA", + "bytes": 62692 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.013.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA", + "bytes": 63364 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.013.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6577-657C, U+657F-6589, U+658B-658C, U+6590-6592, U+6594-6597, U+6599, U+659B-65A2, U+65A4-65A5, U+65A7-65A8, U+65AA-65AC, U+65AE-65B0, U+65B2-65B3, U+65B5-65B9, U+65BB-65BF, U+65C1-65C6, U+65CB-65D4, U+65D6-65D7, U+65DA-65DB, U+65DD-65E3, U+65E5-65E6, U+65E8-65E9, U+65EC-65F5, U+65FA-65FD, U+65FF-6600, U+6602-6615, U+6618, U+661C-6628, U+662B, U+662D-6636, U+6639-663A, U+6641-6645, U+6647-664D, U+664F, U+6651-6653, U+6657, U+6659-6668, U+666A-666C, U+666E-6674, U+6676-667E, U+6680, U+6684-668E, U+6690-6692, U+6694-669A, U+669D, U+669F-66A2, U+66A4, U+66A8-66AB, U+66AD-66BB, U+66BD-66C0, U+66C4, U+66C6-66CF, U+66D2, U+66D6, U+66D8-66DE, U+66E0, U+66E3-66E4, U+66E6-66E9, U+66EB-66EE, U+66F0-66F4, U+66F6-66F9, U+66FC, U+66FE-6705, U+6708-6710, U+6712-6719, U+671B, U+671D-6723, U+6725-6728, U+672A-672E, U+6731, U+6733-6736, U+6738-673F, U+6744-6749, U+674B-6751, U+6753, U+6755-6757, U+6759-675A, U+675C-6762, U+6767, U+676A-677F, U+6781-6787, U+6789, U+678B-6795, U+6797-679A, U+679C-679D, U+679F-67A0, U+67A4, U+67AC, U+67AE-67BB, U+67BF-67C6, U+67C8-67D4, U+67D6-67DF, U+67E2-67E7, U+67E9-67FA", + "bytes": 63228 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.014.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82", + "bytes": 69872 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.014.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82", + "bytes": 71432 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.014.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82", + "bytes": 71648 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.014.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82", + "bytes": 71768 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.014.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82", + "bytes": 73392 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.014.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82", + "bytes": 73584 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.014.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82", + "bytes": 74288 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.014.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+67FC, U+67FE-6804, U+680D, U+6810, U+6812-6814, U+6816-6818, U+681A-6822, U+6825-6826, U+6828-682B, U+682D-682F, U+6831-683E, U+6840-6851, U+6853-6856, U+685D, U+6865, U+686B, U+686D-686F, U+6871-6872, U+6874-6879, U+687B-688C, U+688F-6894, U+6896-6898, U+689B-689D, U+689F-68A4, U+68A6-68B6, U+68B9, U+68BD, U+68C1, U+68C3-68CE, U+68D0-68D8, U+68DA, U+68DC-68E1, U+68E3-68E4, U+68E6-68EC, U+68EE-68FD, U+6900-6915, U+6917-691B, U+6925, U+692A, U+692C, U+692F-6930, U+6932-6939, U+693B-6946, U+6948-694C, U+694E-694F, U+6951-697B, U+6980, U+6982-6983, U+6985-6986, U+698A, U+698D-698E, U+6990-6991, U+6993-699C, U+699E-69B7, U+69B9, U+69BB-69C4, U+69C6, U+69C9-69D1, U+69D3-69D6, U+69D9, U+69E1-69E2, U+69E4-69E9, U+69EB-69EE, U+69F1-69F4, U+69F6-6A0D, U+6A0F, U+6A11, U+6A13-6A21, U+6A23, U+6A25-6A29, U+6A2B-6A2D, U+6A32-6A35, U+6A38-6A41, U+6A43-6A49, U+6A4B-6A5B, U+6A5D-6A6B, U+6A6D, U+6A6F, U+6A71, U+6A74, U+6A76, U+6A7A, U+6A7E-6A82", + "bytes": 73584 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.015.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A", + "bytes": 72444 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.015.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A", + "bytes": 74472 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.015.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A", + "bytes": 75076 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.015.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A", + "bytes": 74916 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.015.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A", + "bytes": 76680 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.015.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A", + "bytes": 77136 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.015.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A", + "bytes": 77752 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.015.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6A83-6A85, U+6A87, U+6A89-6A8A, U+6A8C-6A97, U+6A99-6AA8, U+6AAB-6AAF, U+6AB1-6ABB, U+6ABD-6ABE, U+6AC2-6AC3, U+6AC5-6ACD, U+6ACF-6AD1, U+6AD3-6AD4, U+6AD8-6AE1, U+6AE5, U+6AE7-6AE8, U+6AEA-6AEC, U+6AEE-6AF1, U+6AF3, U+6AF6, U+6AF8-6AFC, U+6B00, U+6B02-6B05, U+6B08-6B0B, U+6B0F-6B13, U+6B16-6B1A, U+6B1D-6B1E, U+6B20-6B21, U+6B23, U+6B25, U+6B28, U+6B2C-6B2D, U+6B2F, U+6B31-6B3F, U+6B41-6B43, U+6B45-6B4E, U+6B50-6B52, U+6B54-6B57, U+6B59, U+6B5B-6B5C, U+6B5E-6B67, U+6B6A, U+6B6D, U+6B6F, U+6B72, U+6B74, U+6B76-6B7B, U+6B7E-6B84, U+6B86, U+6B88-6B8A, U+6B8C-6B8F, U+6B91, U+6B94-6B99, U+6B9B, U+6B9E-6BA0, U+6BA2-6BA7, U+6BAA-6BAB, U+6BAD-6BB0, U+6BB2-6BB3, U+6BB5-6BB7, U+6BBA, U+6BBC-6BBD, U+6BBF-6BC1, U+6BC3-6BCD, U+6BCF-6BD0, U+6BD2-6BD4, U+6BD6-6BD8, U+6BDA-6BDC, U+6BDE, U+6BE0-6BE4, U+6BE6-6BE8, U+6BEA-6BEC, U+6BEF-6BF0, U+6BF2-6BF3, U+6BF7-6C06, U+6C08-6C09, U+6C0B-6C0D, U+6C0F-6C11, U+6C13-6C16, U+6C18-6C1D, U+6C1F-6C21, U+6C23-6C28, U+6C2A-6C2C, U+6C2E-6C3B, U+6C3D-6C43, U+6C46, U+6C49-6C50, U+6C52, U+6C54-6C55, U+6C57-6C61, U+6C65-6C6B, U+6C6D-6C76, U+6C78-6C7B, U+6C7D-6C90, U+6C92-6C96, U+6C98-6C9D, U+6C9F, U+6CA2, U+6CAA-6CB4, U+6CB6-6CC7, U+6CC9-6CD7, U+6CD9-6CE3, U+6CE5, U+6CE7-6CF3, U+6CF5, U+6CF9, U+6CFF-6D0A", + "bytes": 77496 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.016.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D", + "bytes": 72804 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.016.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D", + "bytes": 74776 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.016.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D", + "bytes": 75496 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.016.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D", + "bytes": 75720 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.016.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D", + "bytes": 76892 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.016.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D", + "bytes": 77248 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.016.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D", + "bytes": 78536 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.016.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6D0B-6D12, U+6D16-6D1B, U+6D1D-6D20, U+6D22, U+6D24-6D42, U+6D4E, U+6D57-6D5C, U+6D5E-6D6A, U+6D6C-6D72, U+6D74-6D98, U+6D9A, U+6DA4-6DA5, U+6DAA-6DAC, U+6DAE-6DAF, U+6DB1-6DB5, U+6DB7-6DC0, U+6DC2, U+6DC4-6DCD, U+6DCF-6DE6, U+6DE8-6DF7, U+6DF9-6DFE, U+6E00, U+6E02-6E05, U+6E0A, U+6E0F, U+6E15, U+6E18-6E1D, U+6E1F-6E36, U+6E38-6E41, U+6E43-6E47, U+6E49-6E4B, U+6E4D-6E69, U+6E6B, U+6E6E-6E6F, U+6E71-6E74, U+6E76-6E79, U+6E7C, U+6E86, U+6E88-6E89, U+6E8B, U+6E8D-6E90, U+6E92-6E94, U+6E96-6EA7, U+6EAA-6EAB, U+6EAE-6ED6, U+6ED8-6EDD, U+6EE2, U+6EE8-6EE9, U+6EEB-6EEF, U+6EF1-6EF2, U+6EF4-6F0F, U+6F12-6F1A, U+6F1C, U+6F1E-6F27, U+6F29-6F41, U+6F43-6F44, U+6F4E-6F58, U+6F5A-6F64, U+6F66-6F67, U+6F69-6F70, U+6F72-6F74, U+6F76-6F7D", + "bytes": 77780 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.017.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4", + "bytes": 86244 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.017.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4", + "bytes": 88288 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.017.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4", + "bytes": 89028 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.017.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4", + "bytes": 88456 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.017.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4", + "bytes": 90956 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.017.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4", + "bytes": 91856 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.017.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4", + "bytes": 92856 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.017.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+6F7E-6F82, U+6F84-6F8E, U+6F90, U+6F92-6F97, U+6F9D-6FB6, U+6FB8-6FC4, U+6FC6-6FCF, U+6FD3-6FD5, U+6FD8-6FE4, U+6FE6-6FE9, U+6FEB-6FF2, U+6FF4, U+6FF6-6FF8, U+6FFA-6FFC, U+6FFE-7001, U+7003-7007, U+7009-700F, U+7011, U+7014-7024, U+7026-702C, U+702F-7035, U+7037-703C, U+703E-7046, U+7048-704D, U+7050-7052, U+7054-7058, U+705A-706C, U+706E-7071, U+7074-707A, U+707C-707F, U+7081-7086, U+7089-708B, U+708E-708F, U+7091-7096, U+7098-709A, U+709F-70A1, U+70A3-70A7, U+70A9, U+70AB-70B1, U+70B3-70B5, U+70B7-70BE, U+70C0, U+70C4-70C8, U+70CA-70DA, U+70DC-70E2, U+70E4, U+70EF-70F1, U+70F3-7100, U+7102, U+7104-7106, U+7109-710E, U+7110, U+7113, U+7117, U+7119-7123, U+7125-7126, U+7128-7129, U+712B-712C, U+712E-7136, U+713A-713B, U+713E, U+7140-7147, U+7149-7154, U+7156-715A, U+715C-716C, U+716E, U+7170-7178, U+717A-717E, U+7180-7182, U+7184-718A, U+718C, U+718E-7192, U+7194, U+7196-71A5, U+71A7-71AA, U+71AC-71AD, U+71AF-71B5, U+71B7-71BA, U+71BC-71CB, U+71CE-71D2, U+71D4-71D6, U+71D8-71DD, U+71DF-71E2, U+71E4", + "bytes": 91652 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.018.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451", + "bytes": 74068 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.018.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451", + "bytes": 76316 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.018.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451", + "bytes": 75696 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.018.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451", + "bytes": 76000 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.018.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451", + "bytes": 77332 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.018.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451", + "bytes": 77748 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.018.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451", + "bytes": 78464 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.018.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+71E5-71E8, U+71EB-71EE, U+71F0-71F2, U+71F4-71F6, U+71F8-71F9, U+71FB-7203, U+7205-7207, U+7209-720A, U+720C-7210, U+7213-7217, U+7219-721B, U+721D-721F, U+7222-722E, U+7230, U+7235-7236, U+7238-723B, U+723D-7242, U+7244, U+7246-724C, U+724F-7250, U+7252-7253, U+7255-7263, U+7266-7267, U+7269-726A, U+726C, U+726E-7270, U+7272-7274, U+7276-7279, U+727B-7282, U+7284-7289, U+728B-7298, U+729A-729B, U+729D-729F, U+72A1-72AA, U+72AC-72B0, U+72B2, U+72B4-72B5, U+72BA, U+72BD, U+72BF-72C6, U+72C9-72CE, U+72D0-72D2, U+72D4, U+72D6-72DA, U+72DC, U+72DF-72E4, U+72E6, U+72E8-72EB, U+72F3-72F4, U+72F6-7302, U+7304, U+7307-7308, U+730A-730C, U+730F-7313, U+7316-7319, U+731B-731E, U+7322-7323, U+7325-732E, U+7330-733C, U+733E-7345, U+7348-734A, U+734C-7352, U+7357-735B, U+735D-7362, U+7365-736C, U+736E-7378, U+737A-738C, U+738E-738F, U+7392-7398, U+739C-73A2, U+73A4-73AD, U+73B2-73BC, U+73BE-73C0, U+73C2-73D0, U+73D2-73DE, U+73E0-73EB, U+73ED-73EF, U+73F3-740D, U+7411-7412, U+7414-7417, U+7419-7426, U+7428-743A, U+743C, U+743F-7451", + "bytes": 78096 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.019.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB", + "bytes": 73004 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.019.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB", + "bytes": 76056 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.019.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB", + "bytes": 76716 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.019.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB", + "bytes": 76812 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.019.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB", + "bytes": 78224 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.019.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB", + "bytes": 78892 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.019.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB", + "bytes": 79464 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.019.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7452-7457, U+7459-7465, U+7467-7476, U+7479-747A, U+747C-7483, U+7485-748D, U+7490, U+7492, U+7494-7495, U+7497-74A1, U+74A3-74AB, U+74AD, U+74AF-74B2, U+74B4-74BB, U+74BD-74C3, U+74C5-74C6, U+74C8, U+74CA-74CC, U+74CF-74D0, U+74D3-74E9, U+74EC, U+74EE, U+74F0-74F2, U+74F4-74F8, U+74FB, U+74FD-7500, U+7502-7505, U+7507-7508, U+750B-751A, U+751C-751F, U+7521-7522, U+7525-7526, U+7528-7535, U+7537-753B, U+753D-7540, U+7542, U+7546-7548, U+754A-754F, U+7551, U+7553-7555, U+7559-755D, U+755F-7560, U+7562-7567, U+756A-7570, U+7572, U+7576-757A, U+757D-7580, U+7583-7584, U+7586-7587, U+758A-7592, U+7594-7595, U+7598-759A, U+759D-759E, U+75A2-75A5, U+75A7, U+75AA-75AB, U+75B0-75B6, U+75B8-75C5, U+75C7-75C8, U+75CA-75D2, U+75D4-75D5, U+75D7-75E4, U+75E6-75E7, U+75ED, U+75EF-7603, U+7607-760D, U+760F-7611, U+7613-7616, U+7619-7629, U+762C-762D, U+762F-7635, U+7638, U+763A-763D, U+7640, U+7642-7643, U+7646-7649, U+764C-7654, U+7656-765A, U+765C, U+765F-7662, U+7664-7667, U+7669-766A, U+766C-7676, U+7678-7682, U+7684, U+7686-768C, U+768E-7690, U+7692-7693, U+7695-7696, U+7699-769E, U+76A1, U+76A4-76A6, U+76AA-76AB, U+76AD-76B0, U+76B4-76B5, U+76B7-76B8, U+76BA-76BB, U+76BD-76BF, U+76C2-76C6, U+76C8-76CA, U+76CC-76CE, U+76D2-76D4, U+76D6, U+76D9-76DB", + "bytes": 78288 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.020.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961", + "bytes": 68916 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.020.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961", + "bytes": 70064 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.020.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961", + "bytes": 70176 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.020.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961", + "bytes": 70024 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.020.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961", + "bytes": 71044 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.020.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961", + "bytes": 71452 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.020.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961", + "bytes": 71976 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.020.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+76DC-76DF, U+76E1, U+76E3-76E7, U+76E9-76EA, U+76EC-76F5, U+76F7-76FC, U+76FE, U+7701, U+7703-7705, U+7707-770C, U+770E-7713, U+7715, U+7719-771B, U+771D-7720, U+7722-7729, U+772B, U+772D, U+772F, U+7731-773E, U+7740, U+7743-7747, U+774A-774F, U+7752, U+7754-7756, U+7758-775C, U+775E-7763, U+7765-776F, U+7772, U+7777-7785, U+7787-7789, U+778B-778F, U+7791, U+7793, U+7795, U+7797-77A3, U+77A5, U+77A7-77A8, U+77AA-77AD, U+77AF-77B7, U+77B9-77BF, U+77C2-77C5, U+77C7, U+77C9-77D0, U+77D3-77D5, U+77D7-77DE, U+77E0, U+77E2-77E3, U+77E5-77E9, U+77EC-77F4, U+77F7-77FE, U+7802-7803, U+7805-7806, U+7808-7809, U+780C-7814, U+7818, U+781C-7823, U+7825-7835, U+7837-7839, U+783C-783D, U+7842-7845, U+7847-784E, U+7850-7854, U+785C-785E, U+7860, U+7862, U+7864-7866, U+7868-7871, U+7879-787C, U+787E-7881, U+7883-7889, U+788C-788F, U+7891, U+7893-789A, U+789E-78A5, U+78A7-78AD, U+78AF-78B4, U+78B6, U+78B8-78BC, U+78BE, U+78C1, U+78C3-78C5, U+78C7-78D5, U+78D7-78D8, U+78DA-78DB, U+78DD-78E5, U+78E7-78EA, U+78EC-78F5, U+78F7, U+78F9-78FF, U+7901-7902, U+7904-7906, U+7909, U+790C, U+790E, U+7910-7914, U+7917, U+7919, U+791B-791E, U+7921, U+7923-792F, U+7931-7936, U+7938-7942, U+7944-794C, U+794F-7961", + "bytes": 71568 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.021.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C", + "bytes": 72448 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.021.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C", + "bytes": 74904 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.021.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C", + "bytes": 74840 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.021.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C", + "bytes": 74972 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.021.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C", + "bytes": 77152 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.021.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C", + "bytes": 78176 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.021.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C", + "bytes": 79508 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.021.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7962-7965, U+7967-796B, U+796D, U+7970-7974, U+7979-797A, U+797C-7983, U+7986-7988, U+798A-798B, U+798D-799D, U+799F-79A2, U+79A4-79AE, U+79B0-79B4, U+79B6-79BB, U+79BD-79C1, U+79C4-79C6, U+79C8-79D2, U+79D4-79D6, U+79D8, U+79DC-79E0, U+79E2-79E4, U+79E6-79E7, U+79E9-79EE, U+79F1, U+79F4, U+79F6-79F8, U+79FA-79FB, U+7A00, U+7A02-7A06, U+7A08, U+7A0A-7A0E, U+7A10-7A15, U+7A17-7A1C, U+7A1E-7A20, U+7A22, U+7A26, U+7A28, U+7A2A-7A32, U+7A37, U+7A39-7A40, U+7A43-7A4E, U+7A54, U+7A56-7A58, U+7A5A-7A5C, U+7A5F-7A62, U+7A65, U+7A67-7A69, U+7A6B-7A6E, U+7A70-7A72, U+7A74-7A76, U+7A78-7A7B, U+7A7D-7A81, U+7A83-7A8C, U+7A8F-7A99, U+7A9E-7AA0, U+7AA2-7AA3, U+7AA8-7AAC, U+7AAE-7AB8, U+7ABA-7ABC, U+7ABE-7AC5, U+7AC7-7ACB, U+7ACF, U+7AD1, U+7AD3, U+7AD8-7ADD, U+7ADF-7AE0, U+7AE2-7AE7, U+7AE9-7AEB, U+7AED-7AEF, U+7AF6-7AF7, U+7AF9-7B01, U+7B04-7B06, U+7B08-7B0C, U+7B0E-7B14, U+7B18-7B1B, U+7B1D-7B20, U+7B22-7B35, U+7B38-7B39, U+7B3B, U+7B40, U+7B42-7B52, U+7B54-7B56, U+7B58, U+7B60-7B67, U+7B69, U+7B6C-7B78, U+7B7B, U+7B82, U+7B84-7B85, U+7B87-7B88, U+7B8A-7B92, U+7B94-7B99, U+7B9B-7B9D, U+7BA0-7BA4, U+7BAC-7BAF, U+7BB1-7BB2, U+7BB4-7BB5, U+7BB7-7BB9, U+7BBE, U+7BC0-7BC1, U+7BC4-7BC7, U+7BC9-7BCC, U+7BCE-7BD0, U+7BD4-7BD5, U+7BD8-7BEC, U+7BF0-7BF4, U+7BF7-7C03, U+7C05-7C07, U+7C09-7C0C", + "bytes": 78728 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.022.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B", + "bytes": 87112 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.022.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B", + "bytes": 89712 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.022.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B", + "bytes": 89552 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.022.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B", + "bytes": 88388 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.022.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B", + "bytes": 92084 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.022.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B", + "bytes": 92612 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.022.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B", + "bytes": 94636 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.022.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7C0D-7C12, U+7C15, U+7C19, U+7C1B-7C23, U+7C25-7C2D, U+7C30, U+7C33, U+7C35, U+7C37-7C39, U+7C3B-7C40, U+7C42-7C45, U+7C47-7C4A, U+7C4C-7C4D, U+7C50-7C51, U+7C53-7C54, U+7C56-7C57, U+7C59-7C5D, U+7C5F-7C60, U+7C63-7C67, U+7C69-7C70, U+7C72-7C75, U+7C78-7C81, U+7C83-7C86, U+7C88-7C8A, U+7C8C-7C8E, U+7C91-7C92, U+7C94-7C98, U+7C9C, U+7C9E-7C9F, U+7CA1-7CA3, U+7CA5-7CA8, U+7CAC, U+7CAE-7CAF, U+7CB1-7CB5, U+7CB8-7CBF, U+7CC2-7CC3, U+7CC5, U+7CC7-7CCE, U+7CD0-7CD7, U+7CD9-7CDA, U+7CDC-7CE0, U+7CE2, U+7CE6-7CE8, U+7CEA, U+7CEC-7CF9, U+7CFB-7CFE, U+7D00-7D22, U+7D25, U+7D28-7D29, U+7D2B-7D2C, U+7D2E-7D33, U+7D35-7D36, U+7D38-7D47, U+7D4A, U+7D4D-7D56, U+7D58, U+7D5A-7D5F, U+7D61-7D63, U+7D66-7D6B, U+7D6D-7D73, U+7D79-7D7D, U+7D7F-7D81, U+7D83-7D86, U+7D88-7D89, U+7D8B-7D8F, U+7D91-7D97, U+7D9C-7DA4, U+7DA6-7DB5, U+7DB7-7DC2, U+7DC4-7DC7, U+7DC9-7DD0, U+7DD2-7DD4, U+7DD6-7DE1, U+7DE3-7DEA, U+7DEC, U+7DEE-7DF7, U+7DF9-7DFE, U+7E03, U+7E07-7E17, U+7E1A-7E25, U+7E27, U+7E29-7E2B, U+7E2D-7E49, U+7E4C, U+7E50-7E5C, U+7E5E-7E63, U+7E65, U+7E67-7E70, U+7E72-7E7B", + "bytes": 93076 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.023.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F", + "bytes": 72864 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.023.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F", + "bytes": 74496 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.023.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F", + "bytes": 74692 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.023.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F", + "bytes": 74624 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.023.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F", + "bytes": 76624 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.023.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F", + "bytes": 76804 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.023.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F", + "bytes": 77740 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.023.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+7E7C-7E82, U+7E86-7E88, U+7E8A-7E8F, U+7E91-7E9C, U+7E9F, U+7EA4, U+7EAC, U+7EBA, U+7EC7, U+7ECF, U+7EDF, U+7F06, U+7F36-7F3A, U+7F3D-7F41, U+7F43-7F45, U+7F47-7F55, U+7F58, U+7F5B-7F61, U+7F63, U+7F65-7F6E, U+7F70-7F73, U+7F75-7F7F, U+7F83, U+7F85-7F8F, U+7F91-7F97, U+7F9A-7F9E, U+7FA0-7FA9, U+7FAC-7FC3, U+7FC5, U+7FC7, U+7FC9-7FD2, U+7FD4-7FD5, U+7FD7, U+7FDB-7FE3, U+7FE5-7FF5, U+7FF7-8008, U+800B-8012, U+8014-8019, U+801B-8021, U+8024-8026, U+8028-802A, U+802C, U+802E-8031, U+8033-8037, U+8039, U+803B-803F, U+8043, U+8046-8048, U+804A, U+804F-8052, U+8054, U+8056, U+8058, U+805A-805E, U+8061-8064, U+8066-8067, U+806C, U+806F-8073, U+8075-8079, U+807D-8080, U+8082, U+8084-8087, U+8089-808C, U+808F-8090, U+8092-8093, U+8095-8096, U+8098-809D, U+809F, U+80A1-80A3, U+80A5, U+80A7, U+80A9-80AB, U+80AD-80AF, U+80B1-80B2, U+80B4-80B8, U+80BA, U+80BC-80BD, U+80C2-80CA, U+80CC-80D1, U+80D4-80DE, U+80E0-80E1, U+80E3-80E6, U+80E9, U+80EC-80ED, U+80EF-80F6, U+80F8-80FE, U+8100-8103, U+8105-810A, U+810C, U+810E, U+8112, U+8114-811B, U+811D-811F, U+8121-8125, U+8127, U+8129-812D, U+812F-8132, U+8134, U+8137, U+8139-813A, U+813D-813E, U+8142-8144, U+8146-8148, U+814A-8156, U+8159-815C, U+815E, U+8160-8162, U+8164-8167, U+8169, U+816B-8174, U+8176-817A, U+817C-817D, U+817F-8180, U+8182-8184, U+8186-818D, U+818F", + "bytes": 77388 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.024.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A", + "bytes": 63864 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.024.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A", + "bytes": 65664 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.024.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A", + "bytes": 65800 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.024.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A", + "bytes": 66040 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.024.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A", + "bytes": 67640 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.024.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A", + "bytes": 67704 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.024.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A", + "bytes": 68304 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.024.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8193, U+8195, U+8197-81A0, U+81A2-81A3, U+81A5-81AC, U+81AE, U+81B0-81B7, U+81B9-81CA, U+81CC-81CD, U+81CF-81D2, U+81D5, U+81D7-81DB, U+81DD-81EA, U+81EC-81EF, U+81F2-81F4, U+81F6-81FC, U+81FE-8202, U+8204-8205, U+8207-820D, U+8210-8212, U+8214-8216, U+8218, U+821A-8222, U+8225-8226, U+8228-822D, U+822F, U+8232-823A, U+823C-8240, U+8242, U+8244-8245, U+8247, U+8249, U+824B, U+824E-825C, U+825E-825F, U+8261-8266, U+8268-8269, U+826B-826F, U+8271-8272, U+8274-8280, U+8283-8285, U+8287, U+828A-828B, U+828D-8294, U+8298-829B, U+829D-82B1, U+82B3-82C0, U+82C2-82C4, U+82CA, U+82CF-82D9, U+82DB-82DC, U+82DE-82E8, U+82EA-8309, U+830B-830D, U+8316-831E, U+8320, U+8322, U+8324-832D, U+832F, U+8331-833D, U+833F-8345, U+8347-8354, U+8356-8357, U+8362-8363, U+8366, U+836F, U+8373-8378, U+837A-837F, U+8381, U+8383, U+8385-839E, U+83A0, U+83A2-83AC, U+83AE-83B0, U+83B9, U+83BD-83CF, U+83D1, U+83D3-83D9, U+83DB-83E5, U+83E7-83F6, U+83F8-83FF, U+8401, U+8403-8407, U+8409-840A", + "bytes": 67816 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.025.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C", + "bytes": 77720 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.025.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C", + "bytes": 80308 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.025.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C", + "bytes": 80848 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.025.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C", + "bytes": 81384 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.025.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C", + "bytes": 83104 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.025.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C", + "bytes": 84372 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.025.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C", + "bytes": 85364 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.025.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+840B-8414, U+8416, U+8418, U+841B-841C, U+8420-8421, U+8423-8424, U+8426, U+8429, U+842B-8440, U+8442-844E, U+8450-8469, U+846B-847A, U+847D-8480, U+8482, U+8484, U+8486, U+8488, U+848D-84A4, U+84A7-84B2, U+84B4, U+84B6, U+84B8-84C2, U+84C4-84C7, U+84C9-84D4, U+84D6-84D7, U+84DA-84DB, U+84DE, U+84E1-84E2, U+84E4-84E5, U+84E7-84EC, U+84EE-84F4, U+84F6-8500, U+8502-851A, U+851C-8521, U+8523-8531, U+8533-8534, U+8538, U+853B, U+853D-853E, U+8540-854E, U+8551-855B, U+855D-8571, U+8573, U+8575-857C, U+857E, U+8580-8591, U+8593-85A4, U+85A6-85AA, U+85AF-85B1, U+85B3-85BA, U+85BD-85C9, U+85CB, U+85CD-85D2, U+85D5-85DA, U+85DC-85E6, U+85E8-85F2, U+85F4, U+85F6-8602, U+8604-8607, U+8609-860D, U+860F-8611, U+8613-8614, U+8616-861C, U+861E-862A, U+862C-862F, U+8631-8636, U+8638-863C, U+863E-8640, U+8642-8643, U+8645-8648, U+864B-864E, U+8650, U+8652-8656, U+8659, U+865B-865C", + "bytes": 84452 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.026.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5", + "bytes": 76120 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.026.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5", + "bytes": 77456 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.026.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5", + "bytes": 77532 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.026.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5", + "bytes": 77832 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.026.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5", + "bytes": 79424 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.026.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5", + "bytes": 80012 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.026.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5", + "bytes": 80568 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.026.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+865E-865F, U+8661-8665, U+8667-8674, U+8677, U+8679-867C, U+867E, U+8685-8687, U+868A-868E, U+8690-869A, U+869C-869E, U+86A0-86A5, U+86A7-86AA, U+86AD, U+86AF-86C9, U+86CB-86CC, U+86D0-86D1, U+86D3-86D4, U+86D6-86DF, U+86E2-86E4, U+86E6, U+86E8-86ED, U+86EF, U+86F5-86FB, U+86FE, U+8700-870E, U+8711-8713, U+8715, U+8718-871C, U+871E, U+8720-872A, U+872C-872E, U+8730-8735, U+8737-8738, U+873A-873C, U+873E-8743, U+8746, U+874C-8771, U+8773-877B, U+877D, U+8781-8789, U+878B-878D, U+878F-8794, U+8796-8798, U+879A-879F, U+87A2-87A5, U+87A9-87C6, U+87C8-87CC, U+87CE, U+87D1-87D4, U+87D6-87E8, U+87EA-87EF, U+87F2-87F7, U+87F9-87FC, U+87FE-8806, U+8808-880D, U+880F-8811, U+8813-8819, U+881B-881D, U+881F-8833, U+8835-8839, U+883B-8846, U+8848, U+884A-884F, U+8852-8853, U+8855-8857, U+8859-885B, U+885D-885E, U+8860-8865, U+8867-886B, U+886D-8872, U+8874-8877, U+8879, U+887C-8884, U+8887-8889, U+888B-8893, U+8895-88A2, U+88A4, U+88A7-88A8, U+88AA-88AC, U+88AE, U+88B1-88B2, U+88B4-88BA, U+88BC-88C2, U+88C5", + "bytes": 79868 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.027.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A", + "bytes": 73024 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.027.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A", + "bytes": 74748 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.027.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A", + "bytes": 75208 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.027.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A", + "bytes": 74880 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.027.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A", + "bytes": 76384 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.027.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A", + "bytes": 76924 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.027.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A", + "bytes": 77948 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.027.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+88C7, U+88C9-88D0, U+88D2, U+88D4-88DF, U+88E1, U+88E6-88E8, U+88EB-88EC, U+88EE-8902, U+8905-8907, U+8909-890C, U+890E, U+8910-891A, U+891E-891F, U+8921-8927, U+8929-8933, U+8935-8938, U+893B-893E, U+8941-8944, U+8946-8947, U+8949, U+894B-894D, U+894F-8954, U+8956-8966, U+8969-896F, U+8971-8974, U+8976-8977, U+8979-897C, U+897E-8983, U+8985-898B, U+898F, U+8991, U+8993-8998, U+899B-899F, U+89A1-89A7, U+89A9-89AA, U+89AC-89AF, U+89B2, U+89B6-89B7, U+89B9-89BA, U+89BC-89C1, U+89C6, U+89D2-89D6, U+89D9-89DD, U+89DF-89E9, U+89EB-89ED, U+89F0-89F4, U+89F6-89F8, U+89FA-89FC, U+89FE-8A00, U+8A02-8A04, U+8A07-8A08, U+8A0A, U+8A0C, U+8A0E-8A13, U+8A15-8A18, U+8A1B-8A1F, U+8A22-8A23, U+8A25, U+8A27, U+8A29-8A2D, U+8A30-8A31, U+8A34, U+8A36, U+8A38-8A41, U+8A44-8A46, U+8A48-8A4A, U+8A4C-8A52, U+8A54-8A59, U+8A5B, U+8A5E, U+8A60-8A63, U+8A66-8A69, U+8A6B-8A6E, U+8A70-8A77, U+8A79-8A7C, U+8A7E-8A7F, U+8A81-8A87, U+8A8B-8A8D, U+8A8F-8A96, U+8A98-8A9A, U+8A9C, U+8A9E, U+8AA0-8AA1, U+8AA3-8AAC, U+8AAF-8AB0, U+8AB2, U+8AB4, U+8AB6, U+8AB8-8AC0, U+8AC2-8AC9, U+8ACB-8ACD, U+8ACF, U+8AD1-8AE2, U+8AE4, U+8AE6-8AE8, U+8AEA-8AEB, U+8AED-8AFC, U+8AFE-8B02, U+8B04-8B08, U+8B0A-8B20, U+8B22-8B28, U+8B2A-8B31, U+8B33, U+8B35-8B37, U+8B39-8B43, U+8B45-8B4A", + "bytes": 77640 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.028.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84", + "bytes": 78984 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.028.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84", + "bytes": 80516 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.028.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84", + "bytes": 80816 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.028.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84", + "bytes": 81032 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.028.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84", + "bytes": 82524 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.028.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84", + "bytes": 82900 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.028.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84", + "bytes": 83508 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.028.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8B4B-8B5A, U+8B5C-8B60, U+8B62-8B63, U+8B65-8B6D, U+8B6F-8B70, U+8B74, U+8B77-8B7B, U+8B7D-8B86, U+8B88, U+8B8A-8B8C, U+8B8E-8B90, U+8B92-8B96, U+8B98-8B9C, U+8B9E-8BA0, U+8BBE, U+8BE2, U+8C37, U+8C39, U+8C3B-8C3F, U+8C41-8C43, U+8C45-8C51, U+8C54-8C57, U+8C5A, U+8C5C-8C5D, U+8C5F, U+8C61-8C62, U+8C64-8C66, U+8C68-8C6D, U+8C6F-8C73, U+8C75-8C7B, U+8C7D, U+8C80-8C82, U+8C84-8C86, U+8C89-8C8A, U+8C8C-8C8D, U+8C8F-8C95, U+8C97-8CA5, U+8CA7-8CAD, U+8CAF-8CB0, U+8CB2-8CC5, U+8CC7-8CC8, U+8CCA, U+8CCC-8CCD, U+8CCF, U+8CD1-8CD7, U+8CD9-8CEE, U+8CF0-8CF5, U+8CF7-8CFE, U+8D00, U+8D02-8D0D, U+8D0F-8D19, U+8D1B-8D1D, U+8D64, U+8D66-8D69, U+8D6B-8D70, U+8D72-8D74, U+8D76-8D7B, U+8D7D, U+8D80-8D82, U+8D84-8D85, U+8D89-8D8A, U+8D8C-8D96, U+8D99, U+8D9B-8D9C, U+8D9F-8DA1, U+8DA3, U+8DA5-8DAF, U+8DB2-8DB7, U+8DB9-8DBA, U+8DBC, U+8DBE-8DC3, U+8DC5-8DC8, U+8DCB-8DD1, U+8DD3-8DDD, U+8DDF-8DE4, U+8DE6-8DEC, U+8DEE-8DF4, U+8DFA, U+8DFC-8E07, U+8E09-8E0A, U+8E0D-8E2B, U+8E2D-8E2E, U+8E30-8E31, U+8E33-8E36, U+8E38-8E3A, U+8E3C-8E42, U+8E44-8E50, U+8E53-8E57, U+8E59-8E6A, U+8E6C-8E6D, U+8E6F, U+8E71-8E78, U+8E7A-8E7C, U+8E7E, U+8E80-8E82, U+8E84", + "bytes": 82500 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.029.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134", + "bytes": 71432 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.029.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134", + "bytes": 74444 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.029.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134", + "bytes": 74324 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.029.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134", + "bytes": 73360 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.029.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134", + "bytes": 75444 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.029.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134", + "bytes": 75772 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.029.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134", + "bytes": 76520 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.029.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+8E85-8E8E, U+8E90-8E98, U+8E9A, U+8E9D-8EA1, U+8EA3-8EAD, U+8EB0, U+8EB2, U+8EB6, U+8EB9-8EBA, U+8EBC-8EBD, U+8EC0, U+8EC2-8EC3, U+8EC9-8ECF, U+8ED1-8ED4, U+8ED7-8ED8, U+8EDA-8EE2, U+8EE4-8EE9, U+8EEB-8EEF, U+8EF1-8EF2, U+8EF4-8EFC, U+8EFE-8F03, U+8F05-8F0B, U+8F0D-8F0E, U+8F10-8F20, U+8F23-8F26, U+8F29-8F2A, U+8F2C-8F30, U+8F32-8F39, U+8F3B-8F3C, U+8F3E-8F4B, U+8F4D-8F64, U+8F66-8F67, U+8F6E, U+8F93, U+8F9B-8F9C, U+8F9F-8FA0, U+8FA3, U+8FA5-8FA8, U+8FAD-8FBC, U+8FBE-8FBF, U+8FC1-8FC2, U+8FC4-8FC6, U+8FC9-8FD7, U+8FDA, U+8FE0-8FE6, U+8FE8, U+8FEA-8FEB, U+8FED-8FEE, U+8FF0, U+8FF4-9006, U+9008, U+900B-900D, U+900F-9012, U+9014-9017, U+9019-9024, U+902D-902F, U+9031-9038, U+903C-903F, U+9041-9042, U+9044, U+9046-9047, U+9049-9056, U+9058-9059, U+905B-905E, U+9060-9064, U+9067-9069, U+906B-9070, U+9072-9088, U+908A-908B, U+908D, U+908F-9091, U+9094-9095, U+9097-9099, U+909B, U+909E-90A3, U+90A5-90A8, U+90AA, U+90AE-90B6, U+90B8, U+90BB, U+90BD-90BF, U+90C1, U+90C3-90C5, U+90C7-90C8, U+90CA-90CB, U+90CE, U+90D4-90DD, U+90DF-90E5, U+90E8-90ED, U+90EF-90F5, U+90F9-9109, U+910B, U+910D-9112, U+9114, U+9116-9124, U+9126-9134", + "bytes": 73916 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.030.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D", + "bytes": 74120 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.030.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D", + "bytes": 76204 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.030.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D", + "bytes": 76472 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.030.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D", + "bytes": 76396 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.030.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D", + "bytes": 79924 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.030.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D", + "bytes": 80700 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.030.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D", + "bytes": 81448 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.030.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+9135-9136, U+9138-913B, U+913E-9141, U+9143-9153, U+9155-915A, U+915C, U+915E-9165, U+9167-916A, U+916C, U+916E-9170, U+9172-917A, U+917C, U+9180-9187, U+9189-9193, U+9196, U+9199-91A3, U+91A5, U+91A7-91B7, U+91B9-91BE, U+91C0-91C7, U+91C9, U+91CB-91D1, U+91D3-91DA, U+91DC-91DD, U+91DF, U+91E2-91EE, U+91F1, U+91F3-91FA, U+91FD-920A, U+920C-921A, U+921C, U+921E, U+9221, U+9223-9228, U+922A-922B, U+922D-922E, U+9230-923A, U+923C-9241, U+9244-9246, U+9248-9258, U+925A-925B, U+925D-9267, U+926B-9270, U+9272, U+9276-928F, U+9291, U+9293-929D, U+92A0-92AC, U+92AE, U+92B1-92B7, U+92B9-92BC, U+92BE-92D5, U+92D7-92D9, U+92DB, U+92DD-92E1, U+92E3-92F4, U+92F6-9304, U+9306-9309, U+930B-9310, U+9312-9316, U+9318-931B, U+931D-9331, U+9333-9336, U+9338-9339, U+933C, U+9340-9352, U+9354-935C, U+935E-936E, U+9370-9371, U+9373-937D", + "bytes": 79804 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.031.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705", + "bytes": 81204 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.031.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705", + "bytes": 83704 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.031.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705", + "bytes": 84092 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.031.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705", + "bytes": 84108 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.031.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705", + "bytes": 86476 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.031.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705", + "bytes": 87300 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.031.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705", + "bytes": 87928 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.031.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+937E, U+9380-938A, U+938C-9392, U+9394-93AA, U+93AC-93B5, U+93B7-93B8, U+93BA-93BB, U+93BD, U+93BF-93C0, U+93C2-93C4, U+93C6-93C8, U+93CA-93E4, U+93E6-93E8, U+93EC, U+93EE, U+93F0-93F1, U+93F3-9401, U+9403-9404, U+9406-9419, U+941B, U+941D, U+9420, U+9424-9433, U+9435-9440, U+9442-944D, U+944F-9452, U+9454-9455, U+9457-9458, U+945B, U+945D-945E, U+9460, U+9462-9465, U+9467-9479, U+947B-9483, U+9485, U+949F, U+94A2, U+94C1, U+94C3, U+94DC, U+94F6, U+952D, U+9547, U+9577-9578, U+957A-957D, U+957F-9580, U+9582-9583, U+9585-9586, U+9588-9589, U+958B-9594, U+9596-9599, U+959B-959C, U+959E-95AE, U+95B0-95B2, U+95B5-95B7, U+95B9-95C0, U+95C3, U+95C5-95CD, U+95D0-95D6, U+95DA-95DC, U+95DE-95E5, U+95E8, U+95F4, U+961C-961E, U+9620-9624, U+9628, U+962A, U+962C-9633, U+9638-963D, U+963F-9645, U+964A-9651, U+9653-9654, U+9656, U+9658, U+965B-965F, U+9661-9664, U+9669-966D, U+966F-9678, U+967B-967E, U+9680-9681, U+9683-968B, U+968D-968F, U+9691-9699, U+969B-969C, U+969E, U+96A1-96A5, U+96A7-96AA, U+96AC, U+96AE, U+96B0-96B1, U+96B3-96B4, U+96B6, U+96B8-96B9, U+96BB-96BD, U+96BF-96CE, U+96D2-96DF, U+96E1-96E3, U+96E5, U+96E8-96EA, U+96EF-96F2, U+96F4-96FB, U+96FD, U+96FF-9700, U+9702-9705", + "bytes": 87128 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.032.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7", + "bytes": 83748 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.032.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7", + "bytes": 86376 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.032.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7", + "bytes": 86632 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.032.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7", + "bytes": 86504 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.032.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7", + "bytes": 88376 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.032.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7", + "bytes": 89420 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.032.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7", + "bytes": 90624 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.032.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+9706-9709, U+970B, U+970D-9713, U+9716, U+9718-9719, U+971B-972C, U+972E-9732, U+9734-9736, U+9738-973A, U+973D-9744, U+9746-974B, U+9751-9752, U+9755-9758, U+975A-9762, U+9766, U+9768-976A, U+976C-976E, U+9770-9774, U+9776-9778, U+977A-9785, U+9787-978B, U+978D-978F, U+9794, U+9797-97A6, U+97A8, U+97AA-97AE, U+97B1-97B4, U+97B6-97BB, U+97BD-97C9, U+97CB-97D0, U+97D2-97D9, U+97DC-97E1, U+97E3, U+97E5-97E6, U+97ED-97EE, U+97F0-97F3, U+97F5-97F6, U+97F8-97FB, U+97FD-9808, U+980A, U+980C-9818, U+981B-9821, U+9823-9824, U+9826-9829, U+982B, U+982D-9830, U+9832-9835, U+9837-9839, U+983B, U+9841, U+9843-9853, U+9856-9859, U+985B-9860, U+9862-986C, U+986F-9875, U+98A8-98A9, U+98AC-98AF, U+98B1-98B4, U+98B6-98C4, U+98C6-98CC, U+98CE, U+98DB-98DC, U+98DE-98E3, U+98E5-98E7, U+98E9-98ED, U+98EF, U+98F1-98F2, U+98F4-98F6, U+98F9-98FA, U+98FC-98FE, U+9900, U+9902-9903, U+9905, U+9907-990A, U+990C, U+990E, U+9910-991C, U+991E-991F, U+9921, U+9924-9925, U+9927-9933, U+9935, U+9937-9943, U+9945, U+9947-994E, U+9950-9959, U+995B-995F, U+9961-9963, U+9996-9999, U+999B-999E, U+99A1, U+99A3-99A8, U+99AA-99B5, U+99B8-99BD, U+99C1-99C5, U+99C7, U+99C9, U+99CB-99DD, U+99DF-99E7", + "bytes": 89148 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.033.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25", + "bytes": 90592 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.033.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25", + "bytes": 94616 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.033.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25", + "bytes": 94936 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.033.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25", + "bytes": 94816 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.033.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25", + "bytes": 97156 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.033.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25", + "bytes": 97872 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.033.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25", + "bytes": 98320 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.033.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+99E9-99EA, U+99EC-99EE, U+99F0-99F1, U+99F4-99FF, U+9A01-9A07, U+9A09-9A11, U+9A14-9A16, U+9A19-9A27, U+9A29-9A32, U+9A34-9A46, U+9A48-9A4A, U+9A4C-9A50, U+9A52-9A5C, U+9A5E-9A60, U+9A62-9A6C, U+9A8F, U+9AA8, U+9AAB, U+9AAD, U+9AAF-9AB4, U+9AB6-9AC2, U+9AC6-9AC7, U+9ACA, U+9ACD, U+9ACF-9AD8, U+9ADC, U+9ADF-9AE3, U+9AE6-9AE7, U+9AEB-9AEF, U+9AF1-9AF4, U+9AF6-9AF7, U+9AF9-9AFF, U+9B01-9B06, U+9B08-9B12, U+9B14-9B1A, U+9B1E-9B20, U+9B22-9B25, U+9B27-9B2B, U+9B2D-9B2F, U+9B31-9B35, U+9B37, U+9B39-9B3C, U+9B3E-9B46, U+9B48, U+9B4A-9B52, U+9B54-9B56, U+9B58-9B5B, U+9B5F-9B61, U+9B64, U+9B66-9B69, U+9B6C, U+9B6F-9B71, U+9B74-9B77, U+9B7A-9B83, U+9B85-9B88, U+9B8B, U+9B8D-9B93, U+9B95, U+9B97, U+9B9A-9B9B, U+9B9D-9BA2, U+9BA4-9BA6, U+9BA8, U+9BAA-9BAB, U+9BAD-9BB0, U+9BB5-9BB6, U+9BB8-9BB9, U+9BBD, U+9BBF-9BC1, U+9BC3-9BC4, U+9BC6-9BCA, U+9BCF, U+9BD3-9BD7, U+9BD9-9BDE, U+9BE0-9BE2, U+9BE4-9BED, U+9BF0-9BF1, U+9BF4, U+9BF7-9BF8, U+9BFD, U+9BFF, U+9C02, U+9C05-9C0E, U+9C10, U+9C12-9C15, U+9C17, U+9C1B-9C1D, U+9C1F-9C21, U+9C23-9C26, U+9C28-9C29, U+9C2B-9C2F, U+9C31-9C37, U+9C39-9C41, U+9C44-9C50, U+9C52-9C59, U+9C5D-9C60, U+9C62-9C63, U+9C66-9C68, U+9C6D-9C6E, U+9C71-9C75, U+9C77-9C7C, U+9CE5-9CE7, U+9CE9-9CEA, U+9CED, U+9CF1-9CF7, U+9CF9-9CFD, U+9CFF-9D00, U+9D02-9D09, U+9D0C, U+9D10, U+9D12, U+9D14-9D19, U+9D1B, U+9D1D-9D23, U+9D25", + "bytes": 95592 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.034.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0", + "bytes": 87712 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.034.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0", + "bytes": 92168 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.034.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0", + "bytes": 92824 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.034.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0", + "bytes": 92096 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.034.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0", + "bytes": 96196 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.034.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0", + "bytes": 97336 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.034.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0", + "bytes": 98464 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.034.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+9D26, U+9D28-9D29, U+9D2D-9D31, U+9D33-9D34, U+9D36-9D39, U+9D3B, U+9D3D-9D45, U+9D49-9D4C, U+9D4E-9D54, U+9D56-9D61, U+9D67-9D75, U+9D77-9D79, U+9D7B-9D8C, U+9D90, U+9D92-9D94, U+9D96-9DAD, U+9DAF, U+9DB1-9DC5, U+9DC7-9DDF, U+9DE1-9DE6, U+9DE8-9DE9, U+9DEB-9DF0, U+9DF2-9E07, U+9E09-9E15, U+9E17-9E1F, U+9E75, U+9E79-9E7D, U+9E7F-9E8E, U+9E90-9EA2, U+9EA4-9EB1, U+9EB4-9EB7, U+9EBB-9EC4, U+9EC6-9EC8, U+9ECC-9ED1, U+9ED3-9ED6, U+9ED8, U+9EDA-9EE0, U+9EE2, U+9EE4-9EE8, U+9EEB, U+9EED-9F02, U+9F06-9F0A, U+9F0E-9F10, U+9F12-9F13, U+9F15-9F1C, U+9F1E, U+9F20, U+9F22-9F39, U+9F3B, U+9F3D-9F3E, U+9F40-9F50, U+9F52-9F67, U+9F69-9F6C, U+9F6E-9F72, U+9F74-9F7B, U+9F7E-9F7F, U+9F8D-9F8E, U+9F90-9F92, U+9F94-9F99, U+9F9C, U+9F9F-9FA0, U+9FA2, U+9FA4-9FB3, U+9FC7-9FCB, U+9FD0", + "bytes": 96280 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.035.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+E000-E1D8", + "bytes": 70604 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.035.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+E000-E1D8", + "bytes": 71920 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.035.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+E000-E1D8", + "bytes": 71960 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.035.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+E000-E1D8", + "bytes": 72276 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.035.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+E000-E1D8", + "bytes": 73644 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.035.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+E000-E1D8", + "bytes": 74016 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.035.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+E000-E1D8", + "bytes": 74764 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.035.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+E000-E1D8", + "bytes": 74772 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.036.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+E1D9-E3B1", + "bytes": 76920 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.036.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+E1D9-E3B1", + "bytes": 78416 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.036.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+E1D9-E3B1", + "bytes": 78860 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.036.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+E1D9-E3B1", + "bytes": 78968 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.036.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+E1D9-E3B1", + "bytes": 80592 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.036.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+E1D9-E3B1", + "bytes": 81268 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.036.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+E1D9-E3B1", + "bytes": 82432 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.036.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+E1D9-E3B1", + "bytes": 82224 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.037.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+E3B2-E58A", + "bytes": 81780 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.037.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+E3B2-E58A", + "bytes": 83816 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.037.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+E3B2-E58A", + "bytes": 84268 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.037.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+E3B2-E58A", + "bytes": 84532 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.037.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+E3B2-E58A", + "bytes": 86168 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.037.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+E3B2-E58A", + "bytes": 87056 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.037.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+E3B2-E58A", + "bytes": 87760 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.037.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+E3B2-E58A", + "bytes": 87028 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.038.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+E58B-E763", + "bytes": 72816 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.038.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+E58B-E763", + "bytes": 75064 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.038.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+E58B-E763", + "bytes": 75652 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.038.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+E58B-E763", + "bytes": 75928 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.038.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+E58B-E763", + "bytes": 77648 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.038.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+E58B-E763", + "bytes": 77996 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.038.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+E58B-E763", + "bytes": 78808 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.038.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+E58B-E763", + "bytes": 78632 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.039.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+E764-E93C", + "bytes": 78976 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.039.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+E764-E93C", + "bytes": 80864 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.039.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+E764-E93C", + "bytes": 81128 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.039.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+E764-E93C", + "bytes": 81404 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.039.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+E764-E93C", + "bytes": 82972 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.039.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+E764-E93C", + "bytes": 83720 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.039.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+E764-E93C", + "bytes": 84624 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.039.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+E764-E93C", + "bytes": 84200 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.040.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+E93D-EB15", + "bytes": 75648 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.040.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+E93D-EB15", + "bytes": 76836 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.040.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+E93D-EB15", + "bytes": 77360 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.040.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+E93D-EB15", + "bytes": 77364 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.040.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+E93D-EB15", + "bytes": 78824 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.040.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+E93D-EB15", + "bytes": 79460 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.040.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+E93D-EB15", + "bytes": 80212 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.040.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+E93D-EB15", + "bytes": 80116 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.041.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+EB16-EB2A, U+EB2C-ECEF", + "bytes": 78688 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.041.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+EB16-EB2A, U+EB2C-ECEF", + "bytes": 79932 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.041.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+EB16-EB2A, U+EB2C-ECEF", + "bytes": 80440 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.041.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+EB16-EB2A, U+EB2C-ECEF", + "bytes": 80508 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.041.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+EB16-EB2A, U+EB2C-ECEF", + "bytes": 81896 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.041.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+EB16-EB2A, U+EB2C-ECEF", + "bytes": 82516 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.041.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+EB16-EB2A, U+EB2C-ECEF", + "bytes": 83276 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.041.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+EB16-EB2A, U+EB2C-ECEF", + "bytes": 83192 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.042.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+ECF0-EEB7, U+F303-F313", + "bytes": 74592 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.042.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+ECF0-EEB7, U+F303-F313", + "bytes": 76012 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.042.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+ECF0-EEB7, U+F303-F313", + "bytes": 76376 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.042.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+ECF0-EEB7, U+F303-F313", + "bytes": 76516 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.042.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+ECF0-EEB7, U+F303-F313", + "bytes": 77856 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.042.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+ECF0-EEB7, U+F303-F313", + "bytes": 78480 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.042.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+ECF0-EEB7, U+F303-F313", + "bytes": 79188 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.042.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+ECF0-EEB7, U+F303-F313", + "bytes": 79280 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.043.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32C, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F33F-F342, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E", + "bytes": 64084 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.043.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E", + "bytes": 64920 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.043.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E", + "bytes": 65168 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.043.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32C, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F33F-F342, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E", + "bytes": 65720 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.043.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E", + "bytes": 66376 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.043.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E", + "bytes": 66620 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.043.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E", + "bytes": 67276 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.043.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+F314-F319, U+F31B, U+F31D, U+F31F, U+F321, U+F323, U+F325-F328, U+F32A, U+F32C, U+F32E-F32F, U+F331, U+F333, U+F335, U+F337, U+F339, U+F33B, U+F33D, U+F33F-F342, U+F344-F347, U+F349-F34B, U+F3A0-F3A1, U+F3A3, U+F3A6-F3A9, U+F3AC-F3E4, U+F3E9-F3EC, U+F3EE-F3F0, U+F3F3-F3FD, U+F3FF-F401, U+F403-F43E, U+F440-F45F, U+F461-F471, U+F473-F485, U+F487-F48B, U+F48D-F494, U+F496-F4A2, U+F4A4-F4A7, U+F4A9-F4B7, U+F4BA-F4CF, U+F4D1-F4ED, U+F4EF-F554, U+F556-F56E", + "bytes": 67536 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.044.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848", + "bytes": 51132 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.044.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848", + "bytes": 52692 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.044.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848", + "bytes": 53108 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.044.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848", + "bytes": 49780 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.044.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848", + "bytes": 55772 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.044.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848", + "bytes": 54096 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.044.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848", + "bytes": 54316 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.044.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+F56F-F575, U+F579-F57B, U+F57D, U+F580-F583, U+F585, U+F58B-F58F, U+F593-F594, U+F596-F597, U+F59B-F59C, U+F5A0, U+F5A3-F5A4, U+F5AB, U+F5B0, U+F5B4, U+F5B6, U+F5B9, U+F5BD, U+F5BF-F5C0, U+F5C4-F5C5, U+F5CC, U+F5CE, U+F5D0, U+F5D5-F5D9, U+F5E0, U+F5E4, U+F5E6-F5E8, U+F5EA-F5ED, U+F5EF, U+F634-F6DE, U+F6E0-F6E2, U+F6E4, U+F6E6, U+F6E8, U+F6EA-F6ED, U+F6F0-F79F, U+F7E2-F7EE, U+F818-F83B, U+F83F-F843, U+F846-F848", + "bytes": 53352 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.045.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED", + "bytes": 29684 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.045.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED", + "bytes": 31064 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.045.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED", + "bytes": 31424 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.045.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED", + "bytes": 30692 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.045.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED", + "bytes": 31556 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.045.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED", + "bytes": 31516 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.045.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED", + "bytes": 31404 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.045.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+F907, U+FA0C-FA0D, U+FA12, U+FA26, U+FA48, U+FA5B, U+FE10-FE16, U+FE19, U+FE30-FE31, U+FE33-FE44, U+FE49-FE52, U+FE54-FE57, U+FE59-FE66, U+FE68-FE6B, U+FF01-FF3D, U+FF3F, U+FF41-FF5E, U+FF64, U+FFE3-FFE4, U+FFED", + "bytes": 30332 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.046.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC", + "bytes": 83800 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.046.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC", + "bytes": 86120 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.046.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC", + "bytes": 86700 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.046.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC", + "bytes": 86772 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.046.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC", + "bytes": 88856 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.046.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC", + "bytes": 89436 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.046.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC", + "bytes": 90412 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.046.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+20021, U+2003E, U+20046, U+2004E, U+20068, U+20086-20087, U+2008A, U+20094, U+200CA-200CD, U+200D1, U+200EE, U+2010C, U+2010E, U+20118, U+201A4, U+201A9, U+201AB, U+201C1, U+201D4, U+201F2, U+20204, U+2020C, U+20214, U+20239, U+2025B, U+20274-20275, U+20299, U+2029E, U+202A0, U+202B7, U+202BF-202C0, U+202E5, U+2030A, U+20325, U+20341, U+20345-20347, U+2037E-20380, U+203A0, U+203A7, U+203B5, U+203C9, U+203CB, U+203F5, U+203FC, U+20413-20414, U+2041F, U+20465, U+20487, U+2048E, U+20491-20492, U+204A3, U+204D7, U+204FC, U+204FE, U+20547, U+2058E, U+205A5, U+205B3, U+205C3, U+205CA, U+205D0, U+205D5, U+205DF-205E0, U+205EB, U+20611, U+20615, U+20619-2061A, U+20630, U+20656, U+20676, U+2070E, U+20731, U+20779, U+2082C, U+20873, U+208D5, U+20916, U+20923, U+20954, U+20979, U+209E7, U+20A11, U+20A50, U+20A6F, U+20A8A, U+20AB4, U+20AC2, U+20ACD, U+20B0D, U+20B8F, U+20B9F, U+20BA8-20BA9, U+20BBF, U+20BC6, U+20BCB, U+20BE2, U+20BEB, U+20BFB, U+20BFF, U+20C0B, U+20C0D, U+20C20, U+20C34, U+20C3A-20C3B, U+20C41-20C43, U+20C53, U+20C65, U+20C77-20C78, U+20C7C, U+20C8D, U+20C96, U+20C9C, U+20CB5, U+20CB8, U+20CCF, U+20CD3-20CD6, U+20CDD, U+20CED, U+20CFF, U+20D15, U+20D28, U+20D31-20D32, U+20D46-20D49, U+20D4C-20D4E, U+20D6F, U+20D71, U+20D74, U+20D7C, U+20D7E-20D7F, U+20D96, U+20D9C, U+20DA7, U+20DB2, U+20DC8, U+20E04, U+20E09-20E0A, U+20E0D-20E11, U+20E16, U+20E1D, U+20E4C, U+20E6D, U+20E73, U+20E75-20E7B, U+20E8C, U+20E96, U+20E98, U+20E9D, U+20EA2, U+20EAA-20EAC, U+20EB6, U+20ED7-20ED8, U+20EDD, U+20EF8-20EFB, U+20F1D, U+20F26, U+20F2D-20F2E, U+20F30-20F31, U+20F3B, U+20F4C, U+20F64, U+20F8D, U+20F90, U+20FAD, U+20FB4-20FB6, U+20FBC, U+20FDF, U+20FEA-20FED, U+21014, U+2101D-2101E, U+2104F, U+2105C, U+2106F, U+21075-21078, U+2107B, U+21088, U+21096, U+2109D, U+210B4, U+210BF-210C1, U+210C7-210C9, U+210CF, U+210D3, U+210E4, U+210F4-210F6, U+2112F, U+2113B, U+2113D, U+21145, U+21148, U+2114F, U+21180, U+21187, U+211D9, U+2123C, U+2124F, U+2127C, U+212A8-212A9, U+212B0, U+212E3, U+212FE, U+21302-21305, U+21336, U+2133A, U+21375-21376, U+2138E, U+21398, U+2139C, U+213C5-213C6, U+213ED, U+213FE, U+21413, U+21416, U+21424, U+2143F, U+21452, U+21454-21455, U+2148A, U+21497, U+214B6, U+214E8, U+214FD, U+21577, U+21582, U+21596, U+2160A, U+21613, U+21619, U+2163E, U+21661, U+21692, U+216B8, U+216BA, U+216C0-216C2, U+216D3, U+216D5, U+216DF, U+216E6-216E8, U+216FA-216FC, U+216FE, U+2170D, U+21710, U+21726, U+2173A-2173C, U+21757, U+2176C-21771, U+21773-21774, U+217AB, U+217B0-217B5, U+217C3, U+217C7, U+217D9-217DC, U+217DF, U+217EF, U+217F5-217F6, U+217F8-217FC, U+21820, U+21828-2182A, U+2182D, U+21839-2183B, U+21840, U+21845, U+21852, U+2185E, U+21861-21864, U+21877, U+2187B, U+21883-21885, U+2189E-218A2, U+218BE-218BF, U+218D1, U+218D6-218D9, U+218FA, U+21903-21905, U+21910-21912, U+21915, U+2191C, U+21922, U+21927, U+2193B, U+21944, U+21958, U+2196A, U+2197C, U+21980, U+21983, U+21988, U+21996, U+219DB, U+219F3, U+21A2D, U+21A34, U+21A45, U+21A4B, U+21A63, U+21B44, U+21BC1-21BC2, U+21C2A, U+21C70, U+21CA2, U+21CA5, U+21CAC, U+21D46, U+21D53, U+21D5E, U+21D90, U+21DB6, U+21DBA, U+21DCA, U+21DD1, U+21DEB, U+21DF9, U+21E1C, U+21E23, U+21E37, U+21E3D, U+21E89, U+21EA4, U+21EA8, U+21EC8, U+21ED5, U+21F0F, U+21F15, U+21F6A, U+21F9E, U+21FA1, U+21FE8, U+22045, U+22049, U+2207E, U+2209A, U+220C7, U+220FC, U+2212A, U+2215B, U+22173, U+2217A, U+221A1, U+221C1, U+221C3, U+22208, U+2227C, U+22321, U+22325, U+223BD, U+223D0, U+223D7, U+223FA, U+22465, U+22471, U+2248B, U+22491, U+224B0, U+224BC, U+224C1, U+224C9, U+224CC, U+224ED, U+22513, U+2251B, U+22530, U+22554, U+2258D, U+225AF, U+225BE, U+2261B-2261C, U+2262B, U+22668, U+2267A, U+22696, U+22698, U+226F4-226F6, U+22712, U+22714, U+2271B, U+2271F, U+2272A, U+22775, U+22781, U+22796, U+227B4-227B5, U+227CD, U+22803, U+2285F-22860, U+22871, U+228AD, U+228C1, U+228F7, U+22926, U+22939, U+2294F, U+22967, U+2296B, U+22980, U+22993, U+22A66, U+22ACF, U+22AD5, U+22AE6, U+22AE8, U+22B0E, U+22B22, U+22B3F, U+22B43, U+22B6A, U+22BCA, U+22BCE, U+22C26-22C27, U+22C38, U+22C4C, U+22C51, U+22C55, U+22C62, U+22C88, U+22C9B, U+22CA1, U+22CA9, U+22CB2, U+22CB7, U+22CC2, U+22CC6, U+22CC9, U+22D07-22D08, U+22D12, U+22D44, U+22D4C, U+22D67, U+22D8D, U+22D95, U+22DA0, U+22DA3-22DA4, U+22DB7, U+22DEE, U+22E0D, U+22E36, U+22E42, U+22E78, U+22E8B, U+22EB3, U+22EEF, U+22F74, U+22FCC", + "bytes": 90216 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.047.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5", + "bytes": 89808 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.047.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5", + "bytes": 92684 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.047.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5", + "bytes": 93208 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.047.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5", + "bytes": 93688 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.047.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5", + "bytes": 95356 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.047.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5", + "bytes": 96024 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.047.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5", + "bytes": 97212 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.047.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+22FE3, U+23033, U+23044, U+2304B, U+23066, U+2307D-2307E, U+2308E, U+230B7, U+230BC, U+230DA, U+23103, U+2313D, U+2317D, U+23182, U+231A4-231A5, U+231B3, U+231C8-231C9, U+231EA, U+231F7-231F9, U+2320F, U+23225, U+2322F, U+23231-23234, U+23256, U+2325E, U+23262, U+23281, U+23289-2328A, U+232AB-232AD, U+232D2, U+232E0-232E1, U+23300, U+2330A, U+2331F, U+233B4, U+233CC, U+233DE, U+233E6, U+233F4-233F5, U+233F9-233FA, U+233FE, U+23400, U+2343F, U+23450, U+2346F, U+23472, U+234E5, U+23519, U+23530, U+23551, U+2355A, U+23567, U+23595, U+23599, U+2359C, U+235BB, U+235CD-235CF, U+235F3, U+23600, U+23617, U+2361A, U+2363C, U+23640, U+23659, U+2365F, U+23677, U+2368E, U+2369E, U+236A6, U+236AD, U+236BA, U+236DF, U+236EE, U+23703, U+23716, U+23720, U+2372D, U+2372F, U+2373F, U+23766, U+23781, U+237A2, U+237BC, U+237C2, U+237D5-237D7, U+2383A, U+239C2, U+23AA7, U+23ADB, U+23AEE, U+23AFA, U+23B1A, U+23B5A, U+23C63, U+23C99-23C9B, U+23CB5, U+23CB7, U+23CC7-23CC9, U+23CFC-23CFF, U+23D40, U+23D5B, U+23D7E, U+23D8F, U+23DB6-23DBD, U+23DE3, U+23DF8, U+23E06, U+23E11, U+23E2C-23E31, U+23E39, U+23E88-23E8B, U+23EB9, U+23EBF, U+23ED7, U+23EF7-23EFC, U+23F35, U+23F41, U+23F4A, U+23F61, U+23F7F-23F82, U+23F8F, U+23FB4, U+23FB7, U+23FC0, U+23FC5, U+23FEB-23FF0, U+24011, U+24039-2403D, U+24057, U+24085, U+2408B-2408D, U+24091, U+240C9, U+240E1, U+240EC, U+24104, U+2410F, U+24119, U+2413F-24140, U+24144, U+2414E, U+24155-24157, U+2415C, U+2415F, U+24161, U+24177, U+2417A, U+241A3-241A5, U+241AC, U+241B5, U+241CD, U+241E2, U+241FC, U+2421B, U+2424B, U+24256, U+24259, U+24276-24278, U+24284, U+24293, U+24295, U+242A5, U+242BF, U+242C1, U+242C9-242CA, U+242EE, U+242FA, U+2430D, U+2431A, U+24334, U+24348, U+24362-24365, U+2438C, U+24396, U+2439C, U+243BD, U+243C1, U+243E9-243EA, U+243F2, U+243F8, U+24404, U+24435-24436, U+2445A-2445B, U+24473, U+24487-24488, U+244B9, U+244BC, U+244CE, U+244D3, U+244D6, U+24505, U+24521, U+24578, U+245C8, U+24618, U+2462A, U+24665, U+24674, U+24697, U+246D4, U+24706, U+24725, U+2472F, U+2478F, U+247E0, U+247EF, U+24812, U+24823, U+24882, U+248E9, U+248F0-248F3, U+248FB, U+248FF-24901, U+2490C, U+24916-24917, U+24919, U+2492F, U+24933-24934, U+2493E-24943, U+24962-24963, U+24974-24976, U+2497B, U+2497F, U+24982, U+24988-2498F, U+24994, U+249A4, U+249A7, U+249A9, U+249AB-249AD, U+249B7-249BB, U+249C5, U+249D0, U+249DA, U+249DE-249DF, U+249E3, U+249E5, U+249EC-249ED, U+249F6-249F9, U+249FB, U+24A0E, U+24A12-24A13, U+24A15, U+24A21-24A2A, U+24A3E, U+24A42, U+24A45, U+24A4A, U+24A4E-24A51, U+24A5D, U+24A65-24A67, U+24A71, U+24A77-24A7A, U+24A8C, U+24A93-24A96, U+24AA4-24AA7, U+24AB1-24AB3, U+24ABA-24ABC, U+24AC0, U+24AC7, U+24ACA, U+24AD1, U+24ADF, U+24AE2, U+24AE9, U+24B0F, U+24B6E, U+24BF5, U+24C09, U+24C9E-24C9F, U+24CC9, U+24CD9, U+24D06, U+24D13, U+24DB8, U+24DEA-24DEB, U+24E3B, U+24E50, U+24EA5, U+24EA7, U+24F0E, U+24F5C, U+24F82, U+24F86, U+24F97, U+24F9A, U+24FA9, U+24FB8, U+24FC2, U+2502C, U+25052, U+2509D, U+2512B, U+25148, U+2517D-2517E, U+251CD, U+251E3, U+251E6-251E7, U+25220-25221, U+25250, U+25299, U+252C7, U+252D8, U+2530E, U+25311, U+25313, U+25419, U+25425, U+2542F-25430, U+25446, U+2546C, U+2546E, U+2549A, U+25531, U+25535, U+2553F, U+2555B-2555E, U+25562, U+25565-25566, U+25581, U+25584, U+2558F, U+255B9, U+255D5, U+255DB, U+255E0, U+25605, U+25635, U+25651, U+25683, U+25695, U+256E3, U+256F6, U+25706, U+2571D, U+25725, U+2573D, U+25772, U+257C7, U+257DF-257E1, U+25857, U+2585D, U+25872, U+258C8, U+258DE, U+258E1, U+25903, U+25946, U+25956, U+259AC, U+259CC, U+25A54, U+25A95, U+25A9C, U+25AAE-25AAF, U+25AE9, U+25B74, U+25B89, U+25BB3-25BB4, U+25BC6, U+25BE4, U+25BE8, U+25C01, U+25C06, U+25C21, U+25C4A, U+25C65, U+25C91, U+25CA4, U+25CC0-25CC1, U+25CFE, U+25D20, U+25D30, U+25D43, U+25D99, U+25DB9, U+25E0E, U+25E49, U+25E81-25E83, U+25EA6, U+25EBC, U+25ED7-25ED8, U+25F1A, U+25F4B, U+25FE1-25FE2, U+26021, U+26029, U+26048, U+26064, U+26083, U+26097, U+260A4-260A5, U+26102, U+26121, U+26159-2615C, U+261AD-261AE, U+261B2, U+261DD, U+26258, U+26261, U+2626A-2626B, U+262D0, U+26335, U+2634B-2634C, U+26351, U+263BE, U+263F5", + "bytes": 96892 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.048.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9", + "bytes": 96196 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.048.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9", + "bytes": 98860 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.048.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9", + "bytes": 99624 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.048.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9", + "bytes": 99432 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.048.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9", + "bytes": 101276 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.048.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9", + "bytes": 102720 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.048.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9", + "bytes": 103804 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.048.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+263F8, U+26402, U+26410-26412, U+2644A, U+26469, U+26484, U+26488-26489, U+2648D, U+26498, U+26512, U+26572, U+265A0, U+265AD, U+265BF, U+26612, U+26626, U+266AF, U+266B1, U+266B5, U+266DA, U+266E8, U+266FC, U+26716, U+26741, U+26799, U+267B3-267B4, U+267CC, U+2681C, U+26846, U+2685E, U+2686E, U+26888, U+2688A, U+26893, U+268C7, U+2690E, U+26911, U+26926, U+26939, U+26951, U+269A8, U+269B5, U+269F2, U+269FA, U+26A2D-26A2E, U+26A34, U+26A42, U+26A51-26A52, U+26B05, U+26B0A, U+26B13, U+26B15, U+26B23, U+26B28, U+26B50-26B53, U+26B5B, U+26B75, U+26B82, U+26B96-26B97, U+26B9D, U+26BB3, U+26BC0, U+26BF7, U+26C21, U+26C40-26C41, U+26C46, U+26C7E-26C82, U+26CA4, U+26CB7-26CB8, U+26CBD, U+26CC0, U+26CC3, U+26CD1, U+26D22-26D2A, U+26D51, U+26D74, U+26DA0-26DA7, U+26DAE, U+26DDC, U+26DEA-26DEB, U+26DF0, U+26E00, U+26E05, U+26E07, U+26E12, U+26E42-26E45, U+26E6E, U+26E72, U+26E77, U+26E84, U+26E88, U+26E8B, U+26E99, U+26ED0-26ED7, U+26F26, U+26F73-26F74, U+26F9F, U+26FA1, U+26FBE, U+26FDE-26FDF, U+2700E, U+2704B, U+27052-27053, U+27088, U+270AD-270AF, U+270CD, U+270D2, U+270F0, U+270F8, U+27109, U+2710C-2710D, U+27126-27127, U+27164-27165, U+27175, U+271CD, U+2721B, U+27267, U+27280, U+27285, U+2728B, U+272B2, U+272B6, U+272E6, U+27352, U+2739A, U+273FF, U+27422, U+27450, U+27484, U+27486, U+27574, U+275A3, U+275E0, U+275E4, U+275FD-275FE, U+27607, U+2760C, U+27632, U+27639, U+27655-27657, U+27694, U+2770F, U+27735-27736, U+27741, U+2775E, U+27784-27785, U+277CC, U+27858, U+27870, U+2789D, U+278B2, U+278C8, U+27924, U+27967, U+2797A, U+279A0, U+279DD, U+279FD, U+27A0A, U+27A0E, U+27A3E, U+27A53, U+27A59, U+27A79, U+27A84, U+27ABD-27ABE, U+27AF4, U+27B06, U+27B0B, U+27B18, U+27B38-27B3A, U+27B48, U+27B65, U+27BEF, U+27BF4, U+27C12, U+27C6C, U+27CB1, U+27CC5, U+27D2F, U+27D53-27D54, U+27D66, U+27D73, U+27D84, U+27D8F, U+27D98, U+27DBD, U+27DDC, U+27E4D, U+27E4F, U+27F2E, U+27FF9, U+28002, U+28009, U+2801E, U+28023-28024, U+28048, U+28083, U+28090, U+280BD-280BE, U+280E8-280E9, U+280F4, U+2812E, U+2814F, U+2815D, U+2816F, U+28189, U+281AF, U+281BC, U+28207, U+28218, U+2821A, U+28256, U+2827C, U+2829B, U+282CD, U+282E2, U+28306, U+28318, U+2832F, U+2833A, U+28365, U+2836D, U+2837D, U+2838A, U+28412, U+28468, U+2846C, U+28473, U+28482, U+28501, U+2853C-2853D, U+2856C, U+285E8, U+285F4, U+28600, U+2860B, U+28625, U+2863B, U+286AA-286AB, U+286B2, U+286BC, U+286D8, U+286E6, U+2870F, U+28713, U+28804, U+2882B, U+2890D, U+28933, U+28948-28949, U+28956, U+28964, U+28968, U+2896C-2896D, U+2897E, U+28989, U+289A8, U+289AA-289AB, U+289B8, U+289BC, U+289C0, U+289DC, U+289DE, U+289E1, U+289E3-289E4, U+289E7-289E8, U+289F9-289FC, U+28A0F, U+28A16, U+28A25, U+28A29, U+28A32, U+28A36, U+28A44-28A4B, U+28A59-28A5A, U+28A81-28A83, U+28A9A-28A9C, U+28AC0, U+28AC6, U+28ACB-28ACC, U+28ACE, U+28ADE-28AE3, U+28AE5, U+28AEA, U+28AFC, U+28B0C, U+28B13, U+28B21-28B22, U+28B2B-28B2D, U+28B2F, U+28B46, U+28B4C, U+28B4E, U+28B50, U+28B63-28B66, U+28B6C, U+28B8F, U+28B99, U+28B9C-28B9D, U+28BB9, U+28BC2, U+28BC5, U+28BD4, U+28BD7, U+28BD9-28BDA, U+28BE7-28BEC, U+28BF5, U+28BFF, U+28C03, U+28C09, U+28C1C-28C1D, U+28C23, U+28C26, U+28C2B, U+28C30, U+28C39, U+28C3B, U+28CCA, U+28CCD, U+28CD2, U+28D34, U+28D99, U+28DB9, U+28E0F, U+28E36, U+28E39, U+28E65-28E66, U+28E97, U+28EAC, U+28EB2-28EB3, U+28ED9, U+28EE7, U+28FC5, U+29079, U+29088, U+2908B, U+29093, U+290AF-290B1, U+290C0, U+290E4-290E5, U+290EC-290ED, U+2910D, U+29110, U+2913C, U+2914D, U+2915B, U+2915E, U+29170, U+2919C, U+291A8, U+291D5, U+291EB, U+2941D, U+29420, U+29433, U+2943F, U+29448, U+294D0, U+294D9-294DA, U+294E5, U+294E7, U+2959E, U+295B0, U+295B8, U+295D7, U+295E9, U+295F4, U+29720, U+29732, U+297D4, U+29810, U+29857, U+298A4, U+298D1, U+298EA, U+298F1, U+298FA, U+29903, U+29905, U+2992F, U+29945, U+29947-29949, U+2995D, U+2996A, U+2999D, U+299C3, U+299C9, U+29A28, U+29A4D, U+29B05, U+29B0E, U+29BD5, U+29C73, U+29CAD, U+29D3E, U+29D5A, U+29D7C, U+29D98, U+29D9B, U+29DF6, U+29E06, U+29E2D, U+29E68, U+29EAC, U+29EB0, U+29EC3, U+29EF8, U+29F23, U+29F30, U+29FB7, U+29FDE, U+2A014, U+2A087, U+2A0B9, U+2A0E1, U+2A0ED, U+2A0F3, U+2A0F8, U+2A0FE, U+2A107, U+2A123, U+2A133-2A134, U+2A150, U+2A192-2A193, U+2A1AB, U+2A1B4-2A1B5, U+2A1DF, U+2A1F5, U+2A220, U+2A233, U+2A293, U+2A29F, U+2A2B2, U+2A2B4, U+2A2B6, U+2A2BA, U+2A2BD, U+2A2DF, U+2A2FF, U+2A351, U+2A3A9, U+2A3ED, U+2A434, U+2A45B, U+2A5C6, U+2A5CB, U+2A601, U+2A632, U+2A64A, U+2A65B, U+2A6A9", + "bytes": 102856 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Thin.049.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B", + "bytes": 7524 + }, + { + "file": "FluxerSansTC/FluxerSansTC-ExtraLight.049.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B", + "bytes": 7596 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Light.049.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B", + "bytes": 7520 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Regular.049.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B", + "bytes": 7536 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Text.049.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B", + "bytes": 7652 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Medium.049.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B", + "bytes": 7564 + }, + { + "file": "FluxerSansTC/FluxerSansTC-SemiBold.049.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B", + "bytes": 7612 + }, + { + "file": "FluxerSansTC/FluxerSansTC-Bold.049.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+2ADFF, U+2AE67, U+2B42C, U+2B473, U+2B977, U+2BAB3, U+2BCD7, U+2C5F8, U+2C9A0, U+2DF3C, U+2F806, U+2F825, U+2F828-2F829, U+2F832, U+2F83B, U+2F840, U+2F878, U+2F894, U+2F8A6, U+2F8CD, U+2F8DB, U+2F908, U+2F922, U+2F92F, U+2F98F, U+2F994, U+2F9B2, U+2F9BC, U+2F9D4, U+2F9D7, U+2FA1B", + "bytes": 7644 + } + ] + }, + { + "id": "FluxerSansKR", + "cssFamily": "Fluxer Sans KR", + "stylesheet": "css/script-kr.css", + "mode": "subset", + "latinCore": false, + "chunks": 10, + "faces": [ + { + "file": "FluxerSansKR/FluxerSansKR-Thin.000.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD", + "bytes": 40520 + }, + { + "file": "FluxerSansKR/FluxerSansKR-ExtraLight.000.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD", + "bytes": 41912 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Light.000.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD", + "bytes": 41908 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Regular.000.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD", + "bytes": 40444 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Text.000.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD", + "bytes": 41940 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Medium.000.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD", + "bytes": 42016 + }, + { + "file": "FluxerSansKR/FluxerSansKR-SemiBold.000.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD", + "bytes": 41480 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Bold.000.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+0020-007E, U+00A2-00A5, U+00A9, U+00AB-00AC, U+00AE, U+00B0-00B3, U+00B6-00B7, U+00B9, U+00BB-00BE, U+00D7, U+00F7, U+02C7, U+02D0, U+02D8-02DD, U+2002-2007, U+2009-200A, U+2012-2016, U+2018-2019, U+201C-201D, U+2020-2023, U+2025-2026, U+2030, U+2032-2033, U+203B-203C, U+203E, U+2044, U+2047-2049, U+2070, U+2074-2079, U+207F-2089, U+20A9, U+20AC, U+2103, U+2109, U+2113, U+2116, U+2121-2122, U+2126, U+212B, U+2153-2154, U+215B-215E, U+2160-2169, U+2170-2179, U+2190-2199, U+21A9-21AA, U+21B0-21B3, U+21B6-21B7, U+21BA-21BB, U+21C4, U+21C6, U+21D2, U+21D4, U+2200, U+2202-2203, U+2207-2208, U+220B, U+220F, U+2211-2212, U+221A, U+221D-221E, U+2220, U+2225, U+2227-222C, U+222E, U+2234-2236, U+223C-223D, U+2252, U+2260-2261, U+2264-2267, U+226A-226B, U+2282-2283, U+2286-2287, U+2299, U+22A5, U+22EF, U+2312, U+2329-232A, U+2460-24F4, U+24FF-2503, U+250C-254B, U+2592, U+25A0-25A1, U+25A3-25A9, U+25B2-25B3, U+25B6-25B7, U+25BC-25BD, U+25C0-25C1, U+25C6-25C9, U+25CB, U+25CE-25D1, U+25E6, U+2605-2606, U+260E-260F, U+261C, U+261E, U+2640, U+2642, U+2660-2661, U+2663-2665, U+2667-266A, U+266C-266D, U+274C, U+2776-277F, U+2B0E-2B11, U+2E3A-2E3B, U+3000-3003, U+300A-3011, U+3013-301C, U+3131-318E, U+3200-321E, U+3251-327F, U+32B1-32BF, U+3380-3384, U+3388-33CA, U+33CF-33D0, U+33D3, U+33D6, U+33D8, U+33DB-33DD", + "bytes": 39808 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Thin.001.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+AC00-B174", + "bytes": 41552 + }, + { + "file": "FluxerSansKR/FluxerSansKR-ExtraLight.001.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+AC00-B174", + "bytes": 52176 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Light.001.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+AC00-B174", + "bytes": 54504 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Regular.001.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+AC00-B174", + "bytes": 55212 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Text.001.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+AC00-B174", + "bytes": 55128 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Medium.001.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+AC00-B174", + "bytes": 54944 + }, + { + "file": "FluxerSansKR/FluxerSansKR-SemiBold.001.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+AC00-B174", + "bytes": 55200 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Bold.001.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+AC00-B174", + "bytes": 46648 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Thin.002.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+B175-B6E9", + "bytes": 35828 + }, + { + "file": "FluxerSansKR/FluxerSansKR-ExtraLight.002.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+B175-B6E9", + "bytes": 46840 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Light.002.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+B175-B6E9", + "bytes": 49444 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Regular.002.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+B175-B6E9", + "bytes": 50212 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Text.002.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+B175-B6E9", + "bytes": 49988 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Medium.002.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+B175-B6E9", + "bytes": 50204 + }, + { + "file": "FluxerSansKR/FluxerSansKR-SemiBold.002.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+B175-B6E9", + "bytes": 49764 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Bold.002.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+B175-B6E9", + "bytes": 42020 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Thin.003.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+B6EA-BC5E", + "bytes": 42072 + }, + { + "file": "FluxerSansKR/FluxerSansKR-ExtraLight.003.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+B6EA-BC5E", + "bytes": 51840 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Light.003.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+B6EA-BC5E", + "bytes": 54132 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Regular.003.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+B6EA-BC5E", + "bytes": 55176 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Text.003.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+B6EA-BC5E", + "bytes": 54736 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Medium.003.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+B6EA-BC5E", + "bytes": 54708 + }, + { + "file": "FluxerSansKR/FluxerSansKR-SemiBold.003.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+B6EA-BC5E", + "bytes": 54888 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Bold.003.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+B6EA-BC5E", + "bytes": 46600 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Thin.004.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+BC5F-C1D3", + "bytes": 43648 + }, + { + "file": "FluxerSansKR/FluxerSansKR-ExtraLight.004.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+BC5F-C1D3", + "bytes": 55136 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Light.004.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+BC5F-C1D3", + "bytes": 58020 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Regular.004.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+BC5F-C1D3", + "bytes": 58772 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Text.004.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+BC5F-C1D3", + "bytes": 58360 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Medium.004.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+BC5F-C1D3", + "bytes": 58340 + }, + { + "file": "FluxerSansKR/FluxerSansKR-SemiBold.004.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+BC5F-C1D3", + "bytes": 58376 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Bold.004.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+BC5F-C1D3", + "bytes": 48256 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Thin.005.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+C1D4-C748", + "bytes": 45852 + }, + { + "file": "FluxerSansKR/FluxerSansKR-ExtraLight.005.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+C1D4-C748", + "bytes": 59684 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Light.005.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+C1D4-C748", + "bytes": 63088 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Regular.005.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+C1D4-C748", + "bytes": 63928 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Text.005.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+C1D4-C748", + "bytes": 63840 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Medium.005.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+C1D4-C748", + "bytes": 64120 + }, + { + "file": "FluxerSansKR/FluxerSansKR-SemiBold.005.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+C1D4-C748", + "bytes": 63948 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Bold.005.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+C1D4-C748", + "bytes": 53108 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Thin.006.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+C749-CCBD", + "bytes": 48364 + }, + { + "file": "FluxerSansKR/FluxerSansKR-ExtraLight.006.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+C749-CCBD", + "bytes": 62464 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Light.006.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+C749-CCBD", + "bytes": 65724 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Regular.006.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+C749-CCBD", + "bytes": 67172 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Text.006.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+C749-CCBD", + "bytes": 66984 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Medium.006.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+C749-CCBD", + "bytes": 66844 + }, + { + "file": "FluxerSansKR/FluxerSansKR-SemiBold.006.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+C749-CCBD", + "bytes": 66032 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Bold.006.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+C749-CCBD", + "bytes": 53604 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Thin.007.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+CCBE-D232", + "bytes": 45464 + }, + { + "file": "FluxerSansKR/FluxerSansKR-ExtraLight.007.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+CCBE-D232", + "bytes": 57076 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Light.007.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+CCBE-D232", + "bytes": 60012 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Regular.007.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+CCBE-D232", + "bytes": 61500 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Text.007.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+CCBE-D232", + "bytes": 61624 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Medium.007.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+CCBE-D232", + "bytes": 61624 + }, + { + "file": "FluxerSansKR/FluxerSansKR-SemiBold.007.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+CCBE-D232", + "bytes": 61684 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Bold.007.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+CCBE-D232", + "bytes": 52660 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Thin.008.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+D233-D7A3", + "bytes": 46932 + }, + { + "file": "FluxerSansKR/FluxerSansKR-ExtraLight.008.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+D233-D7A3", + "bytes": 58312 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Light.008.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+D233-D7A3", + "bytes": 61908 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Regular.008.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+D233-D7A3", + "bytes": 63284 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Text.008.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+D233-D7A3", + "bytes": 63188 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Medium.008.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+D233-D7A3", + "bytes": 63244 + }, + { + "file": "FluxerSansKR/FluxerSansKR-SemiBold.008.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+D233-D7A3", + "bytes": 62252 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Bold.008.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+D233-D7A3", + "bytes": 51804 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Thin.009.woff2", + "weight": 100, + "style": "normal", + "unicodeRange": "U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129", + "bytes": 10072 + }, + { + "file": "FluxerSansKR/FluxerSansKR-ExtraLight.009.woff2", + "weight": 200, + "style": "normal", + "unicodeRange": "U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129", + "bytes": 10004 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Light.009.woff2", + "weight": 300, + "style": "normal", + "unicodeRange": "U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129", + "bytes": 10000 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Regular.009.woff2", + "weight": 400, + "style": "normal", + "unicodeRange": "U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129", + "bytes": 9976 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Text.009.woff2", + "weight": 450, + "style": "normal", + "unicodeRange": "U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129", + "bytes": 10064 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Medium.009.woff2", + "weight": 500, + "style": "normal", + "unicodeRange": "U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129", + "bytes": 10048 + }, + { + "file": "FluxerSansKR/FluxerSansKR-SemiBold.009.woff2", + "weight": 600, + "style": "normal", + "unicodeRange": "U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129", + "bytes": 10216 + }, + { + "file": "FluxerSansKR/FluxerSansKR-Bold.009.woff2", + "weight": 700, + "style": "normal", + "unicodeRange": "U+FB01-FB02, U+FE10-FE19, U+FE30-FE33, U+FE35-FE44, U+FE47-FE48, U+FF01-FF5D, U+FFE0-FFE3, U+FFE5-FFE6, U+1F100, U+1F110-1F129", + "bytes": 9960 + } + ] + } + ] +} diff --git a/tools/ci/src/app_proxy.rs b/tools/ci/src/app_proxy.rs index 11c744663..ccef36dc4 100644 --- a/tools/ci/src/app_proxy.rs +++ b/tools/ci/src/app_proxy.rs @@ -17,6 +17,7 @@ use std::path::{Path, PathBuf}; const DEFAULT_PUBLIC_ASSET_BASE_URL: &str = "https://fluxerstatic.com"; const DEFAULT_APP_PROXY_TIME_FREEZE_ENABLED: &str = "true"; +const DEFAULT_APP_PROXY_BUNDLE_LOCAL_ASSETS: &str = "false"; const DEFAULT_STATIC_BUCKET: &str = "fluxer-static"; const DEFAULT_S3_ENDPOINT: &str = "https://ewr1.vultrobjects.com"; const IMMUTABLE_ASSET_CACHE_CONTROL: &str = "public, max-age=31536000, immutable"; @@ -139,6 +140,11 @@ fn build_and_extract_command() -> Result { env::var("FLUXER_APP_PROXY_TIME_FREEZE_ENABLED") .unwrap_or_else(|_| DEFAULT_APP_PROXY_TIME_FREEZE_ENABLED.to_string()), ) + .env( + "BUNDLE_LOCAL_ASSETS", + env::var("BUNDLE_LOCAL_ASSETS") + .unwrap_or_else(|_| DEFAULT_APP_PROXY_BUNDLE_LOCAL_ASSETS.to_string()), + ) .env( "CACHE_FROM", env::var("CACHE_FROM") @@ -416,6 +422,28 @@ mod tests { ))); } + #[test] + fn hosted_bake_trims_the_local_asset_tree_by_default() { + assert_eq!(DEFAULT_APP_PROXY_BUNDLE_LOCAL_ASSETS, "false"); + } + + #[test] + fn dockerfile_guards_the_trim_on_an_absolute_asset_base_url() { + let dockerfile = include_str!("../../../fluxer_app_proxy/Dockerfile"); + let trim = dockerfile + .split("FROM alpine:3.21 AS app-assets") + .nth(1) + .expect("app-assets stage"); + assert!( + trim.contains("ARG PUBLIC_ASSET_BASE_URL"), + "the app-assets stage must redeclare PUBLIC_ASSET_BASE_URL to be able to check it" + ); + assert!( + trim.contains("http://* | https://*"), + "the trim must assert an absolute PUBLIC_ASSET_BASE_URL before deleting anything" + ); + } + #[test] fn asset_manifest_entries_are_sorted_and_relative_to_dist() { let temp = tempfile::tempdir().unwrap(); diff --git a/tools/ci/src/app_wasm.rs b/tools/ci/src/app_wasm.rs index 793a32545..91ed4bdfd 100644 --- a/tools/ci/src/app_wasm.rs +++ b/tools/ci/src/app_wasm.rs @@ -39,6 +39,105 @@ pub fn run_build_markdown_parser_wasm(args: BuildMarkdownParserWasmArgs) -> Resu build_markdown_parser_wasm(&app_dir) } +const WASM_CC_ENV: &str = "CC_wasm32_unknown_unknown"; +const WASM_AR_ENV: &str = "AR_wasm32_unknown_unknown"; + +fn apply_wasm_c_toolchain(spec: CommandSpec) -> Result { + if env::var_os(WASM_CC_ENV).is_some_and(|value| !value.is_empty()) { + return Ok(spec); + } + + let clang = discover_wasm_clang()?; + println!("+ {WASM_CC_ENV}={}", clang.display()); + let mut spec = spec.env(WASM_CC_ENV, clang.as_os_str()); + if env::var_os(WASM_AR_ENV).is_none_or(|value| value.is_empty()) + && let Some(archiver) = discover_wasm_ar(&clang) + { + println!("+ {WASM_AR_ENV}={}", archiver.display()); + spec = spec.env(WASM_AR_ENV, archiver.as_os_str()); + } + Ok(spec) +} + +fn discover_wasm_clang() -> Result { + discover_wasm_clang_from(wasm_clang_candidates()) +} + +fn wasm_clang_candidates() -> Vec { + let mut candidates: Vec = Vec::new(); + if let Some(explicit) = env::var_os("CC").filter(|value| !value.is_empty()) { + candidates.push(PathBuf::from(explicit)); + } + candidates.push(PathBuf::from("clang")); + if let Some(prefix) = homebrew_llvm_prefix() { + candidates.push(prefix.join("bin/clang")); + } + candidates.push(PathBuf::from("/opt/homebrew/opt/llvm/bin/clang")); + candidates.push(PathBuf::from("/usr/local/opt/llvm/bin/clang")); + candidates +} + +fn discover_wasm_clang_from(candidates: Vec) -> Result { + let mut seen: Vec = Vec::new(); + for candidate in candidates { + if seen.contains(&candidate) { + continue; + } + seen.push(candidate.clone()); + if clang_targets_wasm32(&candidate) { + return Ok(candidate); + } + } + + Err(anyhow!( + "No clang with a wasm32 backend was found, so cc-rs cannot compile zstd-sys for \ + wasm32-unknown-unknown.\nTried: {}\nOn macOS the Xcode clang has no wasm32 target; \ + install a full LLVM and retry:\n brew install llvm\nOr point the build at one \ + explicitly:\n export {WASM_CC_ENV}=/path/to/clang\n export {WASM_AR_ENV}=/path/to/llvm-ar", + seen.iter() + .map(|path| path.display().to_string()) + .collect::>() + .join(", "), + )) +} + +fn discover_wasm_ar(clang: &Path) -> Option { + if let Some(dir) = clang.parent().filter(|dir| !dir.as_os_str().is_empty()) { + let sibling = dir.join("llvm-ar"); + if sibling.is_file() { + return Some(sibling); + } + } + let path_ar = PathBuf::from("llvm-ar"); + command_succeeds(CommandSpec::new(&path_ar).arg("--version")).then_some(path_ar) +} + +fn homebrew_llvm_prefix() -> Option { + let output = std::process::Command::new("brew") + .args(["--prefix", "llvm"]) + .output() + .ok()?; + if !output.status.success() { + return None; + } + let prefix = String::from_utf8(output.stdout).ok()?; + let prefix = prefix.trim(); + (!prefix.is_empty()).then(|| PathBuf::from(prefix)) +} + +fn clang_targets_wasm32(clang: &Path) -> bool { + let Ok(output) = std::process::Command::new(clang) + .arg("--print-targets") + .output() + else { + return false; + }; + if !output.status.success() { + return false; + } + String::from_utf8_lossy(&output.stdout).contains("wasm32") +} + fn build_markdown_parser_wasm(app_dir: &Path) -> Result<()> { let rust_source_dir = app_dir.join("../packages/markdown_parser/rust"); let bytes_path = @@ -46,12 +145,12 @@ fn build_markdown_parser_wasm(app_dir: &Path) -> Result<()> { let temp = TempDir::new().context("Failed to create source temp directory")?; let target_dir = temp.path().join("target"); - run_command( + run_command(apply_wasm_c_toolchain( CommandSpec::new("cargo") .args(["build", "--release", "--target", "wasm32-unknown-unknown"]) .env("CARGO_TARGET_DIR", target_dir.to_string_lossy().as_ref()) .current_dir(&rust_source_dir), - )?; + )?)?; let wasm_path = target_dir.join("wasm32-unknown-unknown/release/fluxer_markdown_parser.wasm"); let wasm = @@ -93,7 +192,7 @@ fn build_libfluxcore_wasm(app_dir: &Path) -> Result<()> { build = build.env("RUSTFLAGS", rustflags); } - run_command(build)?; + run_command(apply_wasm_c_toolchain(build)?)?; let wasm_bindgen = ensure_wasm_bindgen_cli()?; let temp = TempDir::new().context("Failed to create libfluxcore wasm-bindgen temp dir")?; let bindgen_dir = temp.path().join("bindgen"); @@ -374,6 +473,64 @@ export const MARKDOWN_PARSER_WASM_BASE64 =\n\ assert!(patched.contains("async function __wbg_load(module, imports) {}")); } + #[test] + fn wasm_clang_discovery_reports_an_actionable_remedy_when_nothing_supports_wasm32() { + let error = discover_wasm_clang_from(vec![ + PathBuf::from("/nonexistent/xcode/clang"), + PathBuf::from("/nonexistent/xcode/clang"), + PathBuf::from("/nonexistent/other/clang"), + ]) + .expect_err("no candidate exists, so discovery must fail"); + let message = error.to_string(); + + assert!(message.contains("brew install llvm"), "{message}"); + assert!(message.contains(WASM_CC_ENV), "{message}"); + assert!(message.contains(WASM_AR_ENV), "{message}"); + assert!(message.contains("/nonexistent/other/clang"), "{message}"); + assert_eq!( + message.matches("/nonexistent/xcode/clang").count(), + 1, + "duplicate candidates must be reported once: {message}" + ); + } + + #[test] + fn wasm_clang_discovery_prefers_a_wasm32_capable_candidate_over_an_earlier_one() { + let temp = TempDir::new().expect("temp dir"); + let clang = temp.path().join("clang"); + fs::write( + &clang, + "#!/bin/sh\nif [ \"$1\" = \"--print-targets\" ]; then echo ' wasm32 - WebAssembly 32-bit'; fi\n", + ) + .expect("write fake clang"); + make_executable(&clang); + + let found = + discover_wasm_clang_from(vec![PathBuf::from("/nonexistent/clang"), clang.clone()]) + .expect("the fake clang advertises wasm32"); + assert_eq!(found, clang); + } + + #[test] + fn wasm_ar_is_taken_from_the_discovered_clang_toolchain() { + let temp = TempDir::new().expect("temp dir"); + let clang = temp.path().join("clang"); + let archiver = temp.path().join("llvm-ar"); + fs::write(&clang, "").expect("write clang"); + fs::write(&archiver, "").expect("write llvm-ar"); + + assert_eq!(discover_wasm_ar(&clang), Some(archiver)); + } + + #[cfg(unix)] + fn make_executable(path: &Path) { + use std::os::unix::fs::PermissionsExt; + fs::set_permissions(path, fs::Permissions::from_mode(0o755)).expect("chmod"); + } + + #[cfg(not(unix))] + fn make_executable(_path: &Path) {} + #[test] fn libfluxcore_bindgen_dts_reset_hook_is_inserted() { let content = "export function is_animated_image(input: Uint8Array): boolean;\nexport type InitInput = RequestInfo;"; diff --git a/tools/ci/src/common.rs b/tools/ci/src/common.rs index eaa1e7f77..7fcadc313 100644 --- a/tools/ci/src/common.rs +++ b/tools/ci/src/common.rs @@ -5,7 +5,6 @@ use aws_config::{BehaviorVersion, Region, retry::RetryConfig}; use aws_sdk_s3::Client as S3Client; use aws_sdk_s3::error::ProvideErrorMetadata; use aws_sdk_s3::primitives::ByteStream; -use aws_sdk_s3::types::MetadataDirective; use base64::Engine; use base64::engine::general_purpose::STANDARD as BASE64; use chrono::{DateTime, Datelike, NaiveDate, NaiveDateTime, TimeZone, Timelike, Utc}; @@ -597,55 +596,6 @@ pub(crate) async fn upload_s3_plan_overwrite( Ok(stats) } -pub(crate) async fn upload_s3_plan_sync( - client: &S3Client, - bucket: &str, - plan: Vec, -) -> Result { - ensure_unique_s3_keys(&plan)?; - let existing_objects = existing_s3_objects_for_plan(client, bucket, &plan).await?; - let mut to_upload = Vec::new(); - let mut skipped_existing = 0_usize; - for item in plan { - match existing_objects.get(&item.key) { - Some(remote) if s3_object_matches_local(&item, remote)? => skipped_existing += 1, - _ => to_upload.push(item), - } - } - - let concurrency = s3_write_concurrency(); - let semaphore = Arc::new(Semaphore::new(concurrency)); - let bucket = bucket.to_string(); - let mut tasks = JoinSet::new(); - for item in to_upload { - let permit = semaphore - .clone() - .acquire_owned() - .await - .context("S3 upload semaphore closed")?; - let client = client.clone(); - let bucket = bucket.clone(); - tasks.spawn(async move { - let _permit = permit; - put_file_to_s3_overwrite(&client, &bucket, &item) - .await - .with_context(|| format!("Failed sync upload for s3://{}/{}", bucket, item.key))?; - Ok::<_, anyhow::Error>(()) - }); - } - - let mut stats = S3UploadStats { - skipped_existing, - ..Default::default() - }; - while let Some(result) = tasks.join_next().await { - result.context("S3 upload task failed")??; - stats.uploaded += 1; - } - - Ok(stats) -} - #[derive(Debug, Clone, PartialEq, Eq)] pub(crate) struct S3ObjectMetadata { pub(crate) e_tag: Option, @@ -752,22 +702,6 @@ fn ensure_existing_s3_object_matches_local( Ok(()) } -fn s3_object_matches_local(item: &S3UploadPlanItem, remote: &S3ObjectMetadata) -> Result { - let local = s3_file_identity(&item.path)?; - if let Some(remote_size) = remote.size - && (remote_size < 0 || remote_size as u64 != local.size) - { - return Ok(false); - } - let Some(e_tag) = remote.e_tag.as_deref() else { - return Ok(false); - }; - let Some(remote_md5) = s3_etag_md5(e_tag) else { - return Ok(false); - }; - Ok(remote_md5 == local.md5_hex) -} - fn s3_file_identity(path: &Path) -> Result { let mut file = fs::File::open(path).with_context(|| format!("Failed to read {}", path.display()))?; @@ -1181,125 +1115,6 @@ pub(crate) async fn list_s3_keys( .collect()) } -pub(crate) async fn delete_s3_objects( - client: &S3Client, - bucket: &str, - keys: &[String], -) -> Result { - let mut deleted = 0_usize; - for key in keys { - delete_s3_object(client, bucket, key).await?; - deleted += 1; - } - Ok(deleted) -} - -async fn delete_s3_object(client: &S3Client, bucket: &str, key: &str) -> Result<()> { - println!("Deleting s3://{bucket}/{key}"); - let attempts = s3_retry_attempts(); - for attempt in 1..=attempts { - match client.delete_object().bucket(bucket).key(key).send().await { - Ok(_) => return Ok(()), - Err(error) => { - let code = error - .as_service_error() - .and_then(|error| error.code()) - .map(ToOwned::to_owned); - let status = error - .raw_response() - .map(|response| response.status().as_u16()); - if is_retryable_s3_error(code.as_deref(), status) && attempt < attempts { - sleep_before_s3_retry( - "delete", - &format!("s3://{bucket}/{key}"), - attempt, - attempts, - code.as_deref(), - status, - ) - .await; - continue; - } - let summary = s3_error_summary(code.as_deref(), status); - return Err(error) - .with_context(|| format!("Failed to delete s3://{bucket}/{key}{summary}")); - } - } - } - unreachable!("S3 retry attempts are always greater than zero") -} - -pub(crate) async fn replace_s3_object_metadata( - client: &S3Client, - bucket: &str, - key: &str, - content_type: Option<&str>, - cache_control: Option<&str>, -) -> Result<()> { - println!("Replacing metadata for s3://{bucket}/{key}"); - let attempts = s3_retry_attempts(); - for attempt in 1..=attempts { - let mut request = client - .copy_object() - .bucket(bucket) - .key(key) - .copy_source(s3_copy_source(bucket, key)) - .metadata_directive(MetadataDirective::Replace); - if let Some(content_type) = content_type { - request = request.content_type(content_type); - } - if let Some(cache_control) = cache_control { - request = request.cache_control(cache_control); - } - match request.send().await { - Ok(_) => return Ok(()), - Err(error) => { - let code = error - .as_service_error() - .and_then(|error| error.code()) - .map(ToOwned::to_owned); - let status = error - .raw_response() - .map(|response| response.status().as_u16()); - if is_retryable_s3_error(code.as_deref(), status) && attempt < attempts { - sleep_before_s3_retry( - "metadata replace", - &format!("s3://{bucket}/{key}"), - attempt, - attempts, - code.as_deref(), - status, - ) - .await; - continue; - } - let summary = s3_error_summary(code.as_deref(), status); - return Err(error).with_context(|| { - format!("Failed to replace metadata for s3://{bucket}/{key}{summary}") - }); - } - } - } - unreachable!("S3 retry attempts are always greater than zero") -} - -fn s3_copy_source(bucket: &str, key: &str) -> String { - format!("{bucket}/{}", percent_encode_s3_copy_source_key(key)) -} - -fn percent_encode_s3_copy_source_key(key: &str) -> String { - let mut encoded = String::with_capacity(key.len()); - for byte in key.bytes() { - match byte { - b'A'..=b'Z' | b'a'..=b'z' | b'0'..=b'9' | b'-' | b'_' | b'.' | b'~' | b'/' => { - encoded.push(byte as char) - } - _ => encoded.push_str(&format!("%{byte:02X}")), - } - } - encoded -} - async fn list_s3_objects( client: &S3Client, bucket: &str, @@ -1797,14 +1612,6 @@ mod tests { assert_eq!(s3_content_type_for_key("assets/blob.unknown"), None); } - #[test] - fn s3_copy_source_percent_encodes_key_bytes_but_keeps_slashes() { - assert_eq!( - s3_copy_source("bucket", "assets/chunk name+1.js"), - "bucket/assets/chunk%20name%2B1.js" - ); - } - #[test] fn collect_and_copy_dir_contents_are_sorted_and_recursive() { let temp = tempfile::tempdir().unwrap(); diff --git a/tools/ci/src/lib.rs b/tools/ci/src/lib.rs index 150209544..25fa9d320 100644 --- a/tools/ci/src/lib.rs +++ b/tools/ci/src/lib.rs @@ -12,7 +12,6 @@ mod functions; mod gateway; mod release; mod schema; -mod static_bucket; use anyhow::Result; use clap::{Parser, Subcommand}; @@ -38,10 +37,8 @@ enum Command { CiScripts(ci_workflow::CiScriptsArgs), CleanSchemaGeneratedFiles(schema::CleanSchemaGeneratedFilesArgs), Gateway(gateway::GatewayArgs), - RepairStaticAssetMetadata(static_bucket::RepairStaticAssetMetadataArgs), Release(release::ReleaseArgs), ResolveCalver(calver::ResolveCalverArgs), - SyncStaticBucket(static_bucket::SyncStaticBucketArgs), TestWebrtcSenderRust(desktop_native::TestWebrtcSenderRustArgs), } @@ -60,12 +57,8 @@ pub async fn run() -> Result<()> { Command::CiScripts(args) => ci_workflow::run_ci_scripts(args).await, Command::CleanSchemaGeneratedFiles(args) => schema::run_clean_generated_files(args), Command::Gateway(args) => gateway::run_gateway(args), - Command::RepairStaticAssetMetadata(args) => { - static_bucket::repair_asset_metadata(args).await - } Command::Release(args) => release::run(args).await, Command::ResolveCalver(args) => calver::run(args), - Command::SyncStaticBucket(args) => static_bucket::run(args).await, Command::TestWebrtcSenderRust(args) => desktop_native::run_test_webrtc_sender_rust(args), } } diff --git a/tools/ci/src/static_bucket.rs b/tools/ci/src/static_bucket.rs deleted file mode 100644 index f4da73f82..000000000 --- a/tools/ci/src/static_bucket.rs +++ /dev/null @@ -1,266 +0,0 @@ -// SPDX-License-Identifier: AGPL-3.0-or-later - -use crate::common::{ - S3UploadPlanItem, collect_files, delete_s3_objects, list_s3_keys, path_to_s3_key, - replace_s3_object_metadata, s3_client, s3_content_type_for_key, upload_s3_plan_sync, -}; -use anyhow::{Context, Result, ensure}; -use clap::Args; -use std::collections::BTreeMap; -use std::env; -use std::path::{Path, PathBuf}; -use std::sync::Arc; -use tokio::sync::Semaphore; -use tokio::task::JoinSet; - -const DEFAULT_SOURCE: &str = "fluxer_static"; -const DEFAULT_STATIC_BUCKET: &str = "fluxer-static"; -const DEFAULT_S3_ENDPOINT: &str = "https://ewr1.vultrobjects.com"; -const DEFAULT_ASSET_PREFIX: &str = "assets/"; -const IMMUTABLE_ASSET_CACHE_CONTROL: &str = "public, max-age=31536000, immutable"; -const DEFAULT_REPAIR_CONCURRENCY: usize = 8; - -#[derive(Debug, Args, Clone)] -pub struct SyncStaticBucketArgs { - #[arg(long, default_value = DEFAULT_SOURCE)] - source: PathBuf, - #[arg(long, default_value = DEFAULT_STATIC_BUCKET)] - bucket: String, -} - -#[derive(Debug, Args, Clone)] -pub struct RepairStaticAssetMetadataArgs { - #[arg(long, default_value = DEFAULT_STATIC_BUCKET)] - bucket: String, - #[arg(long, default_value = DEFAULT_ASSET_PREFIX)] - prefix: String, -} - -pub async fn run(args: SyncStaticBucketArgs) -> Result<()> { - ensure!( - args.source.is_dir(), - "Static source directory is missing: {}", - args.source.display() - ); - - let upload_plan = static_upload_plan(&args.source)?; - let client = s3_client(Some(DEFAULT_S3_ENDPOINT)).await?; - - let plan = upload_plan - .into_iter() - .map(|(key, path)| S3UploadPlanItem::new(path, key).with_detected_content_type()) - .collect::>(); - let stats = upload_s3_plan_sync(&client, &args.bucket, plan).await?; - - println!( - "Static bucket sync complete: uploaded {} file(s), skipped existing {}", - stats.uploaded, stats.skipped_existing - ); - - let remote_keys = list_s3_keys(&client, &args.bucket, "").await?; - let markdown_keys = remote_keys - .into_iter() - .filter(|key| key.to_ascii_lowercase().ends_with(".md")) - .collect::>(); - let removed = delete_s3_objects(&client, &args.bucket, &markdown_keys).await?; - println!("Static bucket sync removed {removed} stray .md object(s)"); - - Ok(()) -} - -pub async fn repair_asset_metadata(args: RepairStaticAssetMetadataArgs) -> Result<()> { - let client = s3_client(Some(DEFAULT_S3_ENDPOINT)).await?; - let keys = list_s3_keys(&client, &args.bucket, &args.prefix).await?; - let mut skipped = 0_usize; - let mut tasks = JoinSet::new(); - let semaphore = Arc::new(Semaphore::new(static_asset_repair_concurrency())); - - for key in keys { - let Some(content_type) = s3_content_type_for_key(&key) else { - skipped += 1; - continue; - }; - let permit = semaphore - .clone() - .acquire_owned() - .await - .context("S3 repair semaphore closed")?; - let client = client.clone(); - let bucket = args.bucket.clone(); - tasks.spawn(async move { - let _permit = permit; - replace_s3_object_metadata( - &client, - &bucket, - &key, - Some(content_type), - Some(IMMUTABLE_ASSET_CACHE_CONTROL), - ) - .await?; - Ok::<_, anyhow::Error>(()) - }); - } - - let mut repaired = 0_usize; - while let Some(result) = tasks.join_next().await { - result.context("S3 metadata repair task failed")??; - repaired += 1; - } - - println!( - "Static asset metadata repair complete: repaired {repaired} file(s), skipped {skipped}" - ); - Ok(()) -} - -fn static_asset_repair_concurrency() -> usize { - env::var("S3_WRITE_CONCURRENCY") - .ok() - .and_then(|value| value.parse::().ok()) - .filter(|value| *value > 0) - .unwrap_or(DEFAULT_REPAIR_CONCURRENCY) -} - -fn static_upload_plan(source: &Path) -> Result> { - let mut plan = BTreeMap::new(); - for file in collect_files(source)? { - let relative = file - .strip_prefix(source) - .with_context(|| format!("Failed to relativize {}", file.display()))?; - if !should_sync_static_path(relative) { - continue; - } - let key = path_to_s3_key(relative); - if !key.is_empty() { - plan.insert(key, file); - } - } - Ok(plan) -} - -fn should_sync_static_path(relative: &Path) -> bool { - if relative - .extension() - .and_then(|ext| ext.to_str()) - .is_some_and(|ext| ext.eq_ignore_ascii_case("md")) - { - return false; - } - let Some(first) = relative.components().next() else { - return false; - }; - match first { - std::path::Component::Normal(value) => { - let value = value.to_string_lossy(); - value != ".github" && value != "assets" - } - _ => false, - } -} - -#[cfg(test)] -mod tests { - use super::*; - use std::fs; - - fn write_file(path: &Path, contents: &str) { - if let Some(parent) = path.parent() { - fs::create_dir_all(parent).unwrap(); - } - fs::write(path, contents).unwrap(); - } - - #[test] - fn upload_plan_excludes_github_and_assets_roots() { - let temp = tempfile::tempdir().unwrap(); - let source = temp.path(); - write_file(&source.join("index.html"), "html"); - write_file(&source.join("docs/install.html"), "docs"); - write_file(&source.join(".github/workflows/ignored.yaml"), "workflow"); - write_file(&source.join("assets/app.js"), "asset"); - - let keys = static_upload_plan(source) - .unwrap() - .keys() - .cloned() - .collect::>(); - - assert_eq!(keys, vec!["docs/install.html", "index.html"]); - } - - #[test] - fn upload_plan_is_deterministic_and_keeps_non_root_assets_paths() { - let temp = tempfile::tempdir().unwrap(); - let source = temp.path(); - write_file(&source.join("z.html"), "z"); - write_file(&source.join("docs/assets/keep.js"), "keep"); - write_file(&source.join("a.html"), "a"); - - let keys = static_upload_plan(source) - .unwrap() - .keys() - .cloned() - .collect::>(); - - assert_eq!(keys, vec!["a.html", "docs/assets/keep.js", "z.html"]); - } - - #[test] - fn static_key_filter_matches_workflow_excludes() { - assert!(should_sync_static_path(Path::new("index.html"))); - assert!(should_sync_static_path( - Path::new("docs").join("install.html").as_path() - )); - assert!(!should_sync_static_path( - Path::new("assets").join("app.js").as_path() - )); - assert!(!should_sync_static_path( - Path::new(".github") - .join("workflows") - .join("sync.yaml") - .as_path() - )); - assert!(!should_sync_static_path(Path::new(""))); - } - - #[test] - fn static_key_filter_excludes_markdown() { - assert!(!should_sync_static_path(Path::new( - "THIRD_PARTY_LICENSES.md" - ))); - assert!(!should_sync_static_path( - Path::new("fonts").join("NOTICE.md").as_path() - )); - assert!(!should_sync_static_path( - Path::new("emoji").join("README.MD").as_path() - )); - assert!(should_sync_static_path(Path::new("index.html"))); - } - - #[test] - fn upload_plan_excludes_markdown_files() { - let temp = tempfile::tempdir().unwrap(); - let source = temp.path(); - write_file(&source.join("index.html"), "html"); - write_file(&source.join("THIRD_PARTY_LICENSES.md"), "licenses"); - write_file(&source.join("fonts/NOTICE.md"), "notice"); - - let keys = static_upload_plan(source) - .unwrap() - .keys() - .cloned() - .collect::>(); - - assert_eq!(keys, vec!["index.html"]); - } - - #[test] - fn repair_metadata_args_default_to_app_assets_prefix() { - let args = RepairStaticAssetMetadataArgs { - bucket: DEFAULT_STATIC_BUCKET.to_string(), - prefix: DEFAULT_ASSET_PREFIX.to_string(), - }; - assert_eq!(args.bucket, "fluxer-static"); - assert_eq!(args.prefix, "assets/"); - } -} diff --git a/tools/fonts/build_fonts.py b/tools/fonts/build_fonts.py new file mode 100644 index 000000000..5f2dd6486 --- /dev/null +++ b/tools/fonts/build_fonts.py @@ -0,0 +1,1722 @@ +#!/usr/bin/env python3 +# SPDX-License-Identifier: AGPL-3.0-or-later + +from __future__ import annotations + +import argparse +import base64 +import hashlib +import io +import json +import os +import re +import shutil +import statistics +import sys +import tarfile +import urllib.parse +import urllib.request +import zipfile +from concurrent.futures import ProcessPoolExecutor +from dataclasses import dataclass, field +from pathlib import Path +from typing import Union + +from fontTools import unicodedata as ftunicodedata +from fontTools.pens.recordingPen import DecomposingRecordingPen +from fontTools.subset import Options as SubsetOptions +from fontTools.subset import Subsetter +from fontTools.ttLib import TTFont + +REPO_ROOT = Path(__file__).resolve().parents[2] +PACKAGE_ROOT = REPO_ROOT / "packages" / "fonts" +FILES_DIR = PACKAGE_ROOT / "files" +CSS_DIR = PACKAGE_ROOT / "css" +MANIFEST_PATH = PACKAGE_ROOT / "manifest.json" +TOOL_ROOT = Path(__file__).resolve().parent +LOCK_PATH = TOOL_ROOT / "fonts.lock.json" + +SPDX_CSS_HEADER = "/* SPDX-License-Identifier: AGPL-3.0-or-later */" +GENERATED_CSS_HEADER = "/* Generated by tools/fonts/build_fonts.py. Do not edit by hand. */" + +CHUNK_TARGET_BYTES = 64 * 1024 +MIN_STANDALONE_BLOCK = 256 + +PLEX_GASP = {8: 10, 16: 7, 65535: 15} +CJK_GASP = {7: 10, 65535: 15} + +IDENTITY_NAME_IDS = (1, 3, 4, 6, 16, 17, 18, 20, 21, 22, 25) +RENAME_NAME_IDS = IDENTITY_NAME_IDS +NO_PLEX_NAME_IDS = IDENTITY_NAME_IDS + +MUTABLE_TABLES = frozenset({"gasp", "name", "head"}) +CRITICAL_TABLES = ( + "glyf", + "loca", + "fpgm", + "prep", + "cvt ", + "cmap", + "OS/2", + "hhea", + "hmtx", + "maxp", + "post", + "GDEF", + "GPOS", + "GSUB", +) +HEAD_CHECKSUM_SLICE = slice(8, 12) + +HINTING_TABLES = ("fpgm", "prep", "cvt ") + +METRIC_FIELDS: tuple[tuple[str, str], ...] = ( + ("head", "unitsPerEm"), + ("head", "macStyle"), + ("hhea", "ascender"), + ("hhea", "descender"), + ("hhea", "lineGap"), + ("hhea", "caretSlopeRise"), + ("hhea", "caretSlopeRun"), + ("OS/2", "sTypoAscender"), + ("OS/2", "sTypoDescender"), + ("OS/2", "sTypoLineGap"), + ("OS/2", "usWinAscent"), + ("OS/2", "usWinDescent"), + ("OS/2", "sxHeight"), + ("OS/2", "sCapHeight"), + ("OS/2", "usWeightClass"), + ("OS/2", "fsSelection"), + ("vhea", "ascent"), + ("vhea", "descent"), + ("vhea", "lineGap"), +) + +UPRIGHT_WEIGHTS = ( + "Thin", + "ExtraLight", + "Light", + "Regular", + "Text", + "Medium", + "SemiBold", + "Bold", +) +ITALIC_WEIGHTS = ( + "ThinItalic", + "ExtraLightItalic", + "LightItalic", + "Italic", + "TextItalic", + "MediumItalic", + "SemiBoldItalic", + "BoldItalic", +) + +CSS_WEIGHTS: dict[str, int] = { + "Thin": 100, + "ExtraLight": 200, + "Light": 300, + "Regular": 400, + "Text": 450, + "Medium": 500, + "SemiBold": 600, + "Bold": 700, + "ExtraBold": 800, +} + + +def css_weight(weight: str) -> int: + upright = ( + weight[: -len("Italic")] if weight.endswith("Italic") and weight != "Italic" else weight + ) + if upright == "Italic": + upright = "Regular" + return CSS_WEIGHTS[upright] + + +def css_style(weight: str) -> str: + return "italic" if weight.endswith("Italic") else "normal" + + +@dataclass(frozen=True) +class NpmSource: + package: str + version: str + + @property + def label(self) -> str: + return f"{self.package}@{self.version}" + + def provenance(self) -> dict[str, str]: + return {"type": "npm", "package": self.package, "version": self.version} + + def fetch(self, cache: Path) -> Path: + root = cache / f"npm-{self.package.replace('/', '-').lstrip('@')}-{self.version}" + marker = root / ".complete" + meta_url = f"https://registry.npmjs.org/{self.package}/{self.version}" + if not marker.exists(): + meta = json.loads(_http_get(meta_url)) + tarball = _http_get(meta["dist"]["tarball"]) + _check_integrity(meta["dist"]["integrity"], tarball, self.label) + _extract_tar(tarball, root) + marker.write_text(hashlib.sha256(tarball).hexdigest() + "\n") + return root / "package" + + def artifact_sha256(self, cache: Path) -> str: + root = cache / f"npm-{self.package.replace('/', '-').lstrip('@')}-{self.version}" + return (root / ".complete").read_text().strip() + + +@dataclass(frozen=True) +class GithubReleaseSource: + repo: str + tag: str + asset: str + + @property + def label(self) -> str: + return f"{self.repo}@{self.tag}:{self.asset}" + + def provenance(self) -> dict[str, str]: + return { + "type": "github-release", + "repo": self.repo, + "tag": self.tag, + "asset": self.asset, + } + + def _root(self, cache: Path) -> Path: + slug = re.sub(r"[^A-Za-z0-9]+", "-", f"{self.repo}-{self.tag}").strip("-") + return cache / f"gh-{slug}" + + def fetch(self, cache: Path) -> Path: + root = self._root(cache) + marker = root / ".complete" + if not marker.exists(): + url = ( + f"https://github.com/{self.repo}/releases/download/" + f"{urllib.parse.quote(self.tag, safe='/')}/{self.asset}" + ) + blob = _http_get(url) + _extract_zip(blob, root) + marker.write_text(hashlib.sha256(blob).hexdigest() + "\n") + return root + + def artifact_sha256(self, cache: Path) -> str: + return (self._root(cache) / ".complete").read_text().strip() + + +Source = Union[NpmSource, GithubReleaseSource] + +SOURCES: dict[str, Source] = { + "plex-sans": NpmSource("@ibm/plex-sans", "1.1.0"), + "plex-mono": NpmSource("@ibm/plex-mono", "2.5.0"), + "plex-sans-arabic": NpmSource("@ibm/plex-sans-arabic", "1.1.0"), + "plex-sans-devanagari": NpmSource("@ibm/plex-sans-devanagari", "1.1.0"), + "plex-sans-hebrew": NpmSource("@ibm/plex-sans-hebrew", "1.1.0"), + "plex-sans-thai": NpmSource("@ibm/plex-sans-thai", "1.1.0"), + "plex-sans-thai-looped": NpmSource("@ibm/plex-sans-thai-looped", "1.1.0"), + "plex-sans-jp": NpmSource("@ibm/plex-sans-jp", "3.0.0"), + "plex-sans-sc": NpmSource("@ibm/plex-sans-sc", "1.1.0"), + "plex-sans-tc": NpmSource("@ibm/plex-sans-tc", "1.1.1"), + "plex-sans-kr": GithubReleaseSource( + "IBM/plex", "@ibm/plex-sans-kr@1.1.0", "ibm-plex-sans-kr.zip" + ), +} + + +REBUILD = "rebuild" +SUBSET = "subset" + + +@dataclass(frozen=True) +class Family: + out_dir: str + prefix: str + weights: tuple[str, ...] + source: str + src_subdir: str + mode: str + gasp: dict[int, int] + css_family: str + stylesheet: str + + def source_files(self) -> list[str]: + return [f"{self.prefix}-{w}.woff2" for w in self.weights] + + +LATIN_WEIGHTS = UPRIGHT_WEIGHTS + ITALIC_WEIGHTS +PLEX_WOFF2 = "fonts/complete/woff2" + +LATIN_CORE_STYLESHEETS = ("fluxer-sans.css", "fluxer-mono.css") + +ALWAYS_BUNDLED_LATIN_FAMILIES: tuple[str, ...] = ("Fluxer Sans", "Fluxer Mono") + +FAMILIES: tuple[Family, ...] = ( + Family( + "FluxerSans", + "IBMPlexSans", + LATIN_WEIGHTS, + "plex-sans", + PLEX_WOFF2, + REBUILD, + PLEX_GASP, + "Fluxer Sans", + "fluxer-sans.css", + ), + Family( + "FluxerMono", + "IBMPlexMono", + LATIN_WEIGHTS, + "plex-mono", + PLEX_WOFF2, + REBUILD, + PLEX_GASP, + "Fluxer Mono", + "fluxer-mono.css", + ), + Family( + "FluxerSansArabic", + "IBMPlexSansArabic", + UPRIGHT_WEIGHTS, + "plex-sans-arabic", + PLEX_WOFF2, + REBUILD, + PLEX_GASP, + "Fluxer Sans Arabic", + "script-arabic.css", + ), + Family( + "FluxerSansDevanagari", + "IBMPlexSansDevanagari", + UPRIGHT_WEIGHTS, + "plex-sans-devanagari", + PLEX_WOFF2, + REBUILD, + PLEX_GASP, + "Fluxer Sans Devanagari", + "script-devanagari.css", + ), + Family( + "FluxerSansHebrew", + "IBMPlexSansHebrew", + UPRIGHT_WEIGHTS, + "plex-sans-hebrew", + PLEX_WOFF2, + REBUILD, + PLEX_GASP, + "Fluxer Sans Hebrew", + "script-hebrew.css", + ), + Family( + "FluxerSansThai", + "IBMPlexSansThai", + UPRIGHT_WEIGHTS, + "plex-sans-thai", + PLEX_WOFF2, + REBUILD, + PLEX_GASP, + "Fluxer Sans Thai", + "script-thai.css", + ), + Family( + "FluxerSansThaiLooped", + "IBMPlexSansThaiLooped", + UPRIGHT_WEIGHTS, + "plex-sans-thai-looped", + PLEX_WOFF2, + REBUILD, + PLEX_GASP, + "Fluxer Sans Thai Looped", + "script-thai-looped.css", + ), + Family( + "FluxerSansJP", + "IBMPlexSansJP", + UPRIGHT_WEIGHTS, + "plex-sans-jp", + f"{PLEX_WOFF2}/hinted", + SUBSET, + CJK_GASP, + "Fluxer Sans JP", + "script-jp.css", + ), + Family( + "FluxerSansSC", + "IBMPlexSansSC", + UPRIGHT_WEIGHTS, + "plex-sans-sc", + f"{PLEX_WOFF2}/hinted", + SUBSET, + CJK_GASP, + "Fluxer Sans SC", + "script-sc.css", + ), + Family( + "FluxerSansTC", + "IBMPlexSansTC", + UPRIGHT_WEIGHTS, + "plex-sans-tc", + f"{PLEX_WOFF2}/hinted", + SUBSET, + CJK_GASP, + "Fluxer Sans TC", + "script-tc.css", + ), + Family( + "FluxerSansKR", + "IBMPlexSansKR", + UPRIGHT_WEIGHTS, + "plex-sans-kr", + "ibm-plex-sans-kr/fonts/complete/woff2/unhinted", + SUBSET, + PLEX_GASP, + "Fluxer Sans KR", + "script-kr.css", + ), +) + +FAMILY_BY_DIR = {family.out_dir: family for family in FAMILIES} + +SOURCE_EXPECTATIONS: dict[str, dict[str, object]] = { + "FluxerSansKR": { + "sfntVersion": "\x00\x01\x00\x00", + "tables": {"fpgm": 682, "prep": 329, "cvt ": 46}, + "numGlyphs": 12283, + "reference_file": "IBMPlexSansKR-Regular.woff2", + "reference_glyf": 2161193, + }, +} + +ROOT_VARIABLES_TEMPLATE = """:root {{ +\t--font-sans: +\t\t{sans}; +\t--font-mono: 'Fluxer Mono', 'Menlo', 'Monaco', 'Courier New', monospace; +}} +""" + +LOCALE_FALLBACKS_COMMENT = "" + +SCRIPT_FAMILY_ORDER: tuple[str, ...] = ( + "Fluxer Sans Arabic", + "Fluxer Sans Hebrew", + "Fluxer Sans Devanagari", + "Fluxer Sans Thai Looped", + "Fluxer Sans SC", + "Fluxer Sans TC", + "Fluxer Sans JP", + "Fluxer Sans KR", +) + +GENERIC_UI_FACES: tuple[str, ...] = ("system-ui", "-apple-system", "BlinkMacSystemFont") + +UNCHAINED_SCRIPT_FAMILIES: tuple[str, ...] = ("Fluxer Sans Thai",) + +LOCALE_FALLBACKS: tuple[tuple[tuple[str, ...], str, tuple[str, ...]], ...] = ( + ( + ("ja",), + "Fluxer Sans JP", + ("Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo"), + ), + (("ko",), "Fluxer Sans KR", ("Malgun Gothic", "Apple SD Gothic Neo")), + (("zh-CN", "zh-Hans"), "Fluxer Sans SC", ("PingFang SC", "Microsoft YaHei")), + (("zh-Hant-TW", "zh-TW"), "Fluxer Sans TC", ("PingFang TC", "Microsoft JhengHei")), + (("zh-HK", "zh-Hant-HK"), "Fluxer Sans TC", ("PingFang HK", "Microsoft JhengHei")), + (("ar",), "Fluxer Sans Arabic", ("Segoe UI", "Geeza Pro", "Arabic Typesetting")), + (("he",), "Fluxer Sans Hebrew", ("Segoe UI", "Arial Hebrew")), + (("hi", "mr", "ne", "sa"), "Fluxer Sans Devanagari", ("Nirmala UI", "Noto Sans Devanagari")), + (("th",), "Fluxer Sans Thai Looped", ("Leelawadee UI", "Thonburi")), +) + + +def font_stack(preferred: str | None, os_faces: tuple[str, ...]) -> list[str]: + scripts = [preferred] if preferred else [] + scripts += [family for family in SCRIPT_FAMILY_ORDER if family != preferred] + return [ + quote_family("Fluxer Sans"), + *(quote_family(family) for family in scripts), + *GENERIC_UI_FACES, + *(quote_family(face) for face in os_faces), + "sans-serif", + ] + + +def quote_family(name: str) -> str: + return f"'{name}'" + + +def wrap_font_stack(entries: list[str], indent: str, width: int = 118) -> str: + lines: list[str] = [] + current = "" + for index, entry in enumerate(entries): + piece = entry if index == len(entries) - 1 else f"{entry}," + candidate = f"{current} {piece}" if current else piece + if current and len(indent) + len(candidate) > width: + lines.append(current) + current = piece + else: + current = candidate + if current: + lines.append(current) + return f"\n{indent}".join(lines) + + +BASE_UI_FACES: tuple[str, ...] = ("Segoe UI", "Roboto") + + +def render_variables_stylesheet() -> str: + stack = wrap_font_stack(font_stack(None, BASE_UI_FACES), "\t\t") + body = ROOT_VARIABLES_TEMPLATE.format(sans=stack) + return "\n".join([SPDX_CSS_HEADER, GENERATED_CSS_HEADER, "", body]) + + +def render_locale_fallbacks_stylesheet() -> str: + lines = [SPDX_CSS_HEADER, GENERATED_CSS_HEADER, "", LOCALE_FALLBACKS_COMMENT] + for langs, preferred, os_faces in LOCALE_FALLBACKS: + selector = ",\n".join(f":root:lang({lang})" for lang in langs) + stack = wrap_font_stack(font_stack(preferred, os_faces), "\t\t") + lines.append(f"{selector} {{\n\t--font-sans:\n\t\t{stack};\n}}") + return "\n".join([*lines, ""]) + + +def _http_get(url: str) -> bytes: + request = urllib.request.Request(url, headers={"User-Agent": "fluxer-font-build"}) + with urllib.request.urlopen(request) as response: # noqa: S310 - pinned https URLs + return response.read() + + +def _check_integrity(integrity: str, blob: bytes, label: str) -> None: + algo, _, encoded = integrity.partition("-") + actual = base64.b64encode(hashlib.new(algo, blob).digest()).decode() + if actual != encoded: + raise SystemExit(f"integrity mismatch for {label}: expected {encoded}, got {actual}") + + +def _extract_tar(blob: bytes, root: Path) -> None: + if root.exists(): + shutil.rmtree(root) + root.mkdir(parents=True) + with tarfile.open(fileobj=io.BytesIO(blob), mode="r:gz") as archive: + for member in archive.getmembers(): + _extract_member(archive, member, member.name, root, member.isdir()) + + +def _extract_zip(blob: bytes, root: Path) -> None: + if root.exists(): + shutil.rmtree(root) + root.mkdir(parents=True) + with zipfile.ZipFile(io.BytesIO(blob)) as archive: + for info in archive.infolist(): + _extract_member(archive, info, info.filename, root, info.is_dir()) + + +def _extract_member(archive: object, member: object, name: str, root: Path, is_dir: bool) -> None: + dest = (root / name).resolve() + if not str(dest).startswith(str(root.resolve())): + raise SystemExit(f"refusing to extract outside the cache: {name}") + if is_dir: + dest.mkdir(parents=True, exist_ok=True) + return + dest.parent.mkdir(parents=True, exist_ok=True) + reader = ( + archive.extractfile(member) + if isinstance(archive, tarfile.TarFile) + else archive.open(member) + ) + if reader is None: + return + with reader: + dest.write_bytes(reader.read()) + + +def fluxer_name(value: str) -> str: + return value.replace("IBM Plex ", "Fluxer ").replace("IBMPlex", "Fluxer") + + +def _name_map(font: TTFont) -> dict[tuple[int, int, int, int], str]: + return { + (r.nameID, r.platformID, r.platEncID, r.langID): r.toUnicode() for r in font["name"].names + } + + +def build_font(src: Path, gasp: dict[int, int]) -> bytes: + font = TTFont(src, lazy=True, recalcTimestamp=False, recalcBBoxes=False) + font["gasp"].gaspRange = dict(gasp) + for record in font["name"].names: + if record.nameID in RENAME_NAME_IDS: + record.string = fluxer_name(record.toUnicode()) + font.flavor = "woff2" + buffer = io.BytesIO() + font.save(buffer) + font.close() + return buffer.getvalue() + + +def check_rebuild(src: Path, produced: bytes, gasp: dict[int, int]) -> None: + upstream = TTFont(src, lazy=True) + built = TTFont(io.BytesIO(produced), lazy=True) + try: + up_tags = {t for t in upstream.keys() if t != "GlyphOrder"} + new_tags = {t for t in built.keys() if t != "GlyphOrder"} + if up_tags != new_tags: + raise SystemExit( + f"{src.name}: table set changed: " + f"+{sorted(new_tags - up_tags)} -{sorted(up_tags - new_tags)}" + ) + for tag in sorted(up_tags - MUTABLE_TABLES): + if upstream.reader[tag] != built.reader[tag]: + raise SystemExit(f"{src.name}: table {tag!r} changed but must not") + for tag in CRITICAL_TABLES: + if tag in up_tags and upstream.reader[tag] != built.reader[tag]: + raise SystemExit(f"{src.name}: critical table {tag!r} changed") + + up_head = upstream.reader["head"] + new_head = built.reader["head"] + if len(up_head) != len(new_head): + raise SystemExit(f"{src.name}: head length changed") + if ( + up_head[: HEAD_CHECKSUM_SLICE.start] != new_head[: HEAD_CHECKSUM_SLICE.start] + or up_head[HEAD_CHECKSUM_SLICE.stop :] != new_head[HEAD_CHECKSUM_SLICE.stop :] + ): + raise SystemExit(f"{src.name}: head changed outside checkSumAdjustment") + + if built["gasp"].gaspRange != gasp: + raise SystemExit(f"{src.name}: gasp is {built['gasp'].gaspRange}, expected {gasp}") + if built["gasp"].version != 1: + raise SystemExit(f"{src.name}: gasp version is {built['gasp'].version}, expected 1") + + up_names = _name_map(upstream) + new_names = _name_map(built) + if set(up_names) != set(new_names): + raise SystemExit(f"{src.name}: name record set changed") + for key, value in up_names.items(): + expected = fluxer_name(value) if key[0] in RENAME_NAME_IDS else value + if new_names[key] != expected: + raise SystemExit( + f"{src.name}: name {key} is {new_names[key]!r}, expected {expected!r}" + ) + check_no_reserved_name(built, src.name) + finally: + upstream.close() + built.close() + + +def check_no_reserved_name(font: TTFont, label: str) -> None: + for record in font["name"].names: + if record.nameID in NO_PLEX_NAME_IDS and "Plex" in record.toUnicode(): + raise SystemExit( + f"{label}: reserved font name 'Plex' still present in name ID {record.nameID}" + ) + + +def subset_options() -> SubsetOptions: + options = SubsetOptions() + options.hinting = True # keep glyph instructions; fpgm/prep/cvt pass through + options.legacy_kern = True + options.layout_features = ["*"] # CJK needs vert/vrt2/halt/palt/trad/smpl + options.layout_scripts = ["*"] + options.name_IDs = ["*"] # the OFL rename lives in the name table + options.name_legacy = True + options.name_languages = ["*"] + options.notdef_outline = True + options.glyph_names = False # post 3.0; names are not rendering data + options.recalc_bounds = False # keep upstream head/glyf bounding boxes + options.recalc_timestamp = False # keep upstream head.modified + options.recalc_max_context = False + options.recalc_average_width = False # keep OS/2.xAvgCharWidth + options.prune_unicode_ranges = False # keep OS/2.ulUnicodeRange + options.prune_codepage_ranges = False + options.drop_tables = [] + options.passthrough_tables = True # e.g. `meta`, which the subsetter cannot slice + options.ignore_missing_unicodes = True + return options + + +def subset_face(sfnt: bytes, codepoints: tuple[int, ...]) -> bytes: + font = TTFont(io.BytesIO(sfnt), lazy=True, recalcTimestamp=False, recalcBBoxes=False) + subsetter = Subsetter(options=subset_options()) + subsetter.populate(unicodes=codepoints) + subsetter.subset(font) + font.flavor = "woff2" + buffer = io.BytesIO() + font.save(buffer) + font.close() + return buffer.getvalue() + + +def glyph_signature(glyph_set: object, glyf: object, name: str) -> tuple: + pen = DecomposingRecordingPen(glyph_set) + glyph_set[name].draw(pen) + glyph = glyf[name] + program = getattr(glyph, "program", None) + bytecode = bytes(program.getBytecode()) if program is not None else b"" + box = (glyph.xMin, glyph.yMin, glyph.xMax, glyph.yMax) if glyph.numberOfContours != 0 else () + return (tuple(pen.value), box, bytecode) + + +def metric_signature(font: TTFont) -> dict[str, int]: + values: dict[str, int] = {} + for table, field_name in METRIC_FIELDS: + if table not in font: + continue + value = getattr(font[table], field_name, None) + if value is None: + continue + values[f"{table.strip()}.{field_name}"] = int(value) + return values + + +def check_subset( + parent: TTFont, chunk_bytes: bytes, requested: tuple[int, ...], label: str +) -> dict: + chunk = TTFont(io.BytesIO(chunk_bytes), lazy=True) + try: + parent_tags = {t for t in parent.keys() if t != "GlyphOrder"} + chunk_tags = {t for t in chunk.keys() if t != "GlyphOrder"} + if parent_tags != chunk_tags: + raise SystemExit( + f"{label}: table set changed: " + f"+{sorted(chunk_tags - parent_tags)} -{sorted(parent_tags - chunk_tags)}" + ) + for tag in HINTING_TABLES + ("gasp",): + if parent.reader[tag] != chunk.reader[tag]: + raise SystemExit(f"{label}: table {tag!r} must pass through unchanged") + if metric_signature(parent) != metric_signature(chunk): + raise SystemExit(f"{label}: vertical metrics changed") + check_no_reserved_name(chunk, label) + if not (chunk["name"].getDebugName(6) or "").startswith("Fluxer"): + raise SystemExit(f"{label}: PostScript name is not a Fluxer name") + + chunk_cmap = chunk.getBestCmap() + expected = {cp for cp in requested if cp in parent.getBestCmap()} + if set(chunk_cmap) != expected: + missing = sorted(expected - set(chunk_cmap))[:4] + extra = sorted(set(chunk_cmap) - expected)[:4] + raise SystemExit(f"{label}: cmap drifted from the plan (-{missing} +{extra})") + + parent_cmap = parent.getBestCmap() + parent_glyf = parent["glyf"] + chunk_glyf = chunk["glyf"] + parent_set = parent.getGlyphSet() + chunk_set = chunk.getGlyphSet() + parent_hmtx = parent["hmtx"] + chunk_hmtx = chunk["hmtx"] + parent_vmtx = parent["vmtx"] if "vmtx" in parent else None + chunk_vmtx = chunk["vmtx"] if "vmtx" in chunk else None + for cp in sorted(expected): + name = parent_cmap[cp] + chunk_name = chunk_cmap[cp] + if glyph_signature(parent_set, parent_glyf, name) != glyph_signature( + chunk_set, chunk_glyf, chunk_name + ): + raise SystemExit(f"{label}: outline changed for U+{cp:04X} ({name})") + if parent_hmtx[name] != chunk_hmtx[chunk_name]: + raise SystemExit(f"{label}: horizontal metrics changed for U+{cp:04X} ({name})") + if parent_vmtx is not None and parent_vmtx[name] != chunk_vmtx[chunk_name]: + raise SystemExit(f"{label}: vertical metrics changed for U+{cp:04X} ({name})") + return { + "codepoints": sorted(chunk_cmap), + "hinting": {tag: len(chunk.reader[tag]) for tag in HINTING_TABLES}, + "metrics": metric_signature(chunk), + } + finally: + chunk.close() + + +def plan_chunks(codepoints: set[int], target: int) -> list[tuple[int, ...]]: + if target < 1: + raise SystemExit(f"chunk target must be positive, got {target}") + by_block: dict[str, list[int]] = {} + for cp in sorted(codepoints): + by_block.setdefault(ftunicodedata.block(cp), []).append(cp) + + chunks: list[tuple[int, ...]] = [] + pending: list[int] = [] + + def flush() -> None: + if pending: + chunks.append(tuple(pending)) + pending.clear() + + for _, members in sorted(by_block.items(), key=lambda item: item[1][0]): + if len(members) < MIN_STANDALONE_BLOCK: + pending.extend(members) + if len(pending) >= target: + flush() + continue + flush() + parts = max(1, round(len(members) / target)) if len(members) > target else 1 + size = -(-len(members) // parts) + for start in range(0, len(members), size): + chunks.append(tuple(members[start : start + size])) + flush() + if not chunks: + raise SystemExit("chunk plan is empty") + return chunks + + +TRANSFER_SAMPLES: dict[str, dict[str, str]] = { + "FluxerSansJP": { + "mixed script": "語", + "display name": "田中太郎", + "sentence": "これは日本語のサンプルテキストです", + }, + "FluxerSansSC": { + "mixed script": "文", + "display name": "小明", + "sentence": "这是简体中文的示例文本", + }, + "FluxerSansTC": { + "mixed script": "文", + "display name": "小明", + "sentence": "這是繁體中文的示例文本", + }, + "FluxerSansKR": { + "mixed script": "한", + "display name": "김민준", + "sentence": "이것은 한국어 샘플 텍스트입니다", + }, +} + +SLICING_DECISION: dict[str, dict[str, float]] = { + "FluxerSansJP": {"minMixedScriptRatio": 20.0, "maxFullCoverageRatio": 1.25}, + "FluxerSansSC": {"minMixedScriptRatio": 20.0, "maxFullCoverageRatio": 1.30}, + "FluxerSansTC": {"minMixedScriptRatio": 20.0, "maxFullCoverageRatio": 1.50}, + "FluxerSansKR": {"minMixedScriptRatio": 2.0, "maxFullCoverageRatio": 1.25}, +} + + +def transfer_table(chunks: list[tuple[int, set[int]]], unsliced: int, family_dir: str) -> dict: + scenarios = {} + for label, text in TRANSFER_SAMPLES[family_dir].items(): + wanted = {ord(c) for c in text} + hit = [(size, covered) for size, covered in chunks if covered & wanted] + fetched = sum(size for size, _ in hit) + scenarios[label] = { + "bytes": fetched, + "chunks": len(hit), + "ratio": round(unsliced / fetched, 3) if fetched else None, + } + full = sum(size for size, _ in chunks) + scenarios["full coverage"] = { + "bytes": full, + "chunks": len(chunks), + "ratio": round(unsliced / full, 3) if full else None, + } + return {"unslicedBytes": unsliced, "scenarios": scenarios} + + +def check_slicing_decision(family_dir: str, transfer: dict) -> list[str]: + bars = SLICING_DECISION.get(family_dir) + if bars is None: + return [] + failures = [] + mixed = transfer["scenarios"]["mixed script"]["ratio"] + if mixed is None or mixed < bars["minMixedScriptRatio"]: + failures.append( + f"{family_dir}: slicing wins only {mixed}x on the mixed-script case, below the " + f"{bars['minMixedScriptRatio']}x bar that justifies it." + ) + full_ratio = transfer["scenarios"]["full coverage"]["ratio"] + regression = 1 / full_ratio if full_ratio else float("inf") + if regression > bars["maxFullCoverageRatio"]: + failures.append( + f"{family_dir}: full coverage now costs {regression:.3f}x the unsliced face, past the " + f"{bars['maxFullCoverageRatio']}x bar" + ) + return failures + + +def codepoint_ranges(codepoints: list[int]) -> list[tuple[int, int]]: + ranges: list[tuple[int, int]] = [] + for cp in codepoints: + if ranges and cp == ranges[-1][1] + 1: + ranges[-1] = (ranges[-1][0], cp) + else: + ranges.append((cp, cp)) + return ranges + + +def format_unicode_range(codepoints: list[int]) -> str: + parts = [] + for start, end in codepoint_ranges(sorted(codepoints)): + parts.append(f"U+{start:04X}" if start == end else f"U+{start:04X}-{end:04X}") + return ", ".join(parts) + + +def parse_unicode_range(value: str) -> set[int]: + result: set[int] = set() + for token in value.split(","): + token = token.strip() + if not token: + continue + match = re.fullmatch(r"[Uu]\+([0-9A-Fa-f]+)(?:-([0-9A-Fa-f]+))?", token) + if not match: + raise ValueError(f"unparseable unicode-range token {token!r}") + start = int(match.group(1), 16) + end = int(match.group(2), 16) if match.group(2) else start + result.update(range(start, end + 1)) + return result + + +def calibrate_chunk_size(sfnt: bytes, codepoints: list[int], target_bytes: int) -> tuple[int, str]: + small, large = 300, 900 + if len(codepoints) <= large: + return len(codepoints), "single chunk (family smaller than one probe)" + middle = len(codepoints) // 2 + probe_small = tuple(codepoints[middle : middle + small]) + probe_large = tuple(codepoints[middle : middle + large]) + size_small = len(subset_face(sfnt, probe_small)) + size_large = len(subset_face(sfnt, probe_large)) + rate = (size_large - size_small) / (large - small) + overhead = size_small - rate * small + if rate <= 0: + raise SystemExit("calibration produced a non-positive bytes-per-codepoint rate") + budget = int((target_bytes - overhead) / rate) + budget = max(MIN_STANDALONE_BLOCK, budget) + note = ( + f"{rate:.1f} B/codepoint marginal, {overhead / 1024:.1f} KiB intercept " + f"-> {budget} codepoints per chunk" + ) + return budget, note + + +def sha256_bytes(blob: bytes) -> str: + return hashlib.sha256(blob).hexdigest() + + +@dataclass +class FaceResult: + family: str + weight: str + source_sha256: str + hinting: dict[str, int] + metrics: dict[str, int] + files: list[dict] = field(default_factory=list) + + +def check_source_expectations(family: Family, src_dir: Path) -> None: + expectations = SOURCE_EXPECTATIONS.get(family.out_dir) + if expectations is None: + return + path = src_dir / str(expectations["reference_file"]) + font = TTFont(path, lazy=True) + try: + if font.sfntVersion != expectations["sfntVersion"]: + raise SystemExit( + f"{path.name}: sfntVersion {font.sfntVersion!r}, " + f"expected {expectations['sfntVersion']!r} (TrueType outlines)" + ) + for tag, size in expectations["tables"].items(): # type: ignore[union-attr] + if tag not in font: + raise SystemExit(f"{path.name}: hinting table {tag!r} is missing upstream") + if len(font.reader[tag]) != size: + raise SystemExit( + f"{path.name}: {tag!r} is {len(font.reader[tag])} B upstream, expected {size} B" + ) + if font["maxp"].numGlyphs != expectations["numGlyphs"]: + raise SystemExit( + f"{path.name}: numGlyphs {font['maxp'].numGlyphs}, expected {expectations['numGlyphs']}" + ) + if "glyf" in font and len(font.reader["glyf"]) != expectations["reference_glyf"]: + raise SystemExit( + f"{path.name}: glyf is {len(font.reader['glyf'])} B, " + f"expected {expectations['reference_glyf']} B" + ) + finally: + font.close() + + +def face_cmap(path: Path) -> set[int]: + font = TTFont(path, lazy=True) + try: + return set(font.getBestCmap()) + finally: + font.close() + + +def renamed_sfnt(src: Path, gasp: dict[int, int]) -> bytes: + produced = build_font(src, gasp) + check_rebuild(src, produced, gasp) + font = TTFont(io.BytesIO(produced), lazy=True, recalcTimestamp=False, recalcBBoxes=False) + font.flavor = None + buffer = io.BytesIO() + font.save(buffer) + font.close() + return buffer.getvalue() + + +def build_face(job: dict) -> FaceResult: + family = FAMILY_BY_DIR[job["family"]] + src = Path(job["src"]) + weight = job["weight"] + source_bytes = src.read_bytes() + result = FaceResult( + family=family.out_dir, + weight=weight, + source_sha256=sha256_bytes(source_bytes), + hinting={}, + metrics={}, + ) + stage = Path(job["stage"]) / family.out_dir + stage.mkdir(parents=True, exist_ok=True) + + if family.mode == REBUILD: + produced = build_font(src, family.gasp) + check_rebuild(src, produced, family.gasp) + font = TTFont(io.BytesIO(produced), lazy=True) + try: + result.hinting = {tag: len(font.reader[tag]) for tag in HINTING_TABLES} + result.metrics = metric_signature(font) + covered = sorted(font.getBestCmap()) + finally: + font.close() + name = f"{family.out_dir}-{weight}.woff2" + (stage / name).write_bytes(produced) + result.files.append( + { + "path": f"{family.out_dir}/{name}", + "sha256": sha256_bytes(produced), + "bytes": len(produced), + "codepoints": len(covered), + "unicodeRange": None + if family.stylesheet in LATIN_CORE_STYLESHEETS + else format_unicode_range(covered), + "chunk": None, + } + ) + return result + + sfnt = renamed_sfnt(src, family.gasp) + parent = TTFont(io.BytesIO(sfnt), lazy=True) + try: + result.hinting = {tag: len(parent.reader[tag]) for tag in HINTING_TABLES} + result.metrics = metric_signature(parent) + parent_cmap = set(parent.getBestCmap()) + for index, planned in enumerate(job["plan"]): + requested = tuple(cp for cp in planned if cp in parent_cmap) + if not requested: + continue + name = f"{family.out_dir}-{weight}.{index:03d}.woff2" + label = f"{family.out_dir}/{name}" + produced = subset_face(sfnt, requested) + info = check_subset(parent, produced, requested, label) + if info["hinting"] != result.hinting: + raise SystemExit(f"{label}: hinting table sizes drifted from the parent face") + (stage / name).write_bytes(produced) + result.files.append( + { + "path": label, + "sha256": sha256_bytes(produced), + "bytes": len(produced), + "codepoints": len(info["codepoints"]), + "unicodeRange": format_unicode_range(info["codepoints"]), + "chunk": index, + } + ) + finally: + parent.close() + return result + + +def resolve_sources(cache: Path, families: tuple[Family, ...]) -> dict[str, Path]: + roots: dict[str, Path] = {} + for key in dict.fromkeys(f.source for f in families): + source = SOURCES[key] + print(f" fetching {source.label}", flush=True) + roots[key] = source.fetch(cache) + return roots + + +def render_face_rule(family: Family, entry: dict) -> str: + weight = entry["weight"] + lines = [ + "@font-face {", + f"\tfont-family: '{family.css_family}';", + f"\tsrc: url('../files/{entry['path']}') format('woff2');", + f"\tfont-weight: {css_weight(weight)};", + f"\tfont-style: {css_style(weight)};", + "\tfont-display: swap;", + ] + if entry["unicodeRange"]: + lines.append(f"\tunicode-range: {entry['unicodeRange']};") + lines.append("}") + return "\n".join(lines) + + +def chunk_major(family: Family, entries: list[dict]) -> list[dict]: + order = {weight: index for index, weight in enumerate(family.weights)} + return sorted( + entries, + key=lambda entry: ( + entry["chunk"] if entry["chunk"] is not None else -1, + order[entry["weight"]], + ), + ) + + +def render_stylesheets(entries: list[dict]) -> dict[str, str]: + by_family: dict[str, list[dict]] = {} + for entry in entries: + by_family.setdefault(entry["family"], []).append(entry) + + by_stylesheet: dict[str, list[str]] = {} + for family in FAMILIES: + for entry in chunk_major(family, by_family[family.out_dir]): + by_stylesheet.setdefault(family.stylesheet, []).append(render_face_rule(family, entry)) + + sheets: dict[str, str] = {} + for name, rules in by_stylesheet.items(): + sheets[name] = "\n".join([SPDX_CSS_HEADER, GENERATED_CSS_HEADER, "", *rules, ""]) + + sheets["variables.css"] = render_variables_stylesheet() + sheets["locale-fallbacks.css"] = render_locale_fallbacks_stylesheet() + return sheets + + +def render_manifest(entries: list[dict], chunking: dict) -> str: + families = [] + for family in FAMILIES: + faces = [ + { + "file": entry["path"], + "weight": css_weight(entry["weight"]), + "style": css_style(entry["weight"]), + "unicodeRange": entry["unicodeRange"], + "bytes": entry["bytes"], + } + for entry in chunk_major(family, [e for e in entries if e["family"] == family.out_dir]) + ] + families.append( + { + "id": family.out_dir, + "cssFamily": family.css_family, + "stylesheet": f"css/{family.stylesheet}", + "mode": family.mode, + "latinCore": family.stylesheet in LATIN_CORE_STYLESHEETS, + "chunks": chunking.get(family.out_dir, {}).get("chunks", 1), + "faces": faces, + } + ) + payload = { + "_comment": ( + "Generated by tools/fonts/build_fonts.py. Do not edit by hand. " + "Paths are relative to packages/fonts/." + ), + "entrypoints": { + "latinCore": { + family.css_family: f"css/{family.stylesheet}" + for family in FAMILIES + if family.stylesheet in LATIN_CORE_STYLESHEETS + }, + "variables": "css/variables.css", + "localeFallbacks": "css/locale-fallbacks.css", + "scripts": { + family.css_family: f"css/{family.stylesheet}" + for family in FAMILIES + if family.stylesheet not in LATIN_CORE_STYLESHEETS + }, + }, + "families": families, + } + return json.dumps(payload, indent="\t", sort_keys=False) + "\n" + + +def size_distribution(sizes: list[int]) -> str: + if not sizes: + return "no files" + ordered = sorted(sizes) + return ( + f"min {ordered[0] / 1024:.0f} KiB, median {statistics.median(ordered) / 1024:.0f} KiB, " + f"p95 {ordered[min(len(ordered) - 1, int(len(ordered) * 0.95))] / 1024:.0f} KiB, " + f"max {ordered[-1] / 1024:.0f} KiB" + ) + + +def build(cache: Path, dry_run: bool, workers: int) -> int: + print(f"cache: {cache}") + cache.mkdir(parents=True, exist_ok=True) + roots = resolve_sources(cache, FAMILIES) + stage = cache / "stage" + if stage.exists(): + shutil.rmtree(stage) + stage.mkdir(parents=True) + + print("\nplanning chunks") + plans: dict[str, list[tuple[int, ...]]] = {} + chunking: dict[str, dict] = {} + family_codepoints: dict[str, int] = {} + for family in FAMILIES: + src_dir = roots[family.source] / family.src_subdir + for name in family.source_files(): + if not (src_dir / name).is_file(): + raise SystemExit(f"missing upstream file: {src_dir / name}") + check_source_expectations(family, src_dir) + union: set[int] = set() + for name in family.source_files(): + union |= face_cmap(src_dir / name) + family_codepoints[family.out_dir] = len(union) + if family.mode != SUBSET: + continue + reference = src_dir / f"{family.prefix}-Regular.woff2" + sfnt = renamed_sfnt(reference, family.gasp) + budget, note = calibrate_chunk_size(sfnt, sorted(union), CHUNK_TARGET_BYTES) + plan = plan_chunks(union, budget) + plans[family.out_dir] = plan + chunking[family.out_dir] = { + "targetBytes": CHUNK_TARGET_BYTES, + "codepointsPerChunk": budget, + "chunks": len(plan), + "codepoints": len(union), + } + print(f" {family.out_dir}: {len(union)} codepoints, {note}, {len(plan)} chunks") + + jobs = [ + { + "family": family.out_dir, + "weight": weight, + "src": str( + roots[family.source] / family.src_subdir / f"{family.prefix}-{weight}.woff2" + ), + "stage": str(stage), + "plan": plans.get(family.out_dir, []), + } + for family in FAMILIES + for weight in family.weights + ] + + print(f"\nbuilding {len(jobs)} faces on {workers} worker(s)") + results: list[FaceResult] = [] + if workers <= 1: + for job in jobs: + results.append(build_face(job)) + print(f" {job['family']}-{job['weight']}", flush=True) + else: + with ProcessPoolExecutor(max_workers=workers) as pool: + for result in pool.map(build_face, jobs): + results.append(result) + print(f" {result.family}-{result.weight}: {len(result.files)} file(s)", flush=True) + + order = { + (family.out_dir, weight): (i, j) + for i, family in enumerate(FAMILIES) + for j, weight in enumerate(family.weights) + } + results.sort(key=lambda r: order[(r.family, r.weight)]) + + entries: list[dict] = [] + for result in results: + for item in result.files: + entries.append({**item, "family": result.family, "weight": result.weight}) + + sheets = render_stylesheets(entries) + manifest = render_manifest(entries, chunking) + + lock: dict[str, object] = { + "_comment": ( + "Generated by tools/fonts/build_fonts.py. Do not edit by hand. " + "Run `python3 tools/fonts/build_fonts.py --verify` to check the tree against it." + ), + "gasp": { + "plex": {str(k): v for k, v in PLEX_GASP.items()}, + "cjk": {str(k): v for k, v in CJK_GASP.items()}, + }, + "chunking": {"targetBytes": CHUNK_TARGET_BYTES, "families": chunking}, + "sources": {}, + "families": {}, + "stylesheets": {}, + "files": {}, + } + for key in dict.fromkeys(f.source for f in FAMILIES): + source = SOURCES[key] + lock["sources"][key] = {**source.provenance(), "sha256": source.artifact_sha256(cache)} + + for family in FAMILIES: + faces = {} + for result in results: + if result.family != family.out_dir: + continue + faces[result.weight] = { + "sourceFile": f"{family.prefix}-{result.weight}.woff2", + "sourceSha256": result.source_sha256, + "hinting": result.hinting, + "metrics": result.metrics, + "files": len(result.files), + "codepoints": sum(item["codepoints"] for item in result.files), + } + lock["families"][family.out_dir] = { + "mode": family.mode, + "source": family.source, + "srcSubdir": family.src_subdir, + "cssFamily": family.css_family, + "stylesheet": f"css/{family.stylesheet}", + "latinCore": family.stylesheet in LATIN_CORE_STYLESHEETS, + "gasp": {str(k): v for k, v in family.gasp.items()}, + "codepoints": family_codepoints[family.out_dir], + "faces": faces, + } + if family.out_dir in TRANSFER_SAMPLES: + unsliced = ( + (roots[family.source] / family.src_subdir / f"{family.prefix}-Regular.woff2") + .stat() + .st_size + ) + regular = [ + (item["bytes"], parse_unicode_range(item["unicodeRange"])) + for result in results + if result.family == family.out_dir and result.weight == "Regular" + for item in result.files + ] + transfer = transfer_table(regular, unsliced, family.out_dir) + for failure in check_slicing_decision(family.out_dir, transfer): + raise SystemExit(failure) + lock["families"][family.out_dir]["transfer"] = transfer + + for name, text in sorted(sheets.items()): + blob = text.encode() + lock["stylesheets"][f"css/{name}"] = {"sha256": sha256_bytes(blob), "bytes": len(blob)} + manifest_blob = manifest.encode() + lock["stylesheets"]["manifest.json"] = { + "sha256": sha256_bytes(manifest_blob), + "bytes": len(manifest_blob), + } + for entry in entries: + lock["files"][f"files/{entry['path']}"] = { + "sha256": entry["sha256"], + "bytes": entry["bytes"], + } + + print("\nper-family results") + print(f" {'family':24} {'files':>6} {'upstream':>10} {'shipped':>10} distribution") + total_before = 0 + total_after = 0 + for family in FAMILIES: + src_dir = roots[family.source] / family.src_subdir + before = sum((src_dir / name).stat().st_size for name in family.source_files()) + sizes = [entry["bytes"] for entry in entries if entry["family"] == family.out_dir] + after = sum(sizes) + total_before += before + total_after += after + print( + f" {family.out_dir:24} {len(sizes):>6} {before / 1048576:>9.2f}M {after / 1048576:>9.2f}M " + f"{size_distribution(sizes)}" + ) + print( + f" {'TOTAL':24} {len(entries):>6} {total_before / 1048576:>9.2f}M {total_after / 1048576:>9.2f}M" + ) + + changed, unchanged, created, removed = _diff_tree(entries, sheets, manifest) + print(f"\nsummary: {created} new, {changed} changed, {unchanged} unchanged, {removed} removed") + if dry_run: + print("dry run: nothing written") + return 0 + + _write_tree(entries, sheets, manifest, stage) + LOCK_PATH.write_text(json.dumps(lock, indent="\t", sort_keys=False) + "\n") + print(f"wrote {PACKAGE_ROOT.relative_to(REPO_ROOT)}/ and {LOCK_PATH.relative_to(REPO_ROOT)}") + return 0 + + +def _tracked_outputs(sheets: dict[str, str], manifest: str) -> dict[str, bytes]: + outputs: dict[str, bytes] = {} + for name, text in sheets.items(): + outputs[f"css/{name}"] = text.encode() + outputs["manifest.json"] = manifest.encode() + return outputs + + +def _diff_tree( + entries: list[dict], sheets: dict[str, str], manifest: str +) -> tuple[int, int, int, int]: + changed = unchanged = created = 0 + expected: set[str] = set() + for entry in entries: + rel = f"files/{entry['path']}" + expected.add(rel) + dest = PACKAGE_ROOT / rel + if not dest.is_file(): + created += 1 + elif sha256_bytes(dest.read_bytes()) == entry["sha256"]: + unchanged += 1 + else: + changed += 1 + for rel, blob in _tracked_outputs(sheets, manifest).items(): + expected.add(rel) + dest = PACKAGE_ROOT / rel + if not dest.is_file(): + created += 1 + elif dest.read_bytes() == blob: + unchanged += 1 + else: + changed += 1 + removed = len(_existing_generated() - expected) + return changed, unchanged, created, removed + + +def _existing_generated() -> set[str]: + found: set[str] = set() + if FILES_DIR.is_dir(): + found |= {str(p.relative_to(PACKAGE_ROOT)) for p in FILES_DIR.rglob("*.woff2")} + if CSS_DIR.is_dir(): + found |= {str(p.relative_to(PACKAGE_ROOT)) for p in CSS_DIR.rglob("*.css")} + if MANIFEST_PATH.is_file(): + found.add("manifest.json") + return found + + +def _write_tree(entries: list[dict], sheets: dict[str, str], manifest: str, stage: Path) -> None: + expected: set[str] = set() + for entry in entries: + rel = f"files/{entry['path']}" + expected.add(rel) + dest = PACKAGE_ROOT / rel + dest.parent.mkdir(parents=True, exist_ok=True) + shutil.copyfile(stage / entry["path"], dest) + for rel, blob in _tracked_outputs(sheets, manifest).items(): + expected.add(rel) + dest = PACKAGE_ROOT / rel + dest.parent.mkdir(parents=True, exist_ok=True) + dest.write_bytes(blob) + for rel in sorted(_existing_generated() - expected): + (PACKAGE_ROOT / rel).unlink() + for directory in sorted(FILES_DIR.rglob("*"), reverse=True): + if directory.is_dir() and not any(directory.iterdir()): + directory.rmdir() + + +FACE_RULE = re.compile( + r"@font-face\s*\{(?P[^}]*)\}", + re.MULTILINE, +) + + +def parse_stylesheet(text: str) -> list[dict[str, str]]: + faces = [] + for match in FACE_RULE.finditer(text): + body = match.group("body") + declarations = {} + for declaration in body.split(";"): + name, _, value = declaration.partition(":") + name = name.strip() + if name: + declarations[name] = value.strip() + url = re.search(r"url\('([^']+)'\)", declarations.get("src", "")) + faces.append( + { + "family": declarations.get("font-family", "").strip("'"), + "url": url.group(1) if url else "", + "weight": declarations.get("font-weight", ""), + "style": declarations.get("font-style", ""), + "display": declarations.get("font-display", ""), + "unicodeRange": declarations.get("unicode-range", ""), + } + ) + return faces + + +def check_variable_families(text: str) -> list[str]: + allowed = set(ALWAYS_BUNDLED_LATIN_FAMILIES) + allowed |= {f.css_family for f in FAMILIES if f.stylesheet not in LATIN_CORE_STYLESHEETS} + shipped = {f.css_family for f in FAMILIES} + failures: list[str] = [] + for match in re.finditer(r"(--font-[a-z0-9-]+)\s*:(?P[^;]*);", text): + variable = match.group(1) + for name in re.findall(r"'([^']+)'", match.group("value")): + if name in shipped and name not in allowed: + failures.append( + f"packages/fonts/css/variables.css: {variable} names {name!r}, but importing " + f"variables.css does not bring that family's @font-face rules with it. Declare " + f"the variable in the consumer that actually imports its stylesheet instead." + ) + return failures + + +def verify() -> int: + if not LOCK_PATH.is_file(): + raise SystemExit(f"missing {LOCK_PATH}; run the build first") + lock = json.loads(LOCK_PATH.read_text()) + failures: list[str] = [] + + locked_files = set(lock["files"]) + on_disk = ( + {f"files/{p.relative_to(FILES_DIR)}" for p in FILES_DIR.rglob("*.woff2")} + if FILES_DIR.is_dir() + else set() + ) + for extra in sorted(on_disk - locked_files): + failures.append(f"font present in the tree but absent from fonts.lock.json: {extra}") + for missing in sorted(locked_files - on_disk): + failures.append(f"font recorded in fonts.lock.json but missing from the tree: {missing}") + + strays = ( + sorted(p.relative_to(PACKAGE_ROOT) for p in PACKAGE_ROOT.rglob("*.otf")) + if PACKAGE_ROOT.is_dir() + else [] + ) + if strays: + failures.append(f"{len(strays)} unreferenced .otf file(s) present, e.g. {strays[0]}") + + referenced: dict[str, list[str]] = {} + declared_ranges: dict[str, str] = {} + for rel, recorded in lock["stylesheets"].items(): + path = PACKAGE_ROOT / rel + if not path.is_file(): + failures.append(f"missing generated file: packages/fonts/{rel}") + continue + blob = path.read_bytes() + if sha256_bytes(blob) != recorded["sha256"]: + failures.append(f"packages/fonts/{rel}: sha256 does not match fonts.lock.json") + if not rel.endswith(".css"): + continue + text = blob.decode() + if "?v=" in text: + failures.append(f"packages/fonts/{rel}: contains a ?v= cache-bust token") + for face in parse_stylesheet(text): + if not face["url"].startswith("../files/"): + failures.append( + f"packages/fonts/{rel}: url {face['url']!r} is not a relative ../files/ path" + ) + continue + target = f"files/{face['url'][len('../files/') :]}" + if not (PACKAGE_ROOT / target).is_file(): + failures.append( + f"packages/fonts/{rel} references a file that does not exist: {target}" + ) + referenced.setdefault(target, []).append(rel) + if face["display"] != "swap": + failures.append( + f"packages/fonts/{rel}: {target} declares font-display {face['display']!r}" + ) + previous = declared_ranges.get(target) + if previous is not None and previous != face["unicodeRange"]: + failures.append(f"{target}: declared with two different unicode-range values") + declared_ranges[target] = face["unicodeRange"] + + for orphan in sorted(locked_files - set(referenced)): + failures.append(f"font is shipped but no stylesheet claims it: {orphan}") + + for rel, rendered in ( + ("css/variables.css", render_variables_stylesheet()), + ("css/locale-fallbacks.css", render_locale_fallbacks_stylesheet()), + ): + path = PACKAGE_ROOT / rel + if path.is_file() and path.read_text() != rendered: + failures.append(f"packages/fonts/{rel}: does not match what build_fonts.py would emit") + + variables_css = PACKAGE_ROOT / "css" / "variables.css" + if variables_css.is_file(): + base_chain = re.search(r"--font-sans:(?P[^;]*);", variables_css.read_text()) + if base_chain is None: + failures.append("packages/fonts/css/variables.css: no --font-sans declaration") + else: + value = base_chain.group("value") + for family in FAMILIES: + if family.stylesheet in LATIN_CORE_STYLESHEETS: + continue + if family.css_family in UNCHAINED_SCRIPT_FAMILIES: + continue + if f"'{family.css_family}'" not in value: + failures.append( + f"packages/fonts/css/variables.css: base --font-sans does not name " + f"{family.css_family!r}, so its unicode-range gate can never fire" + ) + failures.extend(check_variable_families(variables_css.read_text())) + + if MANIFEST_PATH.is_file(): + manifest = json.loads(MANIFEST_PATH.read_text()) + manifest_sheets = [manifest["entrypoints"]["variables"]] + manifest_sheets.append(manifest["entrypoints"]["localeFallbacks"]) + manifest_sheets.extend(manifest["entrypoints"]["latinCore"].values()) + manifest_sheets.extend(manifest["entrypoints"]["scripts"].values()) + manifest_files: set[str] = set() + for entry in manifest["families"]: + manifest_sheets.append(entry["stylesheet"]) + manifest_files |= {f"files/{face['file']}" for face in entry["faces"]} + for sheet in sorted(set(manifest_sheets)): + if not (PACKAGE_ROOT / sheet).is_file(): + failures.append(f"manifest.json names a stylesheet that does not exist: {sheet}") + if manifest_files != locked_files: + failures.append( + f"manifest.json lists {len(manifest_files)} faces but fonts.lock.json lists " + f"{len(locked_files)}" + ) + + per_family_ranges: dict[str, list[tuple[str, set[int]]]] = {} + for rel in sorted(locked_files): + path = PACKAGE_ROOT / rel + if not path.is_file(): + continue + blob = path.read_bytes() + recorded = lock["files"][rel] + if recorded["sha256"] != sha256_bytes(blob): + failures.append(f"{rel}: sha256 does not match fonts.lock.json") + continue + if recorded["bytes"] != len(blob): + failures.append(f"{rel}: byte count does not match fonts.lock.json") + family_dir = rel.split("/")[1] + family = FAMILY_BY_DIR.get(family_dir) + if family is None: + failures.append(f"{rel}: no Family entry claims this directory") + continue + locked_family = lock["families"][family.out_dir] + weight = _weight_from_filename(family, Path(rel).name) + if weight is None: + failures.append(f"{rel}: filename does not match any weight of {family.out_dir}") + continue + locked_face = locked_family["faces"][weight] + + font = TTFont(io.BytesIO(blob), lazy=True) + try: + gasp = font["gasp"].gaspRange if "gasp" in font else None + expected_gasp = {int(k): v for k, v in locked_family["gasp"].items()} + if gasp != expected_gasp: + failures.append(f"{rel}: gasp is {gasp}, expected {expected_gasp}") + if "gasp" in font and font["gasp"].version != 1: + failures.append(f"{rel}: gasp version is {font['gasp'].version}, expected 1") + for tag, size in locked_face["hinting"].items(): + if tag not in font: + failures.append(f"{rel}: hinting table {tag!r} is missing") + elif len(font.reader[tag]) != size: + failures.append( + f"{rel}: {tag!r} is {len(font.reader[tag])} B, expected {size} B" + ) + if metric_signature(font) != locked_face["metrics"]: + failures.append(f"{rel}: vertical metrics do not match fonts.lock.json") + try: + check_no_reserved_name(font, rel) + except SystemExit as exc: + failures.append(str(exc)) + if not (font["name"].getDebugName(6) or "").startswith("Fluxer"): + failures.append(f"{rel}: PostScript name is not a Fluxer name") + covered = set(font.getBestCmap()) + finally: + font.close() + + declared = declared_ranges.get(rel) + if declared is None: + continue + if declared == "": + if family.stylesheet not in LATIN_CORE_STYLESHEETS: + failures.append( + f"{rel}: no unicode-range declared, but {family.stylesheet} is lazy" + ) + continue + try: + claimed = parse_unicode_range(declared) + except ValueError as exc: + failures.append(f"{rel}: {exc}") + continue + if claimed != covered: + failures.append( + f"{rel}: unicode-range claims {len(claimed)} codepoints but the font encodes " + f"{len(covered)} (+{len(claimed - covered)} phantom, -{len(covered - claimed)} unreachable)" + ) + per_family_ranges.setdefault(f"{family.out_dir}/{weight}", []).append((rel, claimed)) + + for key, chunks in sorted(per_family_ranges.items()): + family_dir, weight = key.rsplit("/", 1) + seen: dict[int, str] = {} + overlapped = False + for rel, claimed in chunks: + for cp in claimed: + if cp in seen: + failures.append(f"U+{cp:04X} is claimed by both {seen[cp]} and {rel}") + overlapped = True + break + seen[cp] = rel + if overlapped: + break + locked_total = lock["families"][family_dir]["faces"][weight]["codepoints"] + if not overlapped and len(seen) != locked_total: + failures.append( + f"{family_dir}/{weight}: the {len(chunks)} chunk(s) cover {len(seen)} codepoints, " + f"but fonts.lock.json records {locked_total}" + ) + + transfer_report: list[str] = [] + for family_dir in sorted(TRANSFER_SAMPLES): + recorded = lock["families"].get(family_dir, {}).get("transfer") + if recorded is None: + failures.append(f"{family_dir}: fonts.lock.json records no transfer table") + continue + chunks = [ + (lock["files"][rel]["bytes"], claimed) + for rel, claimed in per_family_ranges.get(f"{family_dir}/Regular", []) + ] + if not chunks: + failures.append(f"{family_dir}: no Regular chunks to measure the transfer table on") + continue + measured = transfer_table(chunks, recorded["unslicedBytes"], family_dir) + if measured != recorded: + failures.append( + f"{family_dir}: the transfer table recomputed from the shipped tree does not match " + f"fonts.lock.json ({measured} vs {recorded})" + ) + failures.extend(check_slicing_decision(family_dir, measured)) + row = " ".join( + f"{label} {case['bytes']:,} B/{case['chunks']}c ({case['ratio']}x)" + for label, case in measured["scenarios"].items() + ) + transfer_report.append(f" {family_dir:18} unsliced {recorded['unslicedBytes']:,} B {row}") + + if failures: + print(f"FAIL ({len(failures)} problem(s)):") + for line in failures: + print(f" - {line}") + return 1 + total = sum(entry["bytes"] for entry in lock["files"].values()) + print( + f"OK: {len(locked_files)} WOFF2 files ({total / 1048576:.1f} MiB) and " + f"{len(lock['stylesheets'])} generated stylesheets match fonts.lock.json; " + "gasp, rename, hinting, metric and unicode-range invariants hold." + ) + print("\nbytes fetched per sliced family (ratio = unsliced face / fetched):") + for line in transfer_report: + print(line) + return 0 + + +def _weight_from_filename(family: Family, filename: str) -> str | None: + stem = filename[: -len(".woff2")] + if not stem.startswith(f"{family.out_dir}-"): + return None + remainder = stem[len(family.out_dir) + 1 :] + weight = remainder.split(".")[0] + return weight if weight in family.weights else None + + +def main() -> int: + parser = argparse.ArgumentParser(description="Build the font package in packages/fonts/.") + parser.add_argument( + "--verify", + action="store_true", + help="offline: check the checked-in tree against fonts.lock.json and re-assert invariants", + ) + parser.add_argument( + "--dry-run", + action="store_true", + help="fetch and build, report the diff, but write nothing", + ) + parser.add_argument( + "--cache-dir", + type=Path, + default=Path(__file__).resolve().parent / ".cache", + help="where upstream downloads are kept (default: tools/fonts/.cache, git-ignored)", + ) + parser.add_argument( + "--workers", + type=int, + default=min(8, os.cpu_count() or 1), + help="parallel face builds (default: min(8, cpu count); 1 disables the pool)", + ) + args = parser.parse_args() + if args.verify: + if args.dry_run: + parser.error("--verify and --dry-run are mutually exclusive") + return verify() + return build(args.cache_dir.resolve(), args.dry_run, max(1, args.workers)) + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/tools/fonts/fonts.lock.json b/tools/fonts/fonts.lock.json new file mode 100644 index 000000000..dca6df85f --- /dev/null +++ b/tools/fonts/fonts.lock.json @@ -0,0 +1,9415 @@ +{ + "_comment": "Generated by tools/fonts/build_fonts.py. Do not edit by hand. Run `python3 tools/fonts/build_fonts.py --verify` to check the tree against it.", + "gasp": { + "plex": { + "8": 10, + "16": 7, + "65535": 15 + }, + "cjk": { + "7": 10, + "65535": 15 + } + }, + "chunking": { + "targetBytes": 65536, + "families": { + "FluxerSansJP": { + "targetBytes": 65536, + "codepointsPerChunk": 353, + "chunks": 45, + "codepoints": 15718 + }, + "FluxerSansSC": { + "targetBytes": 65536, + "codepointsPerChunk": 425, + "chunks": 69, + "codepoints": 29285 + }, + "FluxerSansTC": { + "targetBytes": 65536, + "codepointsPerChunk": 491, + "chunks": 50, + "codepoints": 23646 + }, + "FluxerSansKR": { + "targetBytes": 65536, + "codepointsPerChunk": 1386, + "chunks": 10, + "codepoints": 12183 + } + } + }, + "sources": { + "plex-sans": { + "type": "npm", + "package": "@ibm/plex-sans", + "version": "1.1.0", + "sha256": "c3818979c2a2c82927ea3e7c485e389a18de0b7462887dd4f7acc9a525568962" + }, + "plex-mono": { + "type": "npm", + "package": "@ibm/plex-mono", + "version": "2.5.0", + "sha256": "55b5ffcfcd5e9db36ef2070b2b07a573434ca02c6f3be2b921c0b88fff29acad" + }, + "plex-sans-arabic": { + "type": "npm", + "package": "@ibm/plex-sans-arabic", + "version": "1.1.0", + "sha256": "71ad7bc2d0cacebb1dfa7065603dfa0287b2b90c7c56023344e1da82b1766ddb" + }, + "plex-sans-devanagari": { + "type": "npm", + "package": "@ibm/plex-sans-devanagari", + "version": "1.1.0", + "sha256": "9254327ce690b6f63a5bb605225479b5c4050b5bb413b922ebbc255913e62ee8" + }, + "plex-sans-hebrew": { + "type": "npm", + "package": "@ibm/plex-sans-hebrew", + "version": "1.1.0", + "sha256": "24e908ea7d251be77a09c0773e0579dcc7327ff7f758b69df9f08cb0ae9f1054" + }, + "plex-sans-thai": { + "type": "npm", + "package": "@ibm/plex-sans-thai", + "version": "1.1.0", + "sha256": "9ddc70a54f7992646989fbc981f0bfeca32b3adceaa9bdf425ece7f0fbfd6565" + }, + "plex-sans-thai-looped": { + "type": "npm", + "package": "@ibm/plex-sans-thai-looped", + "version": "1.1.0", + "sha256": "76f87add6bce805e284a9f9e0ef117a9fd63b47ffd46debd36b0f00f2e8a799e" + }, + "plex-sans-jp": { + "type": "npm", + "package": "@ibm/plex-sans-jp", + "version": "3.0.0", + "sha256": "051484321fcffecc69c3d608b739c5fe0f558b0fd1de7958d96ca360d161de7f" + }, + "plex-sans-sc": { + "type": "npm", + "package": "@ibm/plex-sans-sc", + "version": "1.1.0", + "sha256": "4805ae31af4b1dc68d80fd619de202b69cf1f18548a0c3a3e97286148a349131" + }, + "plex-sans-tc": { + "type": "npm", + "package": "@ibm/plex-sans-tc", + "version": "1.1.1", + "sha256": "2eaa0217e9a77c074b005fc03b8c086bcb4cc75adc11a6176fb23dd5c79a773b" + }, + "plex-sans-kr": { + "type": "github-release", + "repo": "IBM/plex", + "tag": "@ibm/plex-sans-kr@1.1.0", + "asset": "ibm-plex-sans-kr.zip", + "sha256": "9837800c8e5aedf4123775e1d767afa482c983321bd2fc606c985f405d24562e" + } + }, + "families": { + "FluxerSans": { + "mode": "rebuild", + "source": "plex-sans", + "srcSubdir": "fonts/complete/woff2", + "cssFamily": "Fluxer Sans", + "stylesheet": "css/fluxer-sans.css", + "latinCore": true, + "gasp": { + "8": 10, + "16": 7, + "65535": 15 + }, + "codepoints": 895, + "faces": { + "Thin": { + "sourceFile": "IBMPlexSans-Thin.woff2", + "sourceSha256": "8f31252ab6c6dcfa8381ccf9c9e3315760780a1c41d7863673bd4be4d321a966", + "hinting": { + "fpgm": 371, + "prep": 548, + "cvt ": 68 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 506, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 100, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 895 + }, + "ExtraLight": { + "sourceFile": "IBMPlexSans-ExtraLight.woff2", + "sourceSha256": "b4f2ee8ff0a3ae4c176dd92301cdcbbc66c42f73b376cca028507b9847bcbbb3", + "hinting": { + "fpgm": 371, + "prep": 548, + "cvt ": 68 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 508, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 200, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 895 + }, + "Light": { + "sourceFile": "IBMPlexSans-Light.woff2", + "sourceSha256": "769209c2a0dbf2e3f012c22e4c604100cb3f1e7b8beb0ef77bc7d982d85509cc", + "hinting": { + "fpgm": 371, + "prep": 532, + "cvt ": 68 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 512, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 300, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 895 + }, + "Regular": { + "sourceFile": "IBMPlexSans-Regular.woff2", + "sourceSha256": "ba711a3085ff9f27440b6b9c4550cfc47c97bf36591d5da958b975bb3add8c1a", + "hinting": { + "fpgm": 371, + "prep": 476, + "cvt ": 68 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 400, + "OS/2.fsSelection": 320 + }, + "files": 1, + "codepoints": 895 + }, + "Text": { + "sourceFile": "IBMPlexSans-Text.woff2", + "sourceSha256": "6b8e7c7abd64feec0a67599a135402b769ec1f2c7656f6504cc300f60c8be986", + "hinting": { + "fpgm": 371, + "prep": 484, + "cvt ": 68 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 518, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 450, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 895 + }, + "Medium": { + "sourceFile": "IBMPlexSans-Medium.woff2", + "sourceSha256": "5660f8a658f8bb50dbc005232f885eadffd2bc1c235c4f6fbb63469d1f9cde6d", + "hinting": { + "fpgm": 371, + "prep": 500, + "cvt ": 68 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 520, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 500, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 895 + }, + "SemiBold": { + "sourceFile": "IBMPlexSans-SemiBold.woff2", + "sourceSha256": "f78048030eab62e860efa39a0df79e2e5581bf122eb95b9bc42c0b8a4988d205", + "hinting": { + "fpgm": 371, + "prep": 526, + "cvt ": 70 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 522, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 600, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 895 + }, + "Bold": { + "sourceFile": "IBMPlexSans-Bold.woff2", + "sourceSha256": "fa7130d854a660b39a7fc9e6e0f2dc23dba5f1346e2adea3e1fe37b6d884133d", + "hinting": { + "fpgm": 371, + "prep": 534, + "cvt ": 70 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 1, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 525, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 700, + "OS/2.fsSelection": 288 + }, + "files": 1, + "codepoints": 895 + }, + "ThinItalic": { + "sourceFile": "IBMPlexSans-ThinItalic.woff2", + "sourceSha256": "4a1e9d12690c0f0ee5cafc50603ef5c749cb95dba15f700c9022286ac64d8b2c", + "hinting": { + "fpgm": 371, + "prep": 556, + "cvt ": 68 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 200, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 506, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 100, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 895 + }, + "ExtraLightItalic": { + "sourceFile": "IBMPlexSans-ExtraLightItalic.woff2", + "sourceSha256": "7bbe8d17e0b16c856d6dc405f4679935f4e3c2f8139995011bb87e99926e25cb", + "hinting": { + "fpgm": 371, + "prep": 550, + "cvt ": 70 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 200, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 508, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 200, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 895 + }, + "LightItalic": { + "sourceFile": "IBMPlexSans-LightItalic.woff2", + "sourceSha256": "897c8d6423abdeb58ab0c567a97777d5193a7692fc4b639ed7e25c537bc5ed4f", + "hinting": { + "fpgm": 371, + "prep": 516, + "cvt ": 68 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 200, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 512, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 300, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 895 + }, + "Italic": { + "sourceFile": "IBMPlexSans-Italic.woff2", + "sourceSha256": "13284fab1821ba6e3652c1580fcf2bbfd8c9309520c69b3d1224dab40b37c597", + "hinting": { + "fpgm": 371, + "prep": 486, + "cvt ": 70 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 200, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 400, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 895 + }, + "TextItalic": { + "sourceFile": "IBMPlexSans-TextItalic.woff2", + "sourceSha256": "2f1d67ff9f74ad1f81e9b828944444040928d8f9831b53c68bb613f60df35cdd", + "hinting": { + "fpgm": 371, + "prep": 492, + "cvt ": 68 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 200, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 518, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 450, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 895 + }, + "MediumItalic": { + "sourceFile": "IBMPlexSans-MediumItalic.woff2", + "sourceSha256": "16f11ab3543e3d1e2704407378aafa4ddb570ad11f6a476eeaa4ec6e67fc30e8", + "hinting": { + "fpgm": 371, + "prep": 510, + "cvt ": 70 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 200, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 520, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 500, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 895 + }, + "SemiBoldItalic": { + "sourceFile": "IBMPlexSans-SemiBoldItalic.woff2", + "sourceSha256": "d875a0705b4596532250beeb66d9a2b8866a25f78b5b249b3d3293b5f922e50e", + "hinting": { + "fpgm": 371, + "prep": 524, + "cvt ": 68 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 200, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 522, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 600, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 895 + }, + "BoldItalic": { + "sourceFile": "IBMPlexSans-BoldItalic.woff2", + "sourceSha256": "73d57000ee0fa7d6e1dd3a9fe5901c2d7c71904af9a935dbbc1d44abc9574c1f", + "hinting": { + "fpgm": 371, + "prep": 560, + "cvt ": 72 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 3, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 200, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 525, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 700, + "OS/2.fsSelection": 289 + }, + "files": 1, + "codepoints": 895 + } + } + }, + "FluxerMono": { + "mode": "rebuild", + "source": "plex-mono", + "srcSubdir": "fonts/complete/woff2", + "cssFamily": "Fluxer Mono", + "stylesheet": "css/fluxer-mono.css", + "latinCore": true, + "gasp": { + "8": 10, + "16": 7, + "65535": 15 + }, + "codepoints": 1049, + "faces": { + "Thin": { + "sourceFile": "IBMPlexMono-Thin.woff2", + "sourceSha256": "6a3a0e8868e909acd348b4ba0b730cd6a468d0bc63ceb306618eece774f3431c", + "hinting": { + "fpgm": 371, + "prep": 500, + "cvt ": 80 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 100, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 1049 + }, + "ExtraLight": { + "sourceFile": "IBMPlexMono-ExtraLight.woff2", + "sourceSha256": "7fad24eb6de63594cb5553c2358fa6a065c8bcdcc747d3738bd6242f5512a44b", + "hinting": { + "fpgm": 371, + "prep": 476, + "cvt ": 80 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 200, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 1049 + }, + "Light": { + "sourceFile": "IBMPlexMono-Light.woff2", + "sourceSha256": "d02d3197935e15bcf305b67aacc034da872523e118dc12ffae3382a3a1fa0d0c", + "hinting": { + "fpgm": 371, + "prep": 500, + "cvt ": 80 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 300, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 1049 + }, + "Regular": { + "sourceFile": "IBMPlexMono-Regular.woff2", + "sourceSha256": "ba204497f16b6d334cee9d1e963a831b73e3a56e1d6300a8489d18df7214b350", + "hinting": { + "fpgm": 371, + "prep": 542, + "cvt ": 82 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 400, + "OS/2.fsSelection": 320 + }, + "files": 1, + "codepoints": 1049 + }, + "Text": { + "sourceFile": "IBMPlexMono-Text.woff2", + "sourceSha256": "1c8bbf160e9ffae6981a8a472a5f1b187116a8dff21018dc24c02a48ef7f73f8", + "hinting": { + "fpgm": 371, + "prep": 526, + "cvt ": 82 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 450, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 1049 + }, + "Medium": { + "sourceFile": "IBMPlexMono-Medium.woff2", + "sourceSha256": "33faf307fa6031fb4062276d7320a6d632de890cbb347576fd80cfa01077bc25", + "hinting": { + "fpgm": 371, + "prep": 578, + "cvt ": 86 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 500, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 1049 + }, + "SemiBold": { + "sourceFile": "IBMPlexMono-SemiBold.woff2", + "sourceSha256": "6a825b4824c01cbb401e829e5a066a1818411bcb3538b5a5792c5ca9b82343c3", + "hinting": { + "fpgm": 371, + "prep": 586, + "cvt ": 86 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 600, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 1049 + }, + "Bold": { + "sourceFile": "IBMPlexMono-Bold.woff2", + "sourceSha256": "ea576f38d05cc44cca48c45314984beb8cc1d2b886f58e1dce99f15dc344eb1d", + "hinting": { + "fpgm": 371, + "prep": 586, + "cvt ": 86 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 1, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 700, + "OS/2.fsSelection": 288 + }, + "files": 1, + "codepoints": 1049 + }, + "ThinItalic": { + "sourceFile": "IBMPlexMono-ThinItalic.woff2", + "sourceSha256": "df702e525421a89c2ec7e51d873caa7e743c89a1e6b483ec149159efd2c5b107", + "hinting": { + "fpgm": 371, + "prep": 500, + "cvt ": 80 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 167, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 100, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 1049 + }, + "ExtraLightItalic": { + "sourceFile": "IBMPlexMono-ExtraLightItalic.woff2", + "sourceSha256": "c7d1b11829064f774b7d40fb332094faf5f6eff3f37a6ff2355299d65578cb23", + "hinting": { + "fpgm": 371, + "prep": 484, + "cvt ": 80 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 167, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 200, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 1049 + }, + "LightItalic": { + "sourceFile": "IBMPlexMono-LightItalic.woff2", + "sourceSha256": "0562a7e637fb320083ec942f6cd1578d29036beca17c9c06e1bd9002f1cd0760", + "hinting": { + "fpgm": 371, + "prep": 484, + "cvt ": 80 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 167, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 300, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 1049 + }, + "Italic": { + "sourceFile": "IBMPlexMono-Italic.woff2", + "sourceSha256": "2024bf2b08027dcd6d09091385756e327744bbe26b782c411381dffc40ffc622", + "hinting": { + "fpgm": 371, + "prep": 542, + "cvt ": 82 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 167, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 400, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 1049 + }, + "TextItalic": { + "sourceFile": "IBMPlexMono-TextItalic.woff2", + "sourceSha256": "d978a5077e5b5fd2a5a4c317bcece7590ae3198d01f1450cefc8f44e8e0ba341", + "hinting": { + "fpgm": 371, + "prep": 542, + "cvt ": 82 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 167, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 450, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 1049 + }, + "MediumItalic": { + "sourceFile": "IBMPlexMono-MediumItalic.woff2", + "sourceSha256": "782325462f9a9708e02cb0415445cef7c9b5ee74f8910f33bfd1ab405a3402d2", + "hinting": { + "fpgm": 371, + "prep": 544, + "cvt ": 84 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 167, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 500, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 1049 + }, + "SemiBoldItalic": { + "sourceFile": "IBMPlexMono-SemiBoldItalic.woff2", + "sourceSha256": "67ad8975ad3cea95517f9dfe6d67fb3e4d87ca7bc4b51fa80e797e375c0cbe71", + "hinting": { + "fpgm": 371, + "prep": 546, + "cvt ": 86 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 2, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 167, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 600, + "OS/2.fsSelection": 257 + }, + "files": 1, + "codepoints": 1049 + }, + "BoldItalic": { + "sourceFile": "IBMPlexMono-BoldItalic.woff2", + "sourceSha256": "03e97fe28d44cc2bdf18d77284046bc9019ee626bdab1f06e7ea64837680824b", + "hinting": { + "fpgm": 371, + "prep": 586, + "cvt ": 86 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 3, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1000, + "hhea.caretSlopeRun": 167, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 700, + "OS/2.fsSelection": 289 + }, + "files": 1, + "codepoints": 1049 + } + } + }, + "FluxerSansArabic": { + "mode": "rebuild", + "source": "plex-sans-arabic", + "srcSubdir": "fonts/complete/woff2", + "cssFamily": "Fluxer Sans Arabic", + "stylesheet": "css/script-arabic.css", + "latinCore": false, + "gasp": { + "8": 10, + "16": 7, + "65535": 15 + }, + "codepoints": 1032, + "faces": { + "Thin": { + "sourceFile": "IBMPlexSansArabic-Thin.woff2", + "sourceSha256": "955e41abde689c41712340810cf7b62fa8bf3a2eb727babc796f38178b536125", + "hinting": { + "fpgm": 371, + "prep": 600, + "cvt ": 80 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 506, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 100, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 1032 + }, + "ExtraLight": { + "sourceFile": "IBMPlexSansArabic-ExtraLight.woff2", + "sourceSha256": "91e24c2256d7cde77ae76da92e4f5cb58ef9dfa32d47e8cfadd8013d19b9796f", + "hinting": { + "fpgm": 371, + "prep": 618, + "cvt ": 82 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 508, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 200, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 1032 + }, + "Light": { + "sourceFile": "IBMPlexSansArabic-Light.woff2", + "sourceSha256": "a9f0b2eda9dda69757567065818a78dd2c578866ca6f7ed45089f8ca532a8a4d", + "hinting": { + "fpgm": 371, + "prep": 600, + "cvt ": 80 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 512, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 300, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 1032 + }, + "Regular": { + "sourceFile": "IBMPlexSansArabic-Regular.woff2", + "sourceSha256": "74112e1b7bf2e2c547989a4e947a60cba6cd1f9156e0065670134636e717199d", + "hinting": { + "fpgm": 371, + "prep": 578, + "cvt ": 82 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 400, + "OS/2.fsSelection": 320 + }, + "files": 1, + "codepoints": 1032 + }, + "Text": { + "sourceFile": "IBMPlexSansArabic-Text.woff2", + "sourceSha256": "0d91b379d57d6d88e33c2acd9f7a0b0083b6929467070cc577342b8d9febf470", + "hinting": { + "fpgm": 371, + "prep": 594, + "cvt ": 82 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 518, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 450, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 1032 + }, + "Medium": { + "sourceFile": "IBMPlexSansArabic-Medium.woff2", + "sourceSha256": "c72f6986f50ded745d06e71e508096209c52a55a6b3a81029954e33c52ba1dd2", + "hinting": { + "fpgm": 371, + "prep": 602, + "cvt ": 82 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 520, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 500, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 1032 + }, + "SemiBold": { + "sourceFile": "IBMPlexSansArabic-SemiBold.woff2", + "sourceSha256": "869b2acd0a9660607a2025f0fe1c640110bf23d33417509328f07722922b8063", + "hinting": { + "fpgm": 371, + "prep": 646, + "cvt ": 86 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 522, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 600, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 1032 + }, + "Bold": { + "sourceFile": "IBMPlexSansArabic-Bold.woff2", + "sourceSha256": "db6650a05969c144ab5ab9bb6c3beca6ca4dbb3537bb5f2311c878dd293875b4", + "hinting": { + "fpgm": 371, + "prep": 662, + "cvt ": 86 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 1, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 525, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 700, + "OS/2.fsSelection": 288 + }, + "files": 1, + "codepoints": 1032 + } + } + }, + "FluxerSansDevanagari": { + "mode": "rebuild", + "source": "plex-sans-devanagari", + "srcSubdir": "fonts/complete/woff2", + "cssFamily": "Fluxer Sans Devanagari", + "stylesheet": "css/script-devanagari.css", + "latinCore": false, + "gasp": { + "8": 10, + "16": 7, + "65535": 15 + }, + "codepoints": 458, + "faces": { + "Thin": { + "sourceFile": "IBMPlexSansDevanagari-Thin.woff2", + "sourceSha256": "ce6fd362189904f316eb09db8569167887e8ff2ca2d7f21624b1e23dd17c801b", + "hinting": { + "fpgm": 371, + "prep": 510, + "cvt ": 70 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1070, + "hhea.descender": -460, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 530, + "OS/2.usWinAscent": 1070, + "OS/2.usWinDescent": 460, + "OS/2.sxHeight": 506, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 100, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 458 + }, + "ExtraLight": { + "sourceFile": "IBMPlexSansDevanagari-ExtraLight.woff2", + "sourceSha256": "8a023bee88b0bf5126e70444e2440e18267fd445354191f909cd6891cdb6c615", + "hinting": { + "fpgm": 371, + "prep": 546, + "cvt ": 74 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1070, + "hhea.descender": -460, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 530, + "OS/2.usWinAscent": 1070, + "OS/2.usWinDescent": 460, + "OS/2.sxHeight": 508, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 200, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 458 + }, + "Light": { + "sourceFile": "IBMPlexSansDevanagari-Light.woff2", + "sourceSha256": "587183f3c50df7e8d74ef77bf6a8fdf6be8a112a64ee1be611c6afa7e96956f6", + "hinting": { + "fpgm": 371, + "prep": 564, + "cvt ": 76 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1070, + "hhea.descender": -460, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 530, + "OS/2.usWinAscent": 1070, + "OS/2.usWinDescent": 460, + "OS/2.sxHeight": 512, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 300, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 458 + }, + "Regular": { + "sourceFile": "IBMPlexSansDevanagari-Regular.woff2", + "sourceSha256": "9414954cbb343be6c8fa97b716a93eb7cd5501043356cdbb704e233db5f8ca85", + "hinting": { + "fpgm": 371, + "prep": 524, + "cvt ": 76 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1070, + "hhea.descender": -460, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 530, + "OS/2.usWinAscent": 1070, + "OS/2.usWinDescent": 460, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 400, + "OS/2.fsSelection": 320 + }, + "files": 1, + "codepoints": 458 + }, + "Text": { + "sourceFile": "IBMPlexSansDevanagari-Text.woff2", + "sourceSha256": "adb4f039bfe98cfeabb4addc0f14b001b9700006da71b8fb358791b2d8bbd840", + "hinting": { + "fpgm": 371, + "prep": 522, + "cvt ": 74 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1070, + "hhea.descender": -460, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 530, + "OS/2.usWinAscent": 1070, + "OS/2.usWinDescent": 460, + "OS/2.sxHeight": 518, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 450, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 458 + }, + "Medium": { + "sourceFile": "IBMPlexSansDevanagari-Medium.woff2", + "sourceSha256": "2b39f69997b1de44cfef6f6f6ef899a4f434a84af1dbc21886558e0f4d8d29b9", + "hinting": { + "fpgm": 371, + "prep": 530, + "cvt ": 74 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1070, + "hhea.descender": -460, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 530, + "OS/2.usWinAscent": 1070, + "OS/2.usWinDescent": 460, + "OS/2.sxHeight": 520, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 500, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 458 + }, + "SemiBold": { + "sourceFile": "IBMPlexSansDevanagari-SemiBold.woff2", + "sourceSha256": "adbd61f32837a5b83b51f5a201305e4163f73505bf02262b3d30965fa96f948a", + "hinting": { + "fpgm": 371, + "prep": 556, + "cvt ": 76 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1070, + "hhea.descender": -460, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 530, + "OS/2.usWinAscent": 1070, + "OS/2.usWinDescent": 460, + "OS/2.sxHeight": 522, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 600, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 458 + }, + "Bold": { + "sourceFile": "IBMPlexSansDevanagari-Bold.woff2", + "sourceSha256": "514fe29e79c3dfc0aad4bfb12ede03975acfc26349c9250eee7f77b126e5c3c0", + "hinting": { + "fpgm": 371, + "prep": 590, + "cvt ": 78 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 1, + "hhea.ascender": 1070, + "hhea.descender": -460, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 530, + "OS/2.usWinAscent": 1070, + "OS/2.usWinDescent": 460, + "OS/2.sxHeight": 525, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 700, + "OS/2.fsSelection": 288 + }, + "files": 1, + "codepoints": 458 + } + } + }, + "FluxerSansHebrew": { + "mode": "rebuild", + "source": "plex-sans-hebrew", + "srcSubdir": "fonts/complete/woff2", + "cssFamily": "Fluxer Sans Hebrew", + "stylesheet": "css/script-hebrew.css", + "latinCore": false, + "gasp": { + "8": 10, + "16": 7, + "65535": 15 + }, + "codepoints": 437, + "faces": { + "Thin": { + "sourceFile": "IBMPlexSansHebrew-Thin.woff2", + "sourceSha256": "73af9cdaa806275ba468b0664d36ac4666419c261df6f5941157265699718d1a", + "hinting": { + "fpgm": 371, + "prep": 538, + "cvt ": 66 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 506, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 100, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 437 + }, + "ExtraLight": { + "sourceFile": "IBMPlexSansHebrew-ExtraLight.woff2", + "sourceSha256": "5444654543f46af83839e6ea2d586a3b2974b5f8ae236a3d258dde22d5c0dd2f", + "hinting": { + "fpgm": 371, + "prep": 514, + "cvt ": 66 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 508, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 200, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 437 + }, + "Light": { + "sourceFile": "IBMPlexSansHebrew-Light.woff2", + "sourceSha256": "91d7261a9821a82104f63c66422f3c91a0067745b8253bb51914685a3726aa18", + "hinting": { + "fpgm": 371, + "prep": 514, + "cvt ": 66 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 512, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 300, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 437 + }, + "Regular": { + "sourceFile": "IBMPlexSansHebrew-Regular.woff2", + "sourceSha256": "9e56b8035b123978d479e50c6fcccaebc462888dc49902d8572f7869210a077e", + "hinting": { + "fpgm": 371, + "prep": 434, + "cvt ": 70 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 400, + "OS/2.fsSelection": 320 + }, + "files": 1, + "codepoints": 437 + }, + "Text": { + "sourceFile": "IBMPlexSansHebrew-Text.woff2", + "sourceSha256": "dd655589f1ba0cf128c19b9c8c28e8bbc1f75e795b18faa2fb89073b825e7bf6", + "hinting": { + "fpgm": 371, + "prep": 474, + "cvt ": 66 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 518, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 450, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 437 + }, + "Medium": { + "sourceFile": "IBMPlexSansHebrew-Medium.woff2", + "sourceSha256": "91911819babe8f811aea1c531401443c7886fd473bef02282880693600dd58f5", + "hinting": { + "fpgm": 371, + "prep": 482, + "cvt ": 66 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 520, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 500, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 437 + }, + "SemiBold": { + "sourceFile": "IBMPlexSansHebrew-SemiBold.woff2", + "sourceSha256": "22792f09b91eeac408bce0df1aea7849a103e993a9ee31c707b8b9b6396dddf4", + "hinting": { + "fpgm": 371, + "prep": 508, + "cvt ": 68 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 522, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 600, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 437 + }, + "Bold": { + "sourceFile": "IBMPlexSansHebrew-Bold.woff2", + "sourceSha256": "4a2181ea6604ad78e1e46806b8f83a31c072d2495d8b274ea41fdad212727cd4", + "hinting": { + "fpgm": 371, + "prep": 532, + "cvt ": 68 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 1, + "hhea.ascender": 1025, + "hhea.descender": -275, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 300, + "OS/2.usWinAscent": 1025, + "OS/2.usWinDescent": 275, + "OS/2.sxHeight": 525, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 700, + "OS/2.fsSelection": 288 + }, + "files": 1, + "codepoints": 437 + } + } + }, + "FluxerSansThai": { + "mode": "rebuild", + "source": "plex-sans-thai", + "srcSubdir": "fonts/complete/woff2", + "cssFamily": "Fluxer Sans Thai", + "stylesheet": "css/script-thai.css", + "latinCore": false, + "gasp": { + "8": 10, + "16": 7, + "65535": 15 + }, + "codepoints": 451, + "faces": { + "Thin": { + "sourceFile": "IBMPlexSansThai-Thin.woff2", + "sourceSha256": "9bbe3c3f11812e6544f435403ae0c21a9c092454f37cba36b94b56f2b1502c27", + "hinting": { + "fpgm": 371, + "prep": 610, + "cvt ": 74 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 506, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 100, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 451 + }, + "ExtraLight": { + "sourceFile": "IBMPlexSansThai-ExtraLight.woff2", + "sourceSha256": "d553a18e78e826ac9d79580ef67750269d44da355760f1c73d27af430b97cd79", + "hinting": { + "fpgm": 371, + "prep": 610, + "cvt ": 78 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 508, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 200, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 451 + }, + "Light": { + "sourceFile": "IBMPlexSansThai-Light.woff2", + "sourceSha256": "0353228819543acef0debab28a41b67bead7a3d0b9e6dca038e3e8fa53c0daa7", + "hinting": { + "fpgm": 371, + "prep": 594, + "cvt ": 78 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 512, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 300, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 451 + }, + "Regular": { + "sourceFile": "IBMPlexSansThai-Regular.woff2", + "sourceSha256": "0350508969dad82ffd2b7608d8299454bf19ec54e464a16a66e5a9733e83654d", + "hinting": { + "fpgm": 371, + "prep": 492, + "cvt ": 80 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 400, + "OS/2.fsSelection": 320 + }, + "files": 1, + "codepoints": 451 + }, + "Text": { + "sourceFile": "IBMPlexSansThai-Text.woff2", + "sourceSha256": "deb6005a9eeddc81faea5849a5d1be85d545c3984621e15aaaf5dfb033f3f55c", + "hinting": { + "fpgm": 371, + "prep": 458, + "cvt ": 74 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 518, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 450, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 451 + }, + "Medium": { + "sourceFile": "IBMPlexSansThai-Medium.woff2", + "sourceSha256": "8249537de3768f46ce7b04e9e832c47f3ffa84900bdac2b18968d431d8814c61", + "hinting": { + "fpgm": 371, + "prep": 482, + "cvt ": 74 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 520, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 500, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 451 + }, + "SemiBold": { + "sourceFile": "IBMPlexSansThai-SemiBold.woff2", + "sourceSha256": "83f9d86c099e0006077854cac1cf6f9d3177fb0c4f356254a7d56d047c097e52", + "hinting": { + "fpgm": 371, + "prep": 484, + "cvt ": 72 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 522, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 600, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 451 + }, + "Bold": { + "sourceFile": "IBMPlexSansThai-Bold.woff2", + "sourceSha256": "c65640f017e19c668aa927ec7e539d4306a8c77fec717ea979b12a1bb1c40121", + "hinting": { + "fpgm": 371, + "prep": 574, + "cvt ": 74 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 1, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 525, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 700, + "OS/2.fsSelection": 288 + }, + "files": 1, + "codepoints": 451 + } + } + }, + "FluxerSansThaiLooped": { + "mode": "rebuild", + "source": "plex-sans-thai-looped", + "srcSubdir": "fonts/complete/woff2", + "cssFamily": "Fluxer Sans Thai Looped", + "stylesheet": "css/script-thai-looped.css", + "latinCore": false, + "gasp": { + "8": 10, + "16": 7, + "65535": 15 + }, + "codepoints": 451, + "faces": { + "Thin": { + "sourceFile": "IBMPlexSansThaiLooped-Thin.woff2", + "sourceSha256": "506ea0995f37aeabb2413dfa5c75c960dca21c25a602c5074d732f979b25ff1c", + "hinting": { + "fpgm": 371, + "prep": 646, + "cvt ": 78 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 506, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 100, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 451 + }, + "ExtraLight": { + "sourceFile": "IBMPlexSansThaiLooped-ExtraLight.woff2", + "sourceSha256": "95360504c2a5dc34ab33c07d2bbd4594dedcf3b3dee0cb9a96d8107671a456ef", + "hinting": { + "fpgm": 371, + "prep": 646, + "cvt ": 82 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 508, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 200, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 451 + }, + "Light": { + "sourceFile": "IBMPlexSansThaiLooped-Light.woff2", + "sourceSha256": "3b0cd1d9c3cd1e241167b1b5cdb19ffc25cbb60883e890f3e7407218744c3116", + "hinting": { + "fpgm": 371, + "prep": 630, + "cvt ": 82 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 512, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 300, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 451 + }, + "Regular": { + "sourceFile": "IBMPlexSansThaiLooped-Regular.woff2", + "sourceSha256": "893f879fdc6ad2a1e4d09a6210f161bf0b132d9d266078f322441ec289572905", + "hinting": { + "fpgm": 371, + "prep": 528, + "cvt ": 84 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 400, + "OS/2.fsSelection": 320 + }, + "files": 1, + "codepoints": 451 + }, + "Text": { + "sourceFile": "IBMPlexSansThaiLooped-Text.woff2", + "sourceSha256": "d6e755f41092bd863b33dfc71d11d3bde8e0a838fde73c27ab0d4c4f0315a8b4", + "hinting": { + "fpgm": 371, + "prep": 494, + "cvt ": 78 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 518, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 450, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 451 + }, + "Medium": { + "sourceFile": "IBMPlexSansThaiLooped-Medium.woff2", + "sourceSha256": "5f3de9f39f7c07de0ec671c7ccbd705ef50eec5c90adbc371008efefb9f038ae", + "hinting": { + "fpgm": 371, + "prep": 518, + "cvt ": 78 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 520, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 500, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 451 + }, + "SemiBold": { + "sourceFile": "IBMPlexSansThaiLooped-SemiBold.woff2", + "sourceSha256": "9ffd8b2c2ee1a8fbac6822d4fa946d6a47f4a1eccbc3768776f141a797580eba", + "hinting": { + "fpgm": 371, + "prep": 520, + "cvt ": 76 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 522, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 600, + "OS/2.fsSelection": 256 + }, + "files": 1, + "codepoints": 451 + }, + "Bold": { + "sourceFile": "IBMPlexSansThaiLooped-Bold.woff2", + "sourceSha256": "57d56a28e14613d5cde70d986ff725840826054c661d4b821c8404235e2354ec", + "hinting": { + "fpgm": 371, + "prep": 610, + "cvt ": 78 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 1, + "hhea.ascender": 1116, + "hhea.descender": -534, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 650, + "OS/2.usWinAscent": 1116, + "OS/2.usWinDescent": 534, + "OS/2.sxHeight": 525, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 700, + "OS/2.fsSelection": 288 + }, + "files": 1, + "codepoints": 451 + } + } + }, + "FluxerSansJP": { + "mode": "subset", + "source": "plex-sans-jp", + "srcSubdir": "fonts/complete/woff2/hinted", + "cssFamily": "Fluxer Sans JP", + "stylesheet": "css/script-jp.css", + "latinCore": false, + "gasp": { + "7": 10, + "65535": 15 + }, + "codepoints": 15718, + "faces": { + "Thin": { + "sourceFile": "IBMPlexSansJP-Thin.woff2", + "sourceSha256": "bee814467c05fbef5f05667497286a95b3b8b05f983d173190fee0e1ee47c4c1", + "hinting": { + "fpgm": 682, + "prep": 389, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1060, + "hhea.descender": -440, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 531, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 100, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 45, + "codepoints": 15718 + }, + "ExtraLight": { + "sourceFile": "IBMPlexSansJP-ExtraLight.woff2", + "sourceSha256": "86b65f9f1ccd4d3c1bee8f743bb47869c2077e1752ebe61d576942bb54f1d94b", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1060, + "hhea.descender": -440, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 534, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 200, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 45, + "codepoints": 15718 + }, + "Light": { + "sourceFile": "IBMPlexSansJP-Light.woff2", + "sourceSha256": "4d40f9921e3467d01acf4d356b19754b1a80c65e24841dc79644134233f6002d", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1060, + "hhea.descender": -440, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 537, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 300, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 45, + "codepoints": 15718 + }, + "Regular": { + "sourceFile": "IBMPlexSansJP-Regular.woff2", + "sourceSha256": "ec27e9b75cd90a6f7abe96ede49d00b151eb5b1c2c886bfe9b4fc845f40be1ff", + "hinting": { + "fpgm": 682, + "prep": 393, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1060, + "hhea.descender": -440, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 541, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 400, + "OS/2.fsSelection": 320, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 45, + "codepoints": 15718 + }, + "Text": { + "sourceFile": "IBMPlexSansJP-Text.woff2", + "sourceSha256": "0ae11e567d66ea8a1e39f8afc492130ae66b7f114bc1fdd1449e7fe3a29d289a", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1060, + "hhea.descender": -440, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 543, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 450, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 45, + "codepoints": 15718 + }, + "Medium": { + "sourceFile": "IBMPlexSansJP-Medium.woff2", + "sourceSha256": "48bcbdb2bca0ddea63b86ec6aaa96baf49861955b2b9498299d5c0808d023b37", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1060, + "hhea.descender": -440, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 545, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 500, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 45, + "codepoints": 15718 + }, + "SemiBold": { + "sourceFile": "IBMPlexSansJP-SemiBold.woff2", + "sourceSha256": "88c41ab69fd76c6211b47332d855d58ed20359b01b24e8bd2697c2c87e181f2c", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1060, + "hhea.descender": -440, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 548, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 600, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 45, + "codepoints": 15718 + }, + "Bold": { + "sourceFile": "IBMPlexSansJP-Bold.woff2", + "sourceSha256": "38336fbb169ae1b7b6ca2539332e1d59c9be222227659d23f8eb70ecda60337d", + "hinting": { + "fpgm": 682, + "prep": 393, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 1, + "hhea.ascender": 1060, + "hhea.descender": -440, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 550, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 700, + "OS/2.fsSelection": 288, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 45, + "codepoints": 15718 + } + }, + "transfer": { + "unslicedBytes": 2282284, + "scenarios": { + "mixed script": { + "bytes": 55820, + "chunks": 1, + "ratio": 40.886 + }, + "display name": { + "bytes": 200116, + "chunks": 4, + "ratio": 11.405 + }, + "sentence": { + "bytes": 220176, + "chunks": 3, + "ratio": 10.366 + }, + "full coverage": { + "bytes": 2556772, + "chunks": 45, + "ratio": 0.893 + } + } + } + }, + "FluxerSansSC": { + "mode": "subset", + "source": "plex-sans-sc", + "srcSubdir": "fonts/complete/woff2/hinted", + "cssFamily": "Fluxer Sans SC", + "stylesheet": "css/script-sc.css", + "latinCore": false, + "gasp": { + "7": 10, + "65535": 15 + }, + "codepoints": 29285, + "faces": { + "Thin": { + "sourceFile": "IBMPlexSansSC-Thin.woff2", + "sourceSha256": "850c949f583c6a833d0d4e4f4fdb0be03de50bbf44e0d6f1157d194be5e0d701", + "hinting": { + "fpgm": 682, + "prep": 389, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 531, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 100, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 69, + "codepoints": 29285 + }, + "ExtraLight": { + "sourceFile": "IBMPlexSansSC-ExtraLight.woff2", + "sourceSha256": "b6cc3f3da27f2cdc293f3000955142d46cd6f9740aa424132984692e73a2659f", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 534, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 200, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 69, + "codepoints": 29285 + }, + "Light": { + "sourceFile": "IBMPlexSansSC-Light.woff2", + "sourceSha256": "49500d5345220897bd60f61dd4cb2cb632428e7c9c8b502433fc3f7af9bcbd3b", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 537, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 300, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 69, + "codepoints": 29285 + }, + "Regular": { + "sourceFile": "IBMPlexSansSC-Regular.woff2", + "sourceSha256": "dc51399ce38f7200806df891476d7216a81c8aede47284e421a54413608c407c", + "hinting": { + "fpgm": 682, + "prep": 393, + "cvt ": 64 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 541, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 400, + "OS/2.fsSelection": 320, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 69, + "codepoints": 29285 + }, + "Text": { + "sourceFile": "IBMPlexSansSC-Text.woff2", + "sourceSha256": "1b27447b0022d243d0c0144c9e4fb40106aa10ec3deb21035de62aca6af01089", + "hinting": { + "fpgm": 682, + "prep": 397, + "cvt ": 64 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 543, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 450, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 69, + "codepoints": 29285 + }, + "Medium": { + "sourceFile": "IBMPlexSansSC-Medium.woff2", + "sourceSha256": "e0b63393631466eaca682444a0734eac6f3d6e9667d133e50ae1eeafae525cb6", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 64 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 545, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 500, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 69, + "codepoints": 29284 + }, + "SemiBold": { + "sourceFile": "IBMPlexSansSC-SemiBold.woff2", + "sourceSha256": "31c2e2375deec6d2ea3d371bec2d3cb2bfe43a51a9e8af986d5b25cd7cb279d3", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 64 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 548, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 600, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 69, + "codepoints": 29285 + }, + "Bold": { + "sourceFile": "IBMPlexSansSC-Bold.woff2", + "sourceSha256": "359d084a1aa6a4376bd6544d154c0aa0ba2c7d1e8866aca2ef5cf7626c0465f5", + "hinting": { + "fpgm": 682, + "prep": 393, + "cvt ": 64 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 1, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 550, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 700, + "OS/2.fsSelection": 288, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 69, + "codepoints": 29285 + } + }, + "transfer": { + "unslicedBytes": 3813972, + "scenarios": { + "mixed script": { + "bytes": 58848, + "chunks": 1, + "ratio": 64.811 + }, + "display name": { + "bytes": 112768, + "chunks": 2, + "ratio": 33.821 + }, + "sentence": { + "bytes": 424408, + "chunks": 7, + "ratio": 8.987 + }, + "full coverage": { + "bytes": 4542728, + "chunks": 69, + "ratio": 0.84 + } + } + } + }, + "FluxerSansTC": { + "mode": "subset", + "source": "plex-sans-tc", + "srcSubdir": "fonts/complete/woff2/hinted", + "cssFamily": "Fluxer Sans TC", + "stylesheet": "css/script-tc.css", + "latinCore": false, + "gasp": { + "7": 10, + "65535": 15 + }, + "codepoints": 23646, + "faces": { + "Thin": { + "sourceFile": "IBMPlexSansTC-Thin.woff2", + "sourceSha256": "c636f0db894b6371f3686507bb4cd937cb6e73d16f4ba7c1a4ef95e1e66538bf", + "hinting": { + "fpgm": 682, + "prep": 389, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 531, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 100, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 50, + "codepoints": 23646 + }, + "ExtraLight": { + "sourceFile": "IBMPlexSansTC-ExtraLight.woff2", + "sourceSha256": "9b9692a12c4468897cc39b1b1928eddec6e47f97e2810a4a11def98b7136402b", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 534, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 200, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 50, + "codepoints": 23641 + }, + "Light": { + "sourceFile": "IBMPlexSansTC-Light.woff2", + "sourceSha256": "ed388a093853c5f552671bd9351d99a0bee3dceed7ca21621bffbed96c3a0b55", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 62 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 537, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 300, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 50, + "codepoints": 23641 + }, + "Regular": { + "sourceFile": "IBMPlexSansTC-Regular.woff2", + "sourceSha256": "49312dc07daded0d15eb0a63dc4cfb52eead7d7c3b867908b80faa2876b2ec5a", + "hinting": { + "fpgm": 682, + "prep": 393, + "cvt ": 64 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 541, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 400, + "OS/2.fsSelection": 320, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 50, + "codepoints": 23646 + }, + "Text": { + "sourceFile": "IBMPlexSansTC-Text.woff2", + "sourceSha256": "b02eb3d7636ae2980a52a80dc80c8fd2ec962f322b79f78b9d833d4017ce8577", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 64 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 543, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 450, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 50, + "codepoints": 23641 + }, + "Medium": { + "sourceFile": "IBMPlexSansTC-Medium.woff2", + "sourceSha256": "aa58ce5e18349fc1e46a1d2f8b54fae3a30cd70601c1f2f748dff4202d72613c", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 64 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 545, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 500, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 50, + "codepoints": 23641 + }, + "SemiBold": { + "sourceFile": "IBMPlexSansTC-SemiBold.woff2", + "sourceSha256": "603651c42210a379c7faf2e8ede13c050be90165b2fbf83602df356ba39450e6", + "hinting": { + "fpgm": 682, + "prep": 377, + "cvt ": 64 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 548, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 600, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 50, + "codepoints": 23641 + }, + "Bold": { + "sourceFile": "IBMPlexSansTC-Bold.woff2", + "sourceSha256": "bf1191100a9afd77732ad9d780f9dcff30b62e6abf785b5d0420bb2bb5a001a6", + "hinting": { + "fpgm": 682, + "prep": 393, + "cvt ": 64 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 1, + "hhea.ascender": 880, + "hhea.descender": -120, + "hhea.lineGap": 1000, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 880, + "OS/2.sTypoDescender": -120, + "OS/2.sTypoLineGap": 1000, + "OS/2.usWinAscent": 1060, + "OS/2.usWinDescent": 440, + "OS/2.sxHeight": 550, + "OS/2.sCapHeight": 733, + "OS/2.usWeightClass": 700, + "OS/2.fsSelection": 288, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 50, + "codepoints": 23646 + } + }, + "transfer": { + "unslicedBytes": 2496872, + "scenarios": { + "mixed script": { + "bytes": 61296, + "chunks": 1, + "ratio": 40.735 + }, + "display name": { + "bytes": 127808, + "chunks": 2, + "ratio": 19.536 + }, + "sentence": { + "bytes": 515840, + "chunks": 7, + "ratio": 4.84 + }, + "full coverage": { + "bytes": 3569424, + "chunks": 50, + "ratio": 0.7 + } + } + } + }, + "FluxerSansKR": { + "mode": "subset", + "source": "plex-sans-kr", + "srcSubdir": "ibm-plex-sans-kr/fonts/complete/woff2/unhinted", + "cssFamily": "Fluxer Sans KR", + "stylesheet": "css/script-kr.css", + "latinCore": false, + "gasp": { + "8": 10, + "16": 7, + "65535": 15 + }, + "codepoints": 12183, + "faces": { + "Thin": { + "sourceFile": "IBMPlexSansKR-Thin.woff2", + "sourceSha256": "33963f6cb7cecd0c348860bb84c7800b9a5818ad9ae2c6dd43282fee438689fc", + "hinting": { + "fpgm": 682, + "prep": 329, + "cvt ": 46 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 506, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 100, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 10, + "codepoints": 12183 + }, + "ExtraLight": { + "sourceFile": "IBMPlexSansKR-ExtraLight.woff2", + "sourceSha256": "53d00c9a76a0032d0d9a8d74439ea8322632da7f454a55ffc9f557b2132bd308", + "hinting": { + "fpgm": 682, + "prep": 329, + "cvt ": 46 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 508, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 200, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 10, + "codepoints": 12183 + }, + "Light": { + "sourceFile": "IBMPlexSansKR-Light.woff2", + "sourceSha256": "ac3be72b516cd3449a7cfa399d7c94fe94eb69d9ef6050835293c8bcde8c9803", + "hinting": { + "fpgm": 682, + "prep": 329, + "cvt ": 46 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 512, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 300, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 10, + "codepoints": 12183 + }, + "Regular": { + "sourceFile": "IBMPlexSansKR-Regular.woff2", + "sourceSha256": "fd8843c1b203932625ec1d5da98618530d2fe266005258aa44a2fbaf43a4ff07", + "hinting": { + "fpgm": 682, + "prep": 329, + "cvt ": 46 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 516, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 400, + "OS/2.fsSelection": 320, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 10, + "codepoints": 12183 + }, + "Text": { + "sourceFile": "IBMPlexSansKR-Text.woff2", + "sourceSha256": "3e85ee3280f8f1235cebea3e9f7f7e451a5a654b7deedd176bd5a566aedbb397", + "hinting": { + "fpgm": 682, + "prep": 329, + "cvt ": 46 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 518, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 450, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 10, + "codepoints": 12183 + }, + "Medium": { + "sourceFile": "IBMPlexSansKR-Medium.woff2", + "sourceSha256": "97d58e8c88d28d4b66d65df6823902e8c80e68d2055a7529968a084e13c625c5", + "hinting": { + "fpgm": 682, + "prep": 329, + "cvt ": 46 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 520, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 500, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 10, + "codepoints": 12183 + }, + "SemiBold": { + "sourceFile": "IBMPlexSansKR-SemiBold.woff2", + "sourceSha256": "c90bb224a0e9287941ad5b6076ac2a5988aa58d1feb28690b90d3a02d73707f6", + "hinting": { + "fpgm": 682, + "prep": 329, + "cvt ": 46 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 0, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 522, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 600, + "OS/2.fsSelection": 256, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 10, + "codepoints": 12183 + }, + "Bold": { + "sourceFile": "IBMPlexSansKR-Bold.woff2", + "sourceSha256": "05d61961b60bcca5036f0140f989472c580cd6c42e203b1302208351d58fc20a", + "hinting": { + "fpgm": 682, + "prep": 329, + "cvt ": 48 + }, + "metrics": { + "head.unitsPerEm": 1000, + "head.macStyle": 1, + "hhea.ascender": 1085, + "hhea.descender": -415, + "hhea.lineGap": 0, + "hhea.caretSlopeRise": 1, + "hhea.caretSlopeRun": 0, + "OS/2.sTypoAscender": 780, + "OS/2.sTypoDescender": -220, + "OS/2.sTypoLineGap": 500, + "OS/2.usWinAscent": 1085, + "OS/2.usWinDescent": 415, + "OS/2.sxHeight": 525, + "OS/2.sCapHeight": 698, + "OS/2.usWeightClass": 700, + "OS/2.fsSelection": 288, + "vhea.ascent": 500, + "vhea.descent": -500, + "vhea.lineGap": 1000 + }, + "files": 10, + "codepoints": 12183 + } + }, + "transfer": { + "unslicedBytes": 441260, + "scenarios": { + "mixed script": { + "bytes": 63284, + "chunks": 1, + "ratio": 6.973 + }, + "display name": { + "bytes": 177560, + "chunks": 3, + "ratio": 2.485 + }, + "sentence": { + "bytes": 460524, + "chunks": 8, + "ratio": 0.958 + }, + "full coverage": { + "bytes": 525676, + "chunks": 10, + "ratio": 0.839 + } + } + } + } + }, + "stylesheets": { + "css/fluxer-mono.css": { + "sha256": "96a4fba0d07e76461be1a0d926a931f35e8b125493ae6361178a8156bdae12fe", + "bytes": 3023 + }, + "css/fluxer-sans.css": { + "sha256": "018b8216afcaae0bad2cf6f159bdd1e6ad608626eed65e9f962dad713d02c86e", + "bytes": 3023 + }, + "css/locale-fallbacks.css": { + "sha256": "c81f498b8b5a27a3e15a56c8ec2b0cd3892094b2337d85a5c2e3af87d437c114", + "bytes": 3133 + }, + "css/script-arabic.css": { + "sha256": "13fb70d818f3daee7376327bfa229225d19e618d2811235c90a16501fb672aa0", + "bytes": 15974 + }, + "css/script-devanagari.css": { + "sha256": "e2714b5e3a2b117d1282ecd00efb06f290cc6d7677e718f02ca7f23b87e494f5", + "bytes": 8902 + }, + "css/script-hebrew.css": { + "sha256": "0d760e4916a99726946ceb579298d99d1d8c76f06998bcc82ba307a3a950031b", + "bytes": 9406 + }, + "css/script-jp.css": { + "sha256": "fad4c005abb2bf4ec6186fa63b424b00bc871366bffd58bf6d6967a2fa353c13", + "bytes": 505606 + }, + "css/script-kr.css": { + "sha256": "8e96b96748c7513d03bf3763c303f8a84d05db79cef76848cc66fb45b12a47af", + "bytes": 28990 + }, + "css/script-sc.css": { + "sha256": "bd6588f0dc58fcc2a161435fdf969a50f53b9f4849d1269d6532066eaf8d0746", + "bytes": 151075 + }, + "css/script-tc.css": { + "sha256": "473ed0a26559ae8ba19bab5e29a1bcc5b71137ee0231c6ac14cd9474070ad166", + "bytes": 530757 + }, + "css/script-thai-looped.css": { + "sha256": "bfb106e6cd9474e2f482c3bb0ec3e2a78cacebc38f766f8c1a8f0a2ef42a0038", + "bytes": 8662 + }, + "css/script-thai.css": { + "sha256": "0b3a1a7176e318aa8d13f28e6154bcdd6930509278c8fa1be4841613c2dee7b9", + "bytes": 8510 + }, + "css/variables.css": { + "sha256": "8fe0dd78ec093d7a8dd4c55bb320e887f14bf33279b4d30e5106a9d26830f1a3", + "bytes": 486 + }, + "manifest.json": { + "sha256": "8f8080fa0fcfb85bbf381e1362acc0b22f710c7881fc68c410342420a7984ee6", + "bytes": 1207257 + } + }, + "files": { + "files/FluxerSans/FluxerSans-Thin.woff2": { + "sha256": "993a205532cc4188418cc73962bd9a6bec3f82ad51e4d67c1e828ef2c868028f", + "bytes": 61924 + }, + "files/FluxerSans/FluxerSans-ExtraLight.woff2": { + "sha256": "4c921460548443cb8affecc21028e37115aa2bcd3aad6b574c893de7a84a7749", + "bytes": 66532 + }, + "files/FluxerSans/FluxerSans-Light.woff2": { + "sha256": "013b4631bf7471429a60e17d5af221b16225c4e903ac855046a107e42d485a29", + "bytes": 66456 + }, + "files/FluxerSans/FluxerSans-Regular.woff2": { + "sha256": "cdb79205a6e574a7055c2867d5feb9cfb2358da5e9db47d342ce90b069085ffd", + "bytes": 62852 + }, + "files/FluxerSans/FluxerSans-Text.woff2": { + "sha256": "74914b6a03c25546c314a725364d40539f79c4993e301e46f4a922f8803dc8f7", + "bytes": 66268 + }, + "files/FluxerSans/FluxerSans-Medium.woff2": { + "sha256": "99f021ebb47b9ad07544127a13cfbb9eecea3a9dc4afbdd682fbf50737619292", + "bytes": 66656 + }, + "files/FluxerSans/FluxerSans-SemiBold.woff2": { + "sha256": "ceb68296608a0cfe15a9aa8a68cea6bb3682f62eebbf7b0b654612dc85992b70", + "bytes": 67088 + }, + "files/FluxerSans/FluxerSans-Bold.woff2": { + "sha256": "6fd8328cdaff47617c513d02e5974f3c90cb62892de2ce7f48884b99719d6d44", + "bytes": 62884 + }, + "files/FluxerSans/FluxerSans-ThinItalic.woff2": { + "sha256": "f27c155b64f138ff3f3af8263662ebc3ed166c3e60c8a9fa8c152d45af87eae2", + "bytes": 66680 + }, + "files/FluxerSans/FluxerSans-ExtraLightItalic.woff2": { + "sha256": "1e247c613c03729a13739f1466f2bd274682e9c80d6355e59fee6c70c8bbc737", + "bytes": 71012 + }, + "files/FluxerSans/FluxerSans-LightItalic.woff2": { + "sha256": "eca7b195133e861b32aed60a7c90d2b08c643cf69f9e417624109e697d658be4", + "bytes": 70996 + }, + "files/FluxerSans/FluxerSans-Italic.woff2": { + "sha256": "671c278ffa98ecb71b598a99f5050f2c5c025bd569f7e5b487c41fedd2879c7e", + "bytes": 67128 + }, + "files/FluxerSans/FluxerSans-TextItalic.woff2": { + "sha256": "7f7f1add79652131d08750ef85050f8c7d18f992624e79ccec086091e2efb0aa", + "bytes": 71092 + }, + "files/FluxerSans/FluxerSans-MediumItalic.woff2": { + "sha256": "fef18bbc19d5294e6a15806571c55050e43435273148a999274ae11f1cb78914", + "bytes": 71272 + }, + "files/FluxerSans/FluxerSans-SemiBoldItalic.woff2": { + "sha256": "cc1ef95d1a3fc93b96969ca72128c70761b83868b48c2025f35f44ec0bcd6253", + "bytes": 70772 + }, + "files/FluxerSans/FluxerSans-BoldItalic.woff2": { + "sha256": "7b11828dca0b27e1fe0875412c4031de828854f3c78fff9e9e08501231522be0", + "bytes": 66596 + }, + "files/FluxerMono/FluxerMono-Thin.woff2": { + "sha256": "b5c44ce0ac1f77380583374bfdd3376a4d0d17825f1bd2f91e6e546f5e63e245", + "bytes": 49240 + }, + "files/FluxerMono/FluxerMono-ExtraLight.woff2": { + "sha256": "485a7d153b4aa8740e49c25e6ea45f10f004cd6db539ad5b2f6854e9db2e8cdc", + "bytes": 49656 + }, + "files/FluxerMono/FluxerMono-Light.woff2": { + "sha256": "d9731daf47bb7606163aaa6406d4edbf6c0cc789f4672e58393ba3d96375d6df", + "bytes": 49408 + }, + "files/FluxerMono/FluxerMono-Regular.woff2": { + "sha256": "c2ff03362ca68e04c3e620d7eca16871e54b5fa093778a1af869868685bd11f1", + "bytes": 49148 + }, + "files/FluxerMono/FluxerMono-Text.woff2": { + "sha256": "a401498fb8d0879323231714e354cf661165e5ff60e0d065069b424fc0900f99", + "bytes": 49868 + }, + "files/FluxerMono/FluxerMono-Medium.woff2": { + "sha256": "cfa6d11b26b038078ee5ea7c06ef23f22261fbfb38d67a6eda3b1e305f2b24d8", + "bytes": 50308 + }, + "files/FluxerMono/FluxerMono-SemiBold.woff2": { + "sha256": "48840355fd673148bd8ee67af1e464a7b1df606511e941f5b117e0a1a301ee84", + "bytes": 50536 + }, + "files/FluxerMono/FluxerMono-Bold.woff2": { + "sha256": "1666f304080eb3bf85355a647034f772b7df7185582840fe0d76aa83b828c583", + "bytes": 50372 + }, + "files/FluxerMono/FluxerMono-ThinItalic.woff2": { + "sha256": "fc537b88be12feec00e8ef38ae7c2852731106f6a8fb0a41554f9514ce4c7edf", + "bytes": 52508 + }, + "files/FluxerMono/FluxerMono-ExtraLightItalic.woff2": { + "sha256": "f0401f3090cb6bc77cdfffc8ad1b0dce3d1aa681664c733232c9ed27e280d68d", + "bytes": 53576 + }, + "files/FluxerMono/FluxerMono-LightItalic.woff2": { + "sha256": "d0ed7c154715f9dec7771884cbc9a1265c110bde33c26f319a51b1ae6d902113", + "bytes": 53900 + }, + "files/FluxerMono/FluxerMono-Italic.woff2": { + "sha256": "fbb52eede7c8ded80ae4b7c88956a334810f471d16e1d08a79a27005b7bf3008", + "bytes": 53548 + }, + "files/FluxerMono/FluxerMono-TextItalic.woff2": { + "sha256": "fd68d710284c23cbeb94d46b65e66114ff971dc06615e980315a02546d2fc2fa", + "bytes": 55104 + }, + "files/FluxerMono/FluxerMono-MediumItalic.woff2": { + "sha256": "700b8aebe2da28c55c3acef6a827a56c09cab83bc23a28ff9e7feb70f0632dd1", + "bytes": 54828 + }, + "files/FluxerMono/FluxerMono-SemiBoldItalic.woff2": { + "sha256": "69e58317340b00891f39b131e3747750ab839db30e39d1754ddfc68f61fb7de9", + "bytes": 54772 + }, + "files/FluxerMono/FluxerMono-BoldItalic.woff2": { + "sha256": "5c0d1d9741fd8597a696e38f9ec75a9af54d4c7af01e4845e458e9b54430e2b1", + "bytes": 53944 + }, + "files/FluxerSansArabic/FluxerSansArabic-Thin.woff2": { + "sha256": "ba72f22f3b0b53058544d86f4f75a9b9472178aa35a5fb410a172d7e3c936203", + "bytes": 73468 + }, + "files/FluxerSansArabic/FluxerSansArabic-ExtraLight.woff2": { + "sha256": "4af927e1f652ea7c48fc9c31b24fd5c0176dc6888568875fff2adc7b8c386aca", + "bytes": 76180 + }, + "files/FluxerSansArabic/FluxerSansArabic-Light.woff2": { + "sha256": "31d5c5c61ad0b3c00aef3b4a1d4802f92fe289a21aa7443a0208f8207a647cec", + "bytes": 75412 + }, + "files/FluxerSansArabic/FluxerSansArabic-Regular.woff2": { + "sha256": "16f302044864bf239b29af97ae7ba8e2966a0e15a19babe114292c2086c87b9b", + "bytes": 71940 + }, + "files/FluxerSansArabic/FluxerSansArabic-Text.woff2": { + "sha256": "bd760809387cfaa98880c22c3a3765839526c9e7e9d7c436db54255b43ea6733", + "bytes": 76604 + }, + "files/FluxerSansArabic/FluxerSansArabic-Medium.woff2": { + "sha256": "50caecc5bf6e18c83aa6d93aa875031e16a335a6e9a6e9e20784f9369fab756e", + "bytes": 75628 + }, + "files/FluxerSansArabic/FluxerSansArabic-SemiBold.woff2": { + "sha256": "9b2a5e82fdbf0aa3789b45e1bf9093cf4e1afb4713880a635c5e983929c1e176", + "bytes": 76300 + }, + "files/FluxerSansArabic/FluxerSansArabic-Bold.woff2": { + "sha256": "c43e202c086e4bcf126a0d3c0395b7fa6c598892d7c1dffccfb59ea9a32e782e", + "bytes": 73748 + }, + "files/FluxerSansDevanagari/FluxerSansDevanagari-Thin.woff2": { + "sha256": "49211b8a13a76701195f7f12291ebdc687ad6e14675dbee180ae49ff46cb9dc8", + "bytes": 105116 + }, + "files/FluxerSansDevanagari/FluxerSansDevanagari-ExtraLight.woff2": { + "sha256": "51127dd5d583fae6d069271f041dceb9cc174994a4bac7078f418b3743474aba", + "bytes": 112196 + }, + "files/FluxerSansDevanagari/FluxerSansDevanagari-Light.woff2": { + "sha256": "c0641d9e07e28e5e0a82ab289e50d58f4b3fd72580399e9f6d7f1f0f93a3f6a9", + "bytes": 111736 + }, + "files/FluxerSansDevanagari/FluxerSansDevanagari-Regular.woff2": { + "sha256": "b5938ee989d1ad04039b521942b9f4ba87ec1eecc028787a8caf7c2f29d06a3d", + "bytes": 103968 + }, + "files/FluxerSansDevanagari/FluxerSansDevanagari-Text.woff2": { + "sha256": "02a9c47066bf7807600bdbc5e477e784085a82207bf7eca53724f09fbefa3b98", + "bytes": 109432 + }, + "files/FluxerSansDevanagari/FluxerSansDevanagari-Medium.woff2": { + "sha256": "2916045fac224c5698676107155808acedfae40d97adab8a710489cdbb2303ca", + "bytes": 107012 + }, + "files/FluxerSansDevanagari/FluxerSansDevanagari-SemiBold.woff2": { + "sha256": "2e9fe2975332c8720bc3c21d8806fedaf1f5090d8f856afbb358b1a8e9ed991a", + "bytes": 107364 + }, + "files/FluxerSansDevanagari/FluxerSansDevanagari-Bold.woff2": { + "sha256": "813a72e18efc4b99838477a0f742ec672a8967e25f15fdc809c23b6231939a29", + "bytes": 100776 + }, + "files/FluxerSansHebrew/FluxerSansHebrew-Thin.woff2": { + "sha256": "b58a6e2e3e7106940748115d2893a1e4077a1abb7c1df5c1e093f0ddad00777e", + "bytes": 34332 + }, + "files/FluxerSansHebrew/FluxerSansHebrew-ExtraLight.woff2": { + "sha256": "517ef474c83faedbf62902ea558a3f6bab8e3d85d768adecab741ebb84838613", + "bytes": 35512 + }, + "files/FluxerSansHebrew/FluxerSansHebrew-Light.woff2": { + "sha256": "b4cb4f073ccb430ba1849af43d38534424d6bfd309d1dad6e07d0edd7d5205de", + "bytes": 35020 + }, + "files/FluxerSansHebrew/FluxerSansHebrew-Regular.woff2": { + "sha256": "401197d8aa04c4c7a6bb81c78fd0b8fa541ab8afaf9f739e60fbf45a405c2797", + "bytes": 33156 + }, + "files/FluxerSansHebrew/FluxerSansHebrew-Text.woff2": { + "sha256": "6c5449377d679f272c801c562949d5b57e8fcf5a10b9ac0c7599133cad0d4da5", + "bytes": 34632 + }, + "files/FluxerSansHebrew/FluxerSansHebrew-Medium.woff2": { + "sha256": "a99ac2629be23f6ec0a3d76fb476168a28bf4a33ac5972f25f41cd32acb112af", + "bytes": 34672 + }, + "files/FluxerSansHebrew/FluxerSansHebrew-SemiBold.woff2": { + "sha256": "00bbd4c5154921a46cd57a9cf3619a8d3fdba96f274a743940cabca09d3afde8", + "bytes": 34948 + }, + "files/FluxerSansHebrew/FluxerSansHebrew-Bold.woff2": { + "sha256": "797d7225b7dca784afc1b004861fbb3f100e2f9e9fe7a3049139bfc08b583a97", + "bytes": 33720 + }, + "files/FluxerSansThai/FluxerSansThai-Thin.woff2": { + "sha256": "c8a81f38be110a4549dcf4e5a86d41218b74d9ac14d1e3a1f4fb7fffea74fe73", + "bytes": 40880 + }, + "files/FluxerSansThai/FluxerSansThai-ExtraLight.woff2": { + "sha256": "02925f4517b62b921bdef68d6333401762136ae8f8a2b9508a65005aee18ef13", + "bytes": 42116 + }, + "files/FluxerSansThai/FluxerSansThai-Light.woff2": { + "sha256": "0dc0445adfcd3543262272a271a451140c615a44d1861d1cc03720aa7426b42d", + "bytes": 41648 + }, + "files/FluxerSansThai/FluxerSansThai-Regular.woff2": { + "sha256": "eaf0fb4aec7befa0fc3e4e2fd6ebc2d9176a3e554a12134f93c65c0400808dce", + "bytes": 39884 + }, + "files/FluxerSansThai/FluxerSansThai-Text.woff2": { + "sha256": "f1503df61b65cb06d10f32dc6ca0d98bcd240abd8f6aa8dea35180a2c468c2d8", + "bytes": 41040 + }, + "files/FluxerSansThai/FluxerSansThai-Medium.woff2": { + "sha256": "635f70e49c4026a5679ba03c5c5c5f7ae299c6448229eaa77d004b548178ec96", + "bytes": 40992 + }, + "files/FluxerSansThai/FluxerSansThai-SemiBold.woff2": { + "sha256": "73a2d9cd51b15e14e2dc37aaaae00f99dc7c005dd37dad864bcb5b7646cbd421", + "bytes": 41408 + }, + "files/FluxerSansThai/FluxerSansThai-Bold.woff2": { + "sha256": "918ad35a0b9bcca5913a92a857d57d39a17eba7d367194df78423e763358f0fe", + "bytes": 40180 + }, + "files/FluxerSansThaiLooped/FluxerSansThaiLooped-Thin.woff2": { + "sha256": "ec66372863f483e535451f165cb67bd5543784acfd8e6788cfcea0e33ab8bf70", + "bytes": 43200 + }, + "files/FluxerSansThaiLooped/FluxerSansThaiLooped-ExtraLight.woff2": { + "sha256": "a6e5ae34cd36ef4e8b00cca4114b6193650cc9ccbd7bdeae0e865afe3fd64d20", + "bytes": 44800 + }, + "files/FluxerSansThaiLooped/FluxerSansThaiLooped-Light.woff2": { + "sha256": "1ba14e6fbf7bf79f8256878f9b6dd82fb5fe3cf42608f8cfab6e007ffd5c2089", + "bytes": 44248 + }, + "files/FluxerSansThaiLooped/FluxerSansThaiLooped-Regular.woff2": { + "sha256": "295bffdb42f9c873f9c0ea9d67459834d0b0b5ea23b597cec51fe673b6331069", + "bytes": 42352 + }, + "files/FluxerSansThaiLooped/FluxerSansThaiLooped-Text.woff2": { + "sha256": "ae7a18885f8a88aab9f8003b2223f8cd90d3df29d30f0b47523384dcd24f1620", + "bytes": 43920 + }, + "files/FluxerSansThaiLooped/FluxerSansThaiLooped-Medium.woff2": { + "sha256": "381761cd9fac2cc13e7cbe32ea972458dc76ad105841b116211ceaaf883b6e1f", + "bytes": 44068 + }, + "files/FluxerSansThaiLooped/FluxerSansThaiLooped-SemiBold.woff2": { + "sha256": "07d89d95768750bbb7a1b1d08d29d7cd319850df12911b2f512d47f874d780f1", + "bytes": 44480 + }, + "files/FluxerSansThaiLooped/FluxerSansThaiLooped-Bold.woff2": { + "sha256": "628381cb954391495a2ecf44c7f8a543d753f1c14592d73d28fd37178c750748", + "bytes": 43108 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.000.woff2": { + "sha256": "c77c37341bdb511697fa4f034c28f5b2ea32d06562886d540f7e48116499db1d", + "bytes": 100256 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.001.woff2": { + "sha256": "33cf79b543458d4d95ed6212fb67726f8fe5b6a33576bc8185057cab8fd1db70", + "bytes": 36504 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.002.woff2": { + "sha256": "43d29aa9501fc0e0d06d2fe7ef6c927aeaddf01899c5c52d701cb891064e9091", + "bytes": 21072 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.003.woff2": { + "sha256": "a297599554fcd9f0f9232a7f9854dd82acc8a2b65e9e81e9fa036b6430827227", + "bytes": 37924 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.004.woff2": { + "sha256": "1ceb23d7824ebe495c866abbfd00e69968a94ceef5f80b53d7cec7b5d662799f", + "bytes": 98280 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.005.woff2": { + "sha256": "f615744300f55e3884591bf052dacda064a4022928318eb93f379aa8a398b136", + "bytes": 51624 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.006.woff2": { + "sha256": "19d6718ab9cf399f9e1108c5cf7a69011e89282f23edbe316d131cc89d45febb", + "bytes": 37476 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.007.woff2": { + "sha256": "4e99f22731ba62a8f9fa25f80a03fb61421017694e3ea61b474d8a53e9841e57", + "bytes": 51296 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.008.woff2": { + "sha256": "d4d2e9f3a5d5b57fa27d47ee5333ff7b68b5ac1a8a3cdf51e0642223423a63b8", + "bytes": 47432 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.009.woff2": { + "sha256": "73c56fe44e4f464b2071b4644374009c29a40e680008f211d8ded8b7bc4ee4f4", + "bytes": 41704 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.010.woff2": { + "sha256": "b42c9576f4a4e8b0395663c40f453cd9fddeb3f7157b01eec1279f2622c97928", + "bytes": 49272 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.011.woff2": { + "sha256": "4735e29d4482e571a6d95acf7dc281f6b235920b205511d98045e700c247b7b5", + "bytes": 53624 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.012.woff2": { + "sha256": "abcecc1135485f8bc248cf483e96323c02a6560d1ac40d094910a668ca386b17", + "bytes": 49160 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.013.woff2": { + "sha256": "4bbf05fae52acff5a63092d0f84b34094857b69105d19b972522cfffe541dad3", + "bytes": 49304 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.014.woff2": { + "sha256": "cc497fa099472abdf01431673555800aa525e900bca05ba85aec4f0909a9b8a7", + "bytes": 48212 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.015.woff2": { + "sha256": "36a331c1b1640a8d497558d21da30ec39a6291593b046393ed418eb1a76e4aaf", + "bytes": 54892 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.016.woff2": { + "sha256": "457af32fdf91d49d915df47bed9494292dee35529313a22bd806ca450f5255f6", + "bytes": 58536 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.017.woff2": { + "sha256": "1e339f9e221a51fae54ea8d5c9aa9ed22b877e8743b82c7119db72f4f9479866", + "bytes": 47800 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.018.woff2": { + "sha256": "2157f398da04304e727083beff0930ea8ce103fa95d1b1ee5afd68b00c1bfba0", + "bytes": 45700 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.019.woff2": { + "sha256": "e6c5dd527def1664299e91c7e1106ae0a7acdfba9f2835f0bb4bda25e906ebde", + "bytes": 59996 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.020.woff2": { + "sha256": "188beb1a860a749d6b6d7474b0987bff947c323f1f1b2c605efa31bf2b3f4bed", + "bytes": 48928 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.021.woff2": { + "sha256": "6bc088101eaf2e18d9cab91c8a7295f687e4bea3da65ee2e51a666c5a0d349dc", + "bytes": 62260 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.022.woff2": { + "sha256": "d903661f5fdf424bfac3d00400d16ed88b6a3d28dbe3beb43b344aeb2f93caa0", + "bytes": 60924 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.023.woff2": { + "sha256": "5d88ac0d01d89a0f01ea9e50824a58de945e4d4719ee4226ca60fbe19cf084e4", + "bytes": 56352 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.024.woff2": { + "sha256": "f7737b28d1e95a0f1f7ec03cbb6d5a83a501a2ad25f80c7aad0147e1c1714c9e", + "bytes": 49164 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.025.woff2": { + "sha256": "0cd9cb040546d6f5c06aa275ded9816e76b725312cc6730f8c40f86b7ee276ac", + "bytes": 53344 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.026.woff2": { + "sha256": "b419f0486590c7aa03f6c203f65953ff8f7246e4799e76440d2faf0508eec65a", + "bytes": 54232 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.027.woff2": { + "sha256": "5c8440010e046ddbce79ab69d37247269758ee17a23adc6b34b0aeec75cce910", + "bytes": 64112 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.028.woff2": { + "sha256": "a7bccb36426ef135c7eaae895c3c7beda411950e98f6265ff456a147bc56e7a5", + "bytes": 65344 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.029.woff2": { + "sha256": "fa38e34395c4a4dff30c25cf38f86b62307782bcb9657711c70ad213d431c3e6", + "bytes": 53272 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.030.woff2": { + "sha256": "12d2262764c759292b2e3f173cf6a6f863e2899f344f82c966b6316483ad66d1", + "bytes": 42432 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.031.woff2": { + "sha256": "7b39143a430b28612903f5b70d24c0b573162279a28f620a85ee792d8f5b24cd", + "bytes": 59844 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.032.woff2": { + "sha256": "323c5ad47d338e2935f5f6cba15930ac29460167652b693bb4b4364a94848686", + "bytes": 60648 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.033.woff2": { + "sha256": "5ba36e8baf29df081da4c1f42965f29fe61496c7f564d281df2023663dfdde20", + "bytes": 54384 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.034.woff2": { + "sha256": "9582689891456e3d0e56b65473e99ac34c835ef034b8fd9a7d4cfb20ddebd240", + "bytes": 57612 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.035.woff2": { + "sha256": "d40eca1d6fc1b52c3aa26bd15e690470e4af1dc06b8f41c618c901febef10d37", + "bytes": 54968 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.036.woff2": { + "sha256": "552c3dc29434bc1afcffd2b62f2546bce7d6f8ed9c011d1004e714fc375a7e78", + "bytes": 54668 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.037.woff2": { + "sha256": "732ffab1b4bf3e523f2c8003ec19567a091b5fdeb7891d621030555e876ebd81", + "bytes": 62708 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.038.woff2": { + "sha256": "729fad831a1c7688ef71bb52677af84d3132b594c05199623c8bc70122002d23", + "bytes": 55416 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.039.woff2": { + "sha256": "6f78485806b399cd42215b0e6f79960dcc3cffaa0389ff1168dfc0db2e4f44d2", + "bytes": 65648 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.040.woff2": { + "sha256": "a095bb10b9798eefa0ba4fd814984404bf843ab18ef8a44d3099278460b3e50d", + "bytes": 66160 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.041.woff2": { + "sha256": "2e933dfc0c244558e121f2af87cb03de2a63f3c606ecfb1b2b31f2a1e8ca965d", + "bytes": 63472 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.042.woff2": { + "sha256": "b95ea14d658a164cba7ade1da92e02ef333cd46b552a98f1f4a583f7095aff8e", + "bytes": 106732 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.043.woff2": { + "sha256": "7ce072a5094db879f74457cc52b2acebb99e9bc51a5b15fab009fc046bca6368", + "bytes": 53164 + }, + "files/FluxerSansJP/FluxerSansJP-Thin.044.woff2": { + "sha256": "fd1e3388bc20bf81066d462068d37ebfc329de952133560370ddc6eec3149745", + "bytes": 9536 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.000.woff2": { + "sha256": "94711ad7f40b71bc07a9cdff78aecc5ad8cc45890d0ca00d40eeec07dfa261b2", + "bytes": 110376 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.001.woff2": { + "sha256": "c96112e4dc6ff8a7db07c8b4d37512b31f82cf3303f753e723a573e1123e9145", + "bytes": 40160 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.002.woff2": { + "sha256": "7aecba055d2f140efd7f739a5192b554bb412d16ead0273ab12f362e8adde6bf", + "bytes": 22864 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.003.woff2": { + "sha256": "5728714d3f652633692839cb25311247a1cc56b78fe878b23440e350634499f7", + "bytes": 39312 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.004.woff2": { + "sha256": "27d12654ef807e6d29af797a8d41ea6064a1cbcf28174bea66fdb4a55c52113c", + "bytes": 126268 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.005.woff2": { + "sha256": "08ef98e00e4034a54b77000b54c30fad31d7cfd87530a081bdb3cb6fea2d7862", + "bytes": 54524 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.006.woff2": { + "sha256": "c6e31ebcab9cb3e0b2f03c5d0d172378f213a47cae23c964104ad1bd399eab9d", + "bytes": 38380 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.007.woff2": { + "sha256": "385db1652644a7c5493a3f33cae25806f8f76862ccaa46d281d7ac9578f88155", + "bytes": 52732 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.008.woff2": { + "sha256": "5ecfe3f33923eefd0bd2d9b81add523db88f7366af1cdc708750369c9547e302", + "bytes": 48688 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.009.woff2": { + "sha256": "e5567f60b1ed5995bfc5c7c223c1fab52dc4a7fe1728755d3ee489f44ae26425", + "bytes": 42808 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.010.woff2": { + "sha256": "a8bd6e24241b3c726dfcc1f1395061dfcf46bfd218610fd82a34f24eaa04f409", + "bytes": 50568 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.011.woff2": { + "sha256": "c77b0106af52c768eab3ffcdd9dc4a386ac58a91cebef88cfc5231dab62c240d", + "bytes": 54972 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.012.woff2": { + "sha256": "399415018f038b58797f3e6028cf69160fc908f611fa16443bddd8ac301708a9", + "bytes": 50376 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.013.woff2": { + "sha256": "f0d7dba507eda5476b0e0a09043e2763b07faceafe746a496a59fddb750a9870", + "bytes": 51496 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.014.woff2": { + "sha256": "7b55f0f6d02528f02ac3668c0fd18475869977060a0bb46f73f575ce4c48c545", + "bytes": 49568 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.015.woff2": { + "sha256": "e966db2212c29a28209849c9339ad4a9996f823768fb07e53ec3ce56c05ab6c2", + "bytes": 56888 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.016.woff2": { + "sha256": "32daea97243be75ea8e7d4cdfaa3b5cb3fad6a4644d2c0446cca957487cad0cc", + "bytes": 60900 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.017.woff2": { + "sha256": "022fef3022ded884b4184d98c70de8eedb5316b30cc97385e81155f53934bdb1", + "bytes": 48828 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.018.woff2": { + "sha256": "10dc64e7697dd23b3b8d47139a696856100716c79bf195cb17e166179bf6b9ac", + "bytes": 47704 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.019.woff2": { + "sha256": "7b4e279c6ec4d4aa8bafb1efca109a4387979d7b4f326f2d978c80d0a6e93684", + "bytes": 61924 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.020.woff2": { + "sha256": "353d1da16ec8bec4d53d48aa69939de0eb0dc4cdd360348075b88a73c2be15f4", + "bytes": 50848 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.021.woff2": { + "sha256": "3caa6ea6f4e567015110eb0863cbd465d15f194bc5a5b91df69eaf864f6bb095", + "bytes": 64200 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.022.woff2": { + "sha256": "3d4dfe56057db4d06b186a2ff57a552f67c9550bf5aac8f381ef44e626bce6e9", + "bytes": 62800 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.023.woff2": { + "sha256": "379fda7b95c46bd1fa24dd9f2d28e817e670a12b716eb4aa51f0f04a8c745ad6", + "bytes": 58004 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.024.woff2": { + "sha256": "627ca4386af8fd87758a61bc46ddea18ba736baf05ee4da5160b9cab01dfcf6d", + "bytes": 51456 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.025.woff2": { + "sha256": "74fde8edfc97591383df5bc222a8ee7a5ba0f7115c60fe9e02f8c6218bb13175", + "bytes": 54744 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.026.woff2": { + "sha256": "2378c92cb365030682d11e9ec98b72f17c419323d752f9a1f47cf4ed4234bd37", + "bytes": 56776 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.027.woff2": { + "sha256": "9dfd19e4e266277745d98cfe15e0059a1fe17c23c20897a65bc157c3e7837609", + "bytes": 66768 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.028.woff2": { + "sha256": "e4024aeb79f196bcbdb57389ca6c66f3ab1883801c215479bd29277eff0448cd", + "bytes": 68352 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.029.woff2": { + "sha256": "a640f6e8eeca68ef10d08405f66e4e0306514857ee3508b43ff96850cccb9762", + "bytes": 55844 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.030.woff2": { + "sha256": "a2a36d9f25caae1fe0b2ceddac6bebe207a5b5b4879d6d6dadd29181a7be67ee", + "bytes": 43716 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.031.woff2": { + "sha256": "087b9c02c2b1228165374b87552399b3a0c77683a653f21ad8803a3a1bedf8e2", + "bytes": 62204 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.032.woff2": { + "sha256": "b9d09c336cefd7da4076a92619f6ae6da44b1cadb9d131ac3897bbd71601c2d2", + "bytes": 62656 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.033.woff2": { + "sha256": "b9f84fc7088c0ee69c941e3f7f13498b49f27faeb7d536445fc1ae3e8288965f", + "bytes": 56300 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.034.woff2": { + "sha256": "b33571a66fddab4105b11f56b19544799d7e36e5e53dfef66c426d16bcb3ab57", + "bytes": 59068 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.035.woff2": { + "sha256": "4a5de64499fa159adc81051d07d702d2c192d153f12c50dee9f38ea3952b6459", + "bytes": 58188 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.036.woff2": { + "sha256": "60f2b8628a309aaa6a0e025994924ef71ad00e98c6d97af11ce593eac0047db5", + "bytes": 57280 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.037.woff2": { + "sha256": "9f593fc0e3162fc0876da5ff937efb62702566c57b756d7e1ae74d7917975169", + "bytes": 64824 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.038.woff2": { + "sha256": "d5ee5c8c6c56bb91a09d6a235852cdef36f9f240bb1018205ee980c283601605", + "bytes": 57752 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.039.woff2": { + "sha256": "3300bd752beb83b9d0d613a236c98312082244c0751a07d6fd390a60d612c2e9", + "bytes": 68600 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.040.woff2": { + "sha256": "cd731f2e120b6f8b943744e913b7294c88fdf813a46a20b38232265bdd150d2c", + "bytes": 70008 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.041.woff2": { + "sha256": "3c333a6da8fd47e719eb79a095acc28a0af5da0aa44d03d16a09f5631e6e48f9", + "bytes": 67164 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.042.woff2": { + "sha256": "d43b04f864a5fc0b0197e592de39dbad52296556a66ed60839aab20f5790fd1c", + "bytes": 116904 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.043.woff2": { + "sha256": "5d014fefc8156b9afec28ee24192118d42aebe849b244148fdd972b1bcf707cc", + "bytes": 53748 + }, + "files/FluxerSansJP/FluxerSansJP-ExtraLight.044.woff2": { + "sha256": "4448c1a7486c43431de7b769da2039c2f9d266bfb051752d8e9cddea91dcdecc", + "bytes": 9696 + }, + "files/FluxerSansJP/FluxerSansJP-Light.000.woff2": { + "sha256": "b3e48f882e56b6d49d83009189e61ddf8ae6b231d18e5909b012953b7316ce97", + "bytes": 111336 + }, + "files/FluxerSansJP/FluxerSansJP-Light.001.woff2": { + "sha256": "f654bb67f540a522ceb8aade06de048ae04435d481c56d5caee94bba3d21be6a", + "bytes": 40132 + }, + "files/FluxerSansJP/FluxerSansJP-Light.002.woff2": { + "sha256": "0a48216a1d1f49ad0ef6ca7d8ad20db0e2bb42056d1e281c39d515236bc65653", + "bytes": 23244 + }, + "files/FluxerSansJP/FluxerSansJP-Light.003.woff2": { + "sha256": "798ecbd3e9ce650d3f8952f132f4fcc5ba3b5243113464846c9d3d2eeb090869", + "bytes": 39600 + }, + "files/FluxerSansJP/FluxerSansJP-Light.004.woff2": { + "sha256": "7899b6da0013bb12eb47a1a6d5521338bf3103abd2cd513a3ae91ccca695ea8e", + "bytes": 131212 + }, + "files/FluxerSansJP/FluxerSansJP-Light.005.woff2": { + "sha256": "26bc8ca71b97e0073a3bf950db043c785833c3142b4cfbb117f21bb765f5b498", + "bytes": 55200 + }, + "files/FluxerSansJP/FluxerSansJP-Light.006.woff2": { + "sha256": "95166fd13761ddb9cdf071ea3f0be9f369de452ba2bb6679d506c6642d3093bf", + "bytes": 38084 + }, + "files/FluxerSansJP/FluxerSansJP-Light.007.woff2": { + "sha256": "6e9652bb47760ad9e3b2ac18332d13f2de2ac57c305e0ddc559b2eb6a2996606", + "bytes": 52164 + }, + "files/FluxerSansJP/FluxerSansJP-Light.008.woff2": { + "sha256": "c853ba701f9d408e195e6dbfc2a59ff0db64a8fa6fc39c5b4f47a9632c34d6b0", + "bytes": 48556 + }, + "files/FluxerSansJP/FluxerSansJP-Light.009.woff2": { + "sha256": "c1747f7e4689e8642cc8361ca7539c5ae8fb51bb6de203134a2c357127d7ef34", + "bytes": 42256 + }, + "files/FluxerSansJP/FluxerSansJP-Light.010.woff2": { + "sha256": "d4aaeb3995f9eb7f360748ae7e2ec70f1843c2bf353c6dee719d06b870ca99b2", + "bytes": 50524 + }, + "files/FluxerSansJP/FluxerSansJP-Light.011.woff2": { + "sha256": "9bdbefdc9782f5f4d35a4449fd6b2166959438a477f05257ef0a1575ed4754de", + "bytes": 54576 + }, + "files/FluxerSansJP/FluxerSansJP-Light.012.woff2": { + "sha256": "cefa01bf13b6a4d7a54ce8284a90f0837c5f62ea5a72196b79c8059e987b05c4", + "bytes": 50376 + }, + "files/FluxerSansJP/FluxerSansJP-Light.013.woff2": { + "sha256": "d359fdd1b392459c1b619daac7bbd28d8a95173cd81be7fa80b170ff79c6bdb4", + "bytes": 50904 + }, + "files/FluxerSansJP/FluxerSansJP-Light.014.woff2": { + "sha256": "9bf281c00d1dcc310e035b3e9d0251deaceb434a66a12f44c4a7c3eebd5e392c", + "bytes": 49464 + }, + "files/FluxerSansJP/FluxerSansJP-Light.015.woff2": { + "sha256": "b935d953487a4614acd4a579cbfff9e0df3b909542c0a4a27e7fe0c0147a1205", + "bytes": 56352 + }, + "files/FluxerSansJP/FluxerSansJP-Light.016.woff2": { + "sha256": "106fbbded5670308adc790728a87001d86f2fee2a83087c942297536e843503d", + "bytes": 60272 + }, + "files/FluxerSansJP/FluxerSansJP-Light.017.woff2": { + "sha256": "37d42acd84e7bf9db0a8f68dd194a24ff53c2d20f5690111817420f5c6d92c87", + "bytes": 48492 + }, + "files/FluxerSansJP/FluxerSansJP-Light.018.woff2": { + "sha256": "6ebf2662dd1c7b335ca6c5280633f60e9c3d4ef55c5bc77105c6fe839904c863", + "bytes": 47208 + }, + "files/FluxerSansJP/FluxerSansJP-Light.019.woff2": { + "sha256": "dd7f692ac71432ff63093881ce107eb6df0e8d64d00eb38affc697304e733e8f", + "bytes": 61692 + }, + "files/FluxerSansJP/FluxerSansJP-Light.020.woff2": { + "sha256": "4be89717e97f62ed1d9ffc5748ea055c9ad4716a0a2a3207b93f9070a2073358", + "bytes": 50760 + }, + "files/FluxerSansJP/FluxerSansJP-Light.021.woff2": { + "sha256": "e777c55817654fbc4909f7fb070fdb0853f4ebc40678843ef9ac9e2ea51e3868", + "bytes": 64128 + }, + "files/FluxerSansJP/FluxerSansJP-Light.022.woff2": { + "sha256": "525e5929b2d4bc2ec9b5a96dc97a5dc532fb304fa8a3c22048c5c61a120b125c", + "bytes": 62800 + }, + "files/FluxerSansJP/FluxerSansJP-Light.023.woff2": { + "sha256": "cea1fe5f37c01ca68e9dddd1f6b890710c7f27513d4e1e9d3b33a7c643ae22a4", + "bytes": 57348 + }, + "files/FluxerSansJP/FluxerSansJP-Light.024.woff2": { + "sha256": "126286dcdb5e8b74a38326e048f38d844800307df9525c54d2b000608d3c5116", + "bytes": 51812 + }, + "files/FluxerSansJP/FluxerSansJP-Light.025.woff2": { + "sha256": "655404dd98ae24834ee93cc748e025e3723b1b112483ffc847140b4f9bcfd111", + "bytes": 54472 + }, + "files/FluxerSansJP/FluxerSansJP-Light.026.woff2": { + "sha256": "7943ebe63ecb991d0cc26c005f5e63bacbd720148cf961d920d3a3bbe2eb39bf", + "bytes": 55892 + }, + "files/FluxerSansJP/FluxerSansJP-Light.027.woff2": { + "sha256": "b6cff0be5accf0cc6f4c33f9c1f7dd70e0d267f4e9150f5776d6d2c391e04624", + "bytes": 65524 + }, + "files/FluxerSansJP/FluxerSansJP-Light.028.woff2": { + "sha256": "45508c3b63ec1e66421673a2bc808cef4cb281ac47deae37d79cf932ea979a06", + "bytes": 66856 + }, + "files/FluxerSansJP/FluxerSansJP-Light.029.woff2": { + "sha256": "550d88617cdd614338625cbbec1534ea582bb6e9be41570576802cfd17e18b25", + "bytes": 55384 + }, + "files/FluxerSansJP/FluxerSansJP-Light.030.woff2": { + "sha256": "c8e647ac3f0bdf844cad92e6d4066cc916d70481b8d0a338056fc96642b2cf5d", + "bytes": 43640 + }, + "files/FluxerSansJP/FluxerSansJP-Light.031.woff2": { + "sha256": "8a4c24fe4a0b989324e3265758cb718010925bda9615d51c1d7b19c0e9420f38", + "bytes": 61764 + }, + "files/FluxerSansJP/FluxerSansJP-Light.032.woff2": { + "sha256": "d87254c16e10a9a43f5a6a5f4c8300e31f1f0d97a7825e22103f8bca09e940ca", + "bytes": 62320 + }, + "files/FluxerSansJP/FluxerSansJP-Light.033.woff2": { + "sha256": "69a1364b2cf994c83a0598926b3833d0fee0e3c7044c5665c1ed783b24ae1e5b", + "bytes": 56256 + }, + "files/FluxerSansJP/FluxerSansJP-Light.034.woff2": { + "sha256": "046701fc17fe594f1dd5693cdeee92487ff0a8a10f706ad60a13f895250788c3", + "bytes": 58736 + }, + "files/FluxerSansJP/FluxerSansJP-Light.035.woff2": { + "sha256": "154afce79024492ee446ec330363ba4d6d4aae448a29c674d4a62b77b5045c2a", + "bytes": 57548 + }, + "files/FluxerSansJP/FluxerSansJP-Light.036.woff2": { + "sha256": "c4e328234cb56b7baa7545dd317ec4e30b55182d888169fbb793d3800b8ab0f4", + "bytes": 56980 + }, + "files/FluxerSansJP/FluxerSansJP-Light.037.woff2": { + "sha256": "0d741b94f08312a3c83f67c2d89447c4b91e43fbc3380c71e800640b8a976d6e", + "bytes": 64900 + }, + "files/FluxerSansJP/FluxerSansJP-Light.038.woff2": { + "sha256": "af1a6dc66fc1f562dacd5f65c4852a6dddbd84434c624bae477ada4cec87d42a", + "bytes": 57036 + }, + "files/FluxerSansJP/FluxerSansJP-Light.039.woff2": { + "sha256": "cbd2b9b921b298ded8c3b233a1b44f256f685b461bd702ba248e098437d96dff", + "bytes": 68120 + }, + "files/FluxerSansJP/FluxerSansJP-Light.040.woff2": { + "sha256": "35a9e4fb3ab133c603d0af2f1aeca729644952327351265a20267f8fd9bc998a", + "bytes": 69004 + }, + "files/FluxerSansJP/FluxerSansJP-Light.041.woff2": { + "sha256": "e21d5e923db357ce0047b319deaa7b3dba97b5ca21d054bb6d04c8511103c338", + "bytes": 66884 + }, + "files/FluxerSansJP/FluxerSansJP-Light.042.woff2": { + "sha256": "96ae130f4972a5e656501734c8d3998100cd301a4902f64d6a5e7830bc71ed87", + "bytes": 118636 + }, + "files/FluxerSansJP/FluxerSansJP-Light.043.woff2": { + "sha256": "e8b436fbb0aad6dceb86989dc378dd073b4c024edb6af6f17753b5897aa6c8fd", + "bytes": 53848 + }, + "files/FluxerSansJP/FluxerSansJP-Light.044.woff2": { + "sha256": "7b299b4c8f34179863001eb78e285ceffa9d094913aa038f543ef3a3fed446aa", + "bytes": 9760 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.000.woff2": { + "sha256": "1a5b6b7131aaeb37f5bc7b52607c43211eaa3965cb4c1b20787d3b4de34bf4a2", + "bytes": 103040 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.001.woff2": { + "sha256": "7d6591e3ef10749d8a0b543c0cc6a550816be32d2f3d86abc4ec6db3aafd6721", + "bytes": 36712 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.002.woff2": { + "sha256": "7e38a3477260fbec7c2600c3591773a1282618f5e01607d265bb96ed0384c993", + "bytes": 21532 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.003.woff2": { + "sha256": "e7dbb1028edd9851c6114a3f5ccb1eaebaa50abd6b384356fc808e13abfe57a8", + "bytes": 38680 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.004.woff2": { + "sha256": "6d49943eec5723cd8167951b7d668f858e091c4fd658e41a0451d27698692d22", + "bytes": 115888 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.005.woff2": { + "sha256": "00116651ff9a51dcf2a3ebe0dce4f31f8e4aa2ea299944a1f49ec83a046e7387", + "bytes": 53976 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.006.woff2": { + "sha256": "9a2e268493ddf5aea769b684b178f7f81deb42dc33aabe8cc175c1e98a2e39d6", + "bytes": 38064 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.007.woff2": { + "sha256": "e235e77ea39aea11e41cbd26f34b03e54e97b146fd7d1a30fe1179bacc6d2613", + "bytes": 52104 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.008.woff2": { + "sha256": "5402f1722f673d152502b58af46de548ef46be39985dbe2012068a270b4a9f71", + "bytes": 48488 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.009.woff2": { + "sha256": "a125dc6285b48d04ab9b239fdd134efff4cc70a571231fa4e6b458c3a4357f86", + "bytes": 42544 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.010.woff2": { + "sha256": "0b78b3b3c57a3329ec6b37af0d2523be9690098d3f256510d88e4c0c6a652034", + "bytes": 50600 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.011.woff2": { + "sha256": "93cdbee7815b842163c82d8a413d1250f0d1c81f85cb7455df67ecbab2e0a692", + "bytes": 54576 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.012.woff2": { + "sha256": "8041e768800d4b42f8b46fd03cc4db01ea497370f26a2895ec997687b1a36e99", + "bytes": 50492 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.013.woff2": { + "sha256": "64565d178b86984c54581776094874ef25593e37aa713d24c487441343d16340", + "bytes": 50916 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.014.woff2": { + "sha256": "7849d168497333caffcd16379841626fa8f61747f27cae356540046f13f7e454", + "bytes": 49236 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.015.woff2": { + "sha256": "73ed31dbd21e1a67c9b20e6970466989a4a944d982a32d00f620207932fa3dcf", + "bytes": 56320 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.016.woff2": { + "sha256": "dcd13103e4c540f9e553c2f3ef7c63fd016790e490b5366cfc3dca499ab5ce7b", + "bytes": 60164 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.017.woff2": { + "sha256": "c62657eba3e39ce1071255b94f31bcb846b1acc20456f5d64216fea77383ec37", + "bytes": 48468 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.018.woff2": { + "sha256": "c13a12b987ae34ceebfe393913d3929022ba00734a83d7b4fd8ac8bf3c705307", + "bytes": 46860 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.019.woff2": { + "sha256": "e8833c761be7fd5e718c98b3f616a8298cb7125e73a4636b111b12bfe214c062", + "bytes": 61616 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.020.woff2": { + "sha256": "a4b1cfc373252466984ad20ff931f3143fb0a14464617f0d1906e45f98ac1159", + "bytes": 50580 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.021.woff2": { + "sha256": "e4c259c19ee85c199de64e122145378258665744334ed9c2dd121a8c3765d99e", + "bytes": 64368 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.022.woff2": { + "sha256": "8f62dfabfe998bcbf10a7fa1738f576e1111d40d07a18bbc80e1c0298770b80e", + "bytes": 62688 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.023.woff2": { + "sha256": "732b842291498151005cbc2808e2029ef64536b7b87a257b6bfb711e367c9ec4", + "bytes": 57272 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.024.woff2": { + "sha256": "5bb2145a96619f9d19d8e743d3c015d91e1fb2e2677f46bb3ca7b6f46078c8d2", + "bytes": 51832 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.025.woff2": { + "sha256": "5e78b49b27aade9749f3f18aba5f61d516653d31b4afc9060eceed5cb5fe2855", + "bytes": 54252 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.026.woff2": { + "sha256": "5ee7bcfc1fba11be1d32f3d21006303a827bd2a48f8d3ea1574f50129e521572", + "bytes": 55980 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.027.woff2": { + "sha256": "df5aa0a40b657ae74c2f18828c120ed72921984451a2a284a3b0c81336d44ea3", + "bytes": 64952 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.028.woff2": { + "sha256": "3f21a8cb79f11b58545ec46b242514045f3541bb3511d154bb3029dbcaccc906", + "bytes": 66144 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.029.woff2": { + "sha256": "999fc541761323d751b9f1d779a26b1dd10dd84f019217790055d8e95fa55f50", + "bytes": 54480 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.030.woff2": { + "sha256": "cc9f804870a793f3d5146b20dd34e670f584076f98328b0d4ce51f3a24aa682c", + "bytes": 44200 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.031.woff2": { + "sha256": "71258dad8fa7fe581f105c314c1e1be7c73ba3e5c8e712ba49b597ea4ea36576", + "bytes": 62064 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.032.woff2": { + "sha256": "57188dba0a1b1efa5f811d236232448b6030f6748387b2efa8b7f56e136e3e74", + "bytes": 61796 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.033.woff2": { + "sha256": "b0d46b97c0f048e21cc7b007fdc07103bd8d48320bd0ba6c59078418570e1ea7", + "bytes": 55820 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.034.woff2": { + "sha256": "672ef4546260580934536109da305e1c5b0026d272f589e38790285792aa1a93", + "bytes": 58720 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.035.woff2": { + "sha256": "e278376221d2e4b32b379dc383a88fdfbb4bc262b0d3d93c1387dea4191b1be1", + "bytes": 55784 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.036.woff2": { + "sha256": "887928eae83cacfea8c372b8654194a2160c059f477bd4cf9e25a7aec7d6becf", + "bytes": 55644 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.037.woff2": { + "sha256": "e56c99575bef6039732394f0646bccaff948b74fcb8caa4a85a45b5e2623efc7", + "bytes": 64660 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.038.woff2": { + "sha256": "729d2ef55e8a1f2951c378d7dee3e88c93ca1444cb0d08bc5ed04e5e2d2579e7", + "bytes": 56744 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.039.woff2": { + "sha256": "bbcb137e8f6a8f04a2eaa9694814de617069a8cd13556922e2c8833fb93fdc86", + "bytes": 67860 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.040.woff2": { + "sha256": "29527ef9afee2c00a2cc57f68198dbbd36313517f9a549aaf0ba8364748b8f18", + "bytes": 68308 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.041.woff2": { + "sha256": "2a15fe976c28834406c74256d5e0f568788372f3eba351b8a3b87dc35ca16d0c", + "bytes": 66080 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.042.woff2": { + "sha256": "32201842755c847e75460d168354526c2448ad4c832f8a0e3c985fdf6dcfa26c", + "bytes": 112548 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.043.woff2": { + "sha256": "2f22390274f5d5e75530b05778b0c10dc6fe8363be51730808b225fc7c3e60a7", + "bytes": 54036 + }, + "files/FluxerSansJP/FluxerSansJP-Regular.044.woff2": { + "sha256": "e05ba01b11bd992ff0b2f2ff4496f897cb93ca09146f7627ee1cf101b0b111a8", + "bytes": 9684 + }, + "files/FluxerSansJP/FluxerSansJP-Text.000.woff2": { + "sha256": "a2b3dd3f17657f4282ea4f15b46fdd178648cc6478dddc3b3c26c41f9538c6c1", + "bytes": 114176 + }, + "files/FluxerSansJP/FluxerSansJP-Text.001.woff2": { + "sha256": "4101847d137c5655065a56e455fee5c1977cb124571a36e6874bb81d59a3e42f", + "bytes": 41184 + }, + "files/FluxerSansJP/FluxerSansJP-Text.002.woff2": { + "sha256": "a421fe8aab1ab642d10323d394d96d4f0b1d27ecaacaca53983471732a1502c2", + "bytes": 23416 + }, + "files/FluxerSansJP/FluxerSansJP-Text.003.woff2": { + "sha256": "d0025ab2a379a9b3590ca7430d952ab2c34cb6b61531f30c0e2c01b4d57dcbb4", + "bytes": 39808 + }, + "files/FluxerSansJP/FluxerSansJP-Text.004.woff2": { + "sha256": "ad9be4420e6b2a725d1310bbdbe7883e05cec9408ab534e36f14aa4e04a256e8", + "bytes": 134388 + }, + "files/FluxerSansJP/FluxerSansJP-Text.005.woff2": { + "sha256": "8a0c916dbe31316699d691ab671ad540197729e2e4a4da4ed1f5012974456177", + "bytes": 55892 + }, + "files/FluxerSansJP/FluxerSansJP-Text.006.woff2": { + "sha256": "a94bf142b8fd984455c1c67e33c857eb8731040bd74955227d65d7f520174bd6", + "bytes": 38876 + }, + "files/FluxerSansJP/FluxerSansJP-Text.007.woff2": { + "sha256": "efc0edec32e8b8cf6dcdfdb897454cb7536805b5bb6aa792a2a6d0e93308a487", + "bytes": 53028 + }, + "files/FluxerSansJP/FluxerSansJP-Text.008.woff2": { + "sha256": "52fc829aa468722aa6bb1e351a099fef041129ab18de029a2b4110ce48ff2f43", + "bytes": 49336 + }, + "files/FluxerSansJP/FluxerSansJP-Text.009.woff2": { + "sha256": "dddf27b93c0bee35570cb2235989cfd89b0f0921c3b17b3d3e0fe12b43c38897", + "bytes": 43052 + }, + "files/FluxerSansJP/FluxerSansJP-Text.010.woff2": { + "sha256": "0b77e22f173b6ca6afc132c8a4308f59a3c74aed71658bec2b030b0fca12659c", + "bytes": 51384 + }, + "files/FluxerSansJP/FluxerSansJP-Text.011.woff2": { + "sha256": "215b752c4b07e5bbbb8b3d8c96d4e00cd5ee0b8f5f130cc8970bff78bfb310ae", + "bytes": 55752 + }, + "files/FluxerSansJP/FluxerSansJP-Text.012.woff2": { + "sha256": "6afd26e33d50664e24f6051b95d6dbb435dfa022e0a1ed1f67633a95ec2663d1", + "bytes": 51264 + }, + "files/FluxerSansJP/FluxerSansJP-Text.013.woff2": { + "sha256": "f4b42c3422b888a4c535b6f731e4d327a28d1152dc17d06d26855e0ecf0866d0", + "bytes": 51940 + }, + "files/FluxerSansJP/FluxerSansJP-Text.014.woff2": { + "sha256": "754c2214cb79cbe0833e49992bedbb4b3c9f19a83a96e490e8d1430e4ce67cf4", + "bytes": 50344 + }, + "files/FluxerSansJP/FluxerSansJP-Text.015.woff2": { + "sha256": "e8dda2055c8c4aa47b449092a66e5ed01f9af2674257d6d8c5a23d19c9edfd66", + "bytes": 57540 + }, + "files/FluxerSansJP/FluxerSansJP-Text.016.woff2": { + "sha256": "a2109eab457739f1393550642f3f6a91cf1facbfed6db39504fa54d637792287", + "bytes": 61156 + }, + "files/FluxerSansJP/FluxerSansJP-Text.017.woff2": { + "sha256": "73bd7110cf911df9282e47774b714a20920eac34ba4685fd9d0dd03d1b45dad9", + "bytes": 49276 + }, + "files/FluxerSansJP/FluxerSansJP-Text.018.woff2": { + "sha256": "6a3fdb8ad7e9c02326526d4f64a4cf6306e227a981ef760eafa140d3cfe9a450", + "bytes": 48376 + }, + "files/FluxerSansJP/FluxerSansJP-Text.019.woff2": { + "sha256": "f22c7a8e71c350ea8a1fdfe1bc34f4906d4e5fadb02a567ae361790156ad8c79", + "bytes": 63328 + }, + "files/FluxerSansJP/FluxerSansJP-Text.020.woff2": { + "sha256": "35c43f3a1822b4a915866b07d82a0cb2d36113f1fc3d703ca12d3fbedda26f99", + "bytes": 51892 + }, + "files/FluxerSansJP/FluxerSansJP-Text.021.woff2": { + "sha256": "a47149e95ab52987c90ce603a89ec8a4a9ff8a77ac7a4e03a0832154eefbc865", + "bytes": 65428 + }, + "files/FluxerSansJP/FluxerSansJP-Text.022.woff2": { + "sha256": "2310c412acb46e20a473669740188a2690c64a6a673b90d2282d50ade22037d8", + "bytes": 64156 + }, + "files/FluxerSansJP/FluxerSansJP-Text.023.woff2": { + "sha256": "4e76ae7c85b196d37aeb1d5d4e2af9e15bb87a683a2fb443b4364081431b5def", + "bytes": 58316 + }, + "files/FluxerSansJP/FluxerSansJP-Text.024.woff2": { + "sha256": "d78c93e853a8291189b26ac47f06fb8e783c4ac97836ec568ed514812d6cbb4b", + "bytes": 52648 + }, + "files/FluxerSansJP/FluxerSansJP-Text.025.woff2": { + "sha256": "31d835458f634a214e4593ccb164cdea87a0e0553ca878949b9200514068e80f", + "bytes": 55320 + }, + "files/FluxerSansJP/FluxerSansJP-Text.026.woff2": { + "sha256": "67b0cbe0fa4006f1c2b3d465eaab25b8d33359c1091a93b87a24a8cd6379ad07", + "bytes": 57848 + }, + "files/FluxerSansJP/FluxerSansJP-Text.027.woff2": { + "sha256": "9ba6cde76610dabe01c6f4cb75c7fb25972f827ec768e48cd9cd0a37268589c6", + "bytes": 67476 + }, + "files/FluxerSansJP/FluxerSansJP-Text.028.woff2": { + "sha256": "1f1d1e1614f5d11fce40034d6fb6a3442c21dbff3dcc792679e0e5f76f036dcf", + "bytes": 68228 + }, + "files/FluxerSansJP/FluxerSansJP-Text.029.woff2": { + "sha256": "6c19a9fd83c10f212786a2e4523c9fde0d50abadcdbb96b25dd2feec1f97437d", + "bytes": 56500 + }, + "files/FluxerSansJP/FluxerSansJP-Text.030.woff2": { + "sha256": "3cb2078e11f39fece31ff0aca11006770cfe613e9f5b848e50cf930800f8dca9", + "bytes": 45336 + }, + "files/FluxerSansJP/FluxerSansJP-Text.031.woff2": { + "sha256": "635c8b96c526fd10fd2c2a0b498feaf43f5822e1251efb3e03205bd39db73de8", + "bytes": 63204 + }, + "files/FluxerSansJP/FluxerSansJP-Text.032.woff2": { + "sha256": "d10c35d2c1593ae2eebda2dfafe9097a38374249570ccb46ad6f6eebba35005f", + "bytes": 63400 + }, + "files/FluxerSansJP/FluxerSansJP-Text.033.woff2": { + "sha256": "e137a030fd2547a901cecf3f6e812e1455ed0c24c2fab5843d038b83d4e4ca33", + "bytes": 56868 + }, + "files/FluxerSansJP/FluxerSansJP-Text.034.woff2": { + "sha256": "6b9c701ac916a60f9e4410de763a630575eeabba7429739439edc55dca7a9cad", + "bytes": 60048 + }, + "files/FluxerSansJP/FluxerSansJP-Text.035.woff2": { + "sha256": "6d45bec0c27a4a34bfb613466f76b4e185c04ed19ff08b3436e608eb6f4651d4", + "bytes": 58224 + }, + "files/FluxerSansJP/FluxerSansJP-Text.036.woff2": { + "sha256": "4721b04a5a0deeb19634df6292b99caffd041616aba06bc0dc25bab502f82811", + "bytes": 58704 + }, + "files/FluxerSansJP/FluxerSansJP-Text.037.woff2": { + "sha256": "f8554f335c2e020716e6a71ab8ebf09e38ac4d10ede7ba7dd0f492c007e65b86", + "bytes": 67312 + }, + "files/FluxerSansJP/FluxerSansJP-Text.038.woff2": { + "sha256": "612854fe2f18024761589168dbd27c28d6c7adbdeeb92adf6108fa4b258764d1", + "bytes": 58068 + }, + "files/FluxerSansJP/FluxerSansJP-Text.039.woff2": { + "sha256": "43cea43bf8298bd77fc23b91b10264e49e08431eda4f620b96295e2ebc9c3880", + "bytes": 70112 + }, + "files/FluxerSansJP/FluxerSansJP-Text.040.woff2": { + "sha256": "c7abe3f644cbdc9f951bca9a0fb9843ef2aec098fe9189d87dacd310d1ecfe29", + "bytes": 70896 + }, + "files/FluxerSansJP/FluxerSansJP-Text.041.woff2": { + "sha256": "6b077216a2abe5e291019b935d9ae91d54680e0b9d47cc6bc29c0e66730f2022", + "bytes": 69320 + }, + "files/FluxerSansJP/FluxerSansJP-Text.042.woff2": { + "sha256": "72559328075ff34fd6ac6e33f8b8a7f5e810b7e458ce30e762dc273432de9df6", + "bytes": 121616 + }, + "files/FluxerSansJP/FluxerSansJP-Text.043.woff2": { + "sha256": "3e11deb03039916d63686e30ea94f90f4566df8a9bb237571af0bb178b4a37a8", + "bytes": 55056 + }, + "files/FluxerSansJP/FluxerSansJP-Text.044.woff2": { + "sha256": "38655cb73c1fe1883b08e604ca45acc6940ad7f76af47b8a36b476a2f97c2613", + "bytes": 9880 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.000.woff2": { + "sha256": "a303b455c6c2fa4afd4749bb3db1b142cf1b7aab7531dbacd664809cb7723edd", + "bytes": 114560 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.001.woff2": { + "sha256": "9704241a7271c2fb03f6de5e3bef1403c50801eb73563cc1e21c10af17e031c9", + "bytes": 41192 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.002.woff2": { + "sha256": "2221135820c692e5ed949d42a82b7e04ef565ab6d7e795a4a3bca6c49cdb033f", + "bytes": 23416 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.003.woff2": { + "sha256": "4ef20781623768e444e9f6c528b92386e2fcdf35f4ffcaa2d79c96f42de2b7b7", + "bytes": 39792 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.004.woff2": { + "sha256": "491eb5a42691cb9ac93de3c5fb65d4f874ed23a08bafca7e36e144373a6be845", + "bytes": 134196 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.005.woff2": { + "sha256": "3340d3866729299d00dd79a03bb10354096861e9ede6111879c1e9196a14a513", + "bytes": 55944 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.006.woff2": { + "sha256": "9a5dd8dc7cc0ec7fa9b039fcbc77d5297e1e8ec353ab376434af6c8206f01e3c", + "bytes": 38876 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.007.woff2": { + "sha256": "1d67dff8893ab8e52ebb36fdb19084888cb80a24efd522d02d701f7788a717b3", + "bytes": 53224 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.008.woff2": { + "sha256": "8ce8d18b3319a5446bbf7efce44fe91d20f9694e3364223e25a4e5ad931ba721", + "bytes": 49624 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.009.woff2": { + "sha256": "16bb97e53249dd3ecd4577acffb3514b80d8b3531c865fbacb9850c7bdba38d5", + "bytes": 43248 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.010.woff2": { + "sha256": "cf113b8f715e4ed14dc61df7a2236214731b7e843268f7dc23bc872045a0a148", + "bytes": 51772 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.011.woff2": { + "sha256": "0bb37b7835bb7154f5f307d3f9f13c69d084b16e1c775ec83cafd087df8d18ce", + "bytes": 56288 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.012.woff2": { + "sha256": "3de9c495676cf84985fe5aae3d0c2640a54c7762744205a1c25a92399f4af338", + "bytes": 51532 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.013.woff2": { + "sha256": "e1647f6f7951012795361d8b86f1c07296a36d5666c380c18701ccc44a42a0f7", + "bytes": 52328 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.014.woff2": { + "sha256": "c6c43a992e9afdbad89bb85f13009ebe285bfa915d81f7ecec73c75ae3e6ff7b", + "bytes": 50424 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.015.woff2": { + "sha256": "0d2b2a4007f079906f37ec587a9e72b24c794ab30f665254b00bb8cf8839bf55", + "bytes": 58084 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.016.woff2": { + "sha256": "607fde6d7d40ae2897d08b74ce6d01bd2d196d5a7ef7e91032e0d9661eb588b4", + "bytes": 61376 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.017.woff2": { + "sha256": "5ddd78661f2517a8cbcb4c5a88ec1b3c933c4ebd2bdf19880a4f45cf8f0240b9", + "bytes": 49468 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.018.woff2": { + "sha256": "a5573e98902b14646385491af915da7ac2a8d1084f4a4f638c3956e0f04d3f41", + "bytes": 48268 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.019.woff2": { + "sha256": "29dd17210223a7c897a32d37ff136ecebac4c322c1cd709e4ecb83c014753ceb", + "bytes": 63416 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.020.woff2": { + "sha256": "dfa092d15bcaf2f674777438d0f311d4e3933fe419c79da5aa5dea93930e783e", + "bytes": 52304 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.021.woff2": { + "sha256": "05379561503fc78c55488173e778c2c4687555a4974fe9f43d82855b95e45db8", + "bytes": 65844 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.022.woff2": { + "sha256": "c3e6f251adaa739fa513a59213b4740369eb35b69442996e3abbf181b3c4d5ec", + "bytes": 64524 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.023.woff2": { + "sha256": "8ab34ceff1bad1b035e2735e939345256b68d55a54700990e9c3e88e9616091f", + "bytes": 58620 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.024.woff2": { + "sha256": "477fe5b06e1e1efa7a202800d298d3daa94acc6ce50f568be7b045fb3e36d26b", + "bytes": 52948 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.025.woff2": { + "sha256": "8b06cd7c1cc1399cff175718146f6ca72969741d889e5a62b66d25b2b043a50e", + "bytes": 55456 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.026.woff2": { + "sha256": "d0c3c2981c7117bd6fad635ab21fd2b99703b5ba2ead4ff097d086fb9cfa5256", + "bytes": 58572 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.027.woff2": { + "sha256": "089f958674355e7fb3205194d0d40e502ffa15534bd7398d0d674d9750fc980c", + "bytes": 68100 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.028.woff2": { + "sha256": "9b9bcd31c7b741b9e442850124f7b13eb9826dfcd1fe2d648701964f020f6e97", + "bytes": 68504 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.029.woff2": { + "sha256": "b7326c0dfe9d82e12c62a50d64e2f80f35b17c6c7fe9c8e6adb9c534979123ef", + "bytes": 56988 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.030.woff2": { + "sha256": "006fc2a79b1e35f4e8fda2360b2d559ed781ed1780af5216b5699415c9fe7ae6", + "bytes": 45668 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.031.woff2": { + "sha256": "df71347ac9e0e16f12af565397daa9a0495414d97adc0761381f16ae7920dae3", + "bytes": 64216 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.032.woff2": { + "sha256": "88ac28a06d7a58e265265882f37f9c3c908800665183920e738d8e3ee76ac7cd", + "bytes": 63644 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.033.woff2": { + "sha256": "a80c1a018546b0ffb20509f7af5de09a884c6c0822a9a972aaef9fedcfc189ef", + "bytes": 57184 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.034.woff2": { + "sha256": "27caa02d7aa3d1afdde3b2745f6ad8bded59e1bbf4f61cb0f01150dd97ff1938", + "bytes": 60560 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.035.woff2": { + "sha256": "0b942e980f6e697764e0b6708e9409b5af2899111d398e02f27716436acc7672", + "bytes": 58260 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.036.woff2": { + "sha256": "9cdc8ac24c8ebe6e69352aa6dc39734247281693b47dc0d060e559bc92772d58", + "bytes": 58968 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.037.woff2": { + "sha256": "e59ce02281c3475affbf3ff8bc0c22b53aec4224e8945a6726b39fd5853a6957", + "bytes": 68116 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.038.woff2": { + "sha256": "a6b268b53102ef5342235e7dbaaaa3715f804e52ee22a13beda070ac2bdef428", + "bytes": 58208 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.039.woff2": { + "sha256": "d18a5e15f48a9bb4650ba763e70a1435c983f15b752221d8913abf82a4ccc5f5", + "bytes": 70160 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.040.woff2": { + "sha256": "3ec829502a13e8d8d0a7d5c2881f339c2d3d05f4c30a5e025807aad34f256180", + "bytes": 71532 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.041.woff2": { + "sha256": "a0fc80b3468eab083d4f6e791e0ec13aa7e194f87f64e4fbb58dff2f015517fa", + "bytes": 69920 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.042.woff2": { + "sha256": "07751dae56d78d089487aa50a0d5fa7532e22d11f53d608d707207beea65fa33", + "bytes": 121724 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.043.woff2": { + "sha256": "74ad0f01e1a754b8f36632f460073250ae40ba718c48681b8a28dc51ae39b4af", + "bytes": 55284 + }, + "files/FluxerSansJP/FluxerSansJP-Medium.044.woff2": { + "sha256": "e011f13d9a478c90c1f7411319b39c536441f5798456a02a43af28a0c78cb7dc", + "bytes": 9904 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.000.woff2": { + "sha256": "4cdac6e3a192adcc49ffed1cd9abe0b8268f04041578f899ea3f5d2ea8567c07", + "bytes": 113956 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.001.woff2": { + "sha256": "1d9e00bb5200ce57c3bce5c585e0ed754b52de52a9742cf899cbcb1c5a65fb87", + "bytes": 41400 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.002.woff2": { + "sha256": "b1596fa5214011123d7ae0babf3476c4433a47ae09e7c3fe74d1942c16e414c2", + "bytes": 23468 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.003.woff2": { + "sha256": "7a13cca518e9b5036d9c22503c26b7ae21889f5de66f125750635cfed67c2ed7", + "bytes": 39768 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.004.woff2": { + "sha256": "82422eb35adbf92d9abbfe2bb50fbb1e35a5bf5c651478889af55759c645b59f", + "bytes": 132276 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.005.woff2": { + "sha256": "e7eed3322a0e46dc26a8651bc903a7216be257f0e723b1d4c95e7656d1244022", + "bytes": 56212 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.006.woff2": { + "sha256": "a3931da677e881109f524787099e3804c8e829bdba542f35a2b2cd771fe07eea", + "bytes": 39124 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.007.woff2": { + "sha256": "c33a9e12652eab8621d4b5cf7168487f3163fca0372d457ae9e3c6c5fd959a56", + "bytes": 53628 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.008.woff2": { + "sha256": "608b32279c513ba1d38cc29f008f78a2059ec73f397b1404c62ca8d2b358db6d", + "bytes": 49856 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.009.woff2": { + "sha256": "9e7454ec48b99bd8ecbe4ed39681ee1103767a2099bdeb733e54c762af5bbda0", + "bytes": 43508 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.010.woff2": { + "sha256": "c998bccbad9a82f32e006370145815c71745dda188995e35e862bae004c7b050", + "bytes": 52080 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.011.woff2": { + "sha256": "7ba875fc666381605c370da2585faf7de780b80853c82d1f191504a6f4869777", + "bytes": 56588 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.012.woff2": { + "sha256": "c0f53405dffcd3b28fe6e1260a905bfc377f556f1d0d2e18b3a11125add7b952", + "bytes": 51736 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.013.woff2": { + "sha256": "993468d44d3ba04640eb057ae4f8b600fb358e074744eb7b7bb8c15778413566", + "bytes": 52568 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.014.woff2": { + "sha256": "7f2420e8b6041d850e85c09c18ac7f76e92f31fd379e57aba2b48b595773fc4c", + "bytes": 50980 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.015.woff2": { + "sha256": "b23bb4792579b2fc4ef5960fe8e18da34150cca9647e4a677ce340fff77c9ad6", + "bytes": 58848 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.016.woff2": { + "sha256": "1b41eb3a2e1ac0369b2c994ddb2845145ec4c3513425ef672566fedc9188ca6c", + "bytes": 61696 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.017.woff2": { + "sha256": "91d98a82fc92613c49bea4451811573e0dfbbd93473a767633d61a02462a5c18", + "bytes": 49892 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.018.woff2": { + "sha256": "ba38ed0e57d4c41c3d5269c0cc536317a7c3479dc8678a34fa5a1704bf714b0e", + "bytes": 48736 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.019.woff2": { + "sha256": "bd4450e05191e0d05483aec1a45d63c668dd5a6d6d90adfd9185b59135609839", + "bytes": 64248 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.020.woff2": { + "sha256": "9a9afcaebd8dbad08a46f61eb538310c47feeca06186fce36d025f636cd6aafa", + "bytes": 53064 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.021.woff2": { + "sha256": "0460d8cfd59bf84b6eb248c865730cffe400d173cfc20a47f96860d98085507d", + "bytes": 66848 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.022.woff2": { + "sha256": "5fc41bf80fc880f38260cd7387ba6c880e457082aa9c2b41a9f33269234a5615", + "bytes": 65436 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.023.woff2": { + "sha256": "2cef2b657fc018d3f20f706cb81cf48ec5361dc7bc3d21b0e41a5c98278a45f8", + "bytes": 59088 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.024.woff2": { + "sha256": "7238be49406e28fc578ec4c6e85a40700f07adcc5154bec94fe8124e28d79816", + "bytes": 53328 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.025.woff2": { + "sha256": "2693ec7198514236a557c10a3e58d6681d50dc384affba83b4552fff7b7192dd", + "bytes": 55828 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.026.woff2": { + "sha256": "b3012b73cee5141a68235984060586f74a250044d33623d9d19a96031d784176", + "bytes": 59640 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.027.woff2": { + "sha256": "19bb7451465aa2ccc0867ec21616ada88972bae01415ede2ac728297edc1d50d", + "bytes": 69420 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.028.woff2": { + "sha256": "ada411e54389277a6c6b03a08ca3c738de05f6030313905705ab4b810ce38fe0", + "bytes": 69556 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.029.woff2": { + "sha256": "ebe52cbe3b47b25f5458b4eeddb6c225ef2eb885fc0222853b89d1f35c8f5c00", + "bytes": 57316 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.030.woff2": { + "sha256": "1a920d9b6721c559236da3a3ebbaaefea48a3abb9f132968a6e96010541e7c99", + "bytes": 46180 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.031.woff2": { + "sha256": "c900374b84e21e778c5eba63e4905ae6ed3e2c69e6d1b6e3ae60705415a26374", + "bytes": 64740 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.032.woff2": { + "sha256": "2374008dd8af0a0bef0faf6daac3c8c8e111a7577704358a450620dcc8e599c1", + "bytes": 64384 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.033.woff2": { + "sha256": "89e29ff3683904371009c49cc30ef6e011dda8908053ca6d00ad3e3d32a0a28a", + "bytes": 57800 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.034.woff2": { + "sha256": "e7df489d24752cff2f810277302b3a9a32cd5505849c5a85a0b610d5f224530c", + "bytes": 60776 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.035.woff2": { + "sha256": "eebcbaee611d25103ffd685f9369ec0c640a3a00b0f895b182cd891e875f53ea", + "bytes": 58880 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.036.woff2": { + "sha256": "46d2af36c2302d8cc4a551d035ac61ae75495fdcd95c9c3a525188eed9c7f9c2", + "bytes": 59348 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.037.woff2": { + "sha256": "5c50adfba2aa4b7f3bee2fe614108cb04ef6cec6dd5101be9fe5c9c0d61511d6", + "bytes": 69016 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.038.woff2": { + "sha256": "a77feca5a2df26b6e7cecc01f09e24f8683d3e2caf60b425b80fff01ebed3468", + "bytes": 58668 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.039.woff2": { + "sha256": "ca2ab74202285a32de60f2bfbfbcb0a076b944c7f4ef17fb8fe202848991ce8d", + "bytes": 70604 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.040.woff2": { + "sha256": "e5c2fb24704b73e566a2d45809e9ffde6b072899c531187359a1f80bf72fc3f3", + "bytes": 71936 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.041.woff2": { + "sha256": "9ce050f8467f0c65e01ccfa1e9fb80465920220176fc900cb780640573bcacc7", + "bytes": 70740 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.042.woff2": { + "sha256": "418a70ef9d4350fe8d80a4b901951e442a0c88ad2b7bea42cd228d7293cfde0c", + "bytes": 121352 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.043.woff2": { + "sha256": "2073fe63d584bd8c1bfc88ebf6a30ecbad6d5ae6d90c87e416777c1e601eb302", + "bytes": 55728 + }, + "files/FluxerSansJP/FluxerSansJP-SemiBold.044.woff2": { + "sha256": "a345fe5b0c655e16fc66e4386d3e5d543cb2ac8592e4cc5b75728416ae085ae1", + "bytes": 9956 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.000.woff2": { + "sha256": "f6b206a0df56fa3359105a0570bc76c6c1fa988ff8cd69c78a7a5d8e1b9a6c3f", + "bytes": 104484 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.001.woff2": { + "sha256": "ae52f818a76317a96f3f76cc9272ede21966c6ee25f0065b99c1cf6823fc3c48", + "bytes": 38180 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.002.woff2": { + "sha256": "96a9e2a12e5c0f3fa5942f7e1488c5bb4c9246441b82f4299d912db74faf4ceb", + "bytes": 21416 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.003.woff2": { + "sha256": "83213f576a7521fef85968d32be282baa9c85a4642b6149fe707e67fc63b0d46", + "bytes": 38312 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.004.woff2": { + "sha256": "6c712d1ddfb0afb3a3197825d7e20a6c4f6b7ef2b1ec60e34eb624f045224761", + "bytes": 116176 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.005.woff2": { + "sha256": "370a6c5ef405496d3c00ce1e5431ba73e5c58c68cf5dccf887f391b863a015c3", + "bytes": 53420 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.006.woff2": { + "sha256": "9fe7d04e28675f145896bd6ed4a28ab40fb5b631acf38328a0e3b25a06374c74", + "bytes": 39064 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.007.woff2": { + "sha256": "0d5624faed012b80bdcdb2a448a725f9dd8a5722d2410aa279de61273920decb", + "bytes": 53336 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.008.woff2": { + "sha256": "e5a8b121a331c0ff93f20fecff1709384699cb89eeac1919b171ccee3ceb35fc", + "bytes": 49572 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.009.woff2": { + "sha256": "478f94ce072cbf26ef83920bf6f714be0de159fdcbde52423d2dd36fcb4c5364", + "bytes": 43548 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.010.woff2": { + "sha256": "56f3fc071509f729992ddf1a08113bf7a9db8760beefec8a93f372c4b84e99ca", + "bytes": 51880 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.011.woff2": { + "sha256": "645ea2aadf203b47f455624fd98416a5183cac6d92991ce64df4d923b28c472c", + "bytes": 56256 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.012.woff2": { + "sha256": "50bc9fdc04262c3b2f70f257afe216d517e9f5053a5e9ca3b85bd1cadae21e4b", + "bytes": 51460 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.013.woff2": { + "sha256": "ea2aba13732eb97948c152fa336b9a692b1535168adf503a12788f02f6d04c6f", + "bytes": 52200 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.014.woff2": { + "sha256": "fa08a65921d679f03d778104180f7ac68553829bd479eb76ac63f670eb31a202", + "bytes": 50768 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.015.woff2": { + "sha256": "abd0c871f0bb30ac28446cc8c04561a30bd0105b328c3860b3e2272c80b09676", + "bytes": 58320 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.016.woff2": { + "sha256": "1da3d752258e02e6d7f4da25273d8387d44bf8adf1775c667d1b1695a172fd98", + "bytes": 60856 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.017.woff2": { + "sha256": "39a35d905b1f7b4310844d75c32076d6121ed598e42299b191cf5b25d0f0fead", + "bytes": 49724 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.018.woff2": { + "sha256": "fd1f446915b67eeaf83e5e67681b3d6660db218e3cf1aaacad675eac399a0a97", + "bytes": 47792 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.019.woff2": { + "sha256": "6fff33cda89bb1e013763a5543ba7071512e01cd24902f3ae91487e9ad75a5a0", + "bytes": 63476 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.020.woff2": { + "sha256": "6461a6f29dd1e0775949410858c29f9a540cce03b0dc33551bf99fad816505ea", + "bytes": 52316 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.021.woff2": { + "sha256": "9c40d5f3fe6303cf21a6d49fdfd21a0f4c59e7f8d376790419ac1a18edd9ec0a", + "bytes": 66416 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.022.woff2": { + "sha256": "c145f327c4c16c368fe48ccbe69fdcb3281191f5275846cb08deaabc118046de", + "bytes": 64372 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.023.woff2": { + "sha256": "4f705f01a78a1c760cd249c9c8f03d420d45b72e74336c4c4adb53e6861909b4", + "bytes": 58892 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.024.woff2": { + "sha256": "921e37288f8b7fd6a859290b9e9ad8acd83c8762c54690c57e102fbf725681da", + "bytes": 52344 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.025.woff2": { + "sha256": "fb36f2adb6e9091840d2cb4f66ca0aba9711f3e8d452d215e9091acdf8d7a96f", + "bytes": 55308 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.026.woff2": { + "sha256": "b3c81273927f2e10ffb553de78c1b3487e32379b6acdaded11383ec9c81cf85d", + "bytes": 58584 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.027.woff2": { + "sha256": "79a9a050f8266b80ea79359507f2b62dbf8b25949cb43adae64074e47e0233b1", + "bytes": 68460 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.028.woff2": { + "sha256": "49804677dca343b79211b5a1c8b6661dcdcd3c19507cfd5ec490bda74fe29fff", + "bytes": 68792 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.029.woff2": { + "sha256": "51cd19633388f5db77130922cc91ad1c3ef019b92f87226f72176f1d8e2af4ec", + "bytes": 56332 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.030.woff2": { + "sha256": "ba4a4e8236d15a227a8717c078e717c98c7de430271ea3512dd08460d7391b4c", + "bytes": 45692 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.031.woff2": { + "sha256": "c37bdf9063bb273f4704d6cad9ae429cbbd8b382a791537d51db3c2fbaffbc9d", + "bytes": 64108 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.032.woff2": { + "sha256": "481c32f26f57b296d482d304ca32fa0242ac4152134996febc39b988d74e066c", + "bytes": 63556 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.033.woff2": { + "sha256": "cdfc234f78350045176df688ec800c5c44e9f30edc7a2709495c4e3c1459d594", + "bytes": 57360 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.034.woff2": { + "sha256": "6111f9fc059a293a32b79c9e2b22482260b7f6d4be2c5c953958eae22a921f15", + "bytes": 60240 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.035.woff2": { + "sha256": "99d35edf67eecff81cbf34b1f4a60915c14015d5d39690a16a710b1ca438e500", + "bytes": 56664 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.036.woff2": { + "sha256": "aa616050781ec94d0a56f680172ba26f118f45f61bbf3f682b6c6827074c82d3", + "bytes": 57724 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.037.woff2": { + "sha256": "ec279e3d0f63d26c101da2720b16b7291da51b1587ac96d2c59ef853c7a4d241", + "bytes": 68312 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.038.woff2": { + "sha256": "60b31d2bd529628b5b0be9255b313c9261e15e9c0684bbf48ad9613fec0d5092", + "bytes": 58240 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.039.woff2": { + "sha256": "7baceb00e642d57b4128c6de9953e0882a71bdaeab6ab64edbe738ea42eb03fe", + "bytes": 68940 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.040.woff2": { + "sha256": "06b98872160926a8076e92e76e3877d30044ebba8883d45ad13afddad02ba8c5", + "bytes": 69652 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.041.woff2": { + "sha256": "32106c415f36b9fb8be819c5201e16f9e00abf50d812aaae14ae1039f1e9fb93", + "bytes": 68672 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.042.woff2": { + "sha256": "bee7c1380ab216e26ca2cb017c287c3debf476c04fe7826d86a3d53be89a1917", + "bytes": 113628 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.043.woff2": { + "sha256": "7ec5112f089f01997ca195957db6a10081238643e06c75e084d1f63689d883ac", + "bytes": 55952 + }, + "files/FluxerSansJP/FluxerSansJP-Bold.044.woff2": { + "sha256": "05d576d217f6f3908334bad0e7c3851394cc80bdcfc249bef824ee40878383eb", + "bytes": 9972 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.000.woff2": { + "sha256": "0e0cb31558b7177c8cc1cc273a9def9d56d381b901e2cd020f9b8397a9da752f", + "bytes": 51856 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.001.woff2": { + "sha256": "86d2a7c9929094bee328b8bec68ed0a416539917373f44ad6797424b78c22a40", + "bytes": 37024 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.002.woff2": { + "sha256": "5541319c7e092392a0a45a52918a7e025fd2e0cfcbdcdd73c23717a7ba813945", + "bytes": 21708 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.003.woff2": { + "sha256": "2536a3dd5360c29fe703ffcee72b2e7256151b55d6874835a2da268ae6dced9f", + "bytes": 51652 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.004.woff2": { + "sha256": "1b8ab4d94c6fb13eefaef79f727f70c66f9bfe325d2e16acd8a652264e6f6421", + "bytes": 61816 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.005.woff2": { + "sha256": "2b5a0048ef551c72170806dfb4ee5ba48a3dc4c3b942cc31f1117dc150e35aa9", + "bytes": 54380 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.006.woff2": { + "sha256": "635569b29ba8a6a8089f5b7f4d7b8c32cb71178661254843c3aae2192e996800", + "bytes": 60984 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.007.woff2": { + "sha256": "b27af8dbea6916066fdbf752fd96ce04de5f39243e601db4328588abb394f94e", + "bytes": 60256 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.008.woff2": { + "sha256": "6cfd510ee2c11e730da31544bbb5f2eb3b047796bfb5baa3dbec9addaa1c4414", + "bytes": 67240 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.009.woff2": { + "sha256": "cd6dc26e58fb294335d0d8247519245bb5209b7c3b23bf92514f9146defad5c1", + "bytes": 63276 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.010.woff2": { + "sha256": "9c66ef507cc7d551dad46d7fa99e3cd6d12dd8bbc4d42048214b70764a5e696b", + "bytes": 60392 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.011.woff2": { + "sha256": "5002ae206b88057a575c1082be7fdb739e62a8e0fd1773339a76f72059d25c5b", + "bytes": 65844 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.012.woff2": { + "sha256": "8f55eb71160f9d97c3df4db8669cd082dafe947f2a7bd91ff817892216edb383", + "bytes": 64804 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.013.woff2": { + "sha256": "de3d934fa66cdfbdc73233df19aaeb61dac0745a32b6df7fac77e491c8975ac6", + "bytes": 61964 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.014.woff2": { + "sha256": "593d53a80c257db23d47fe88919ef170204317c36e1c3eb8f022e406fc996856", + "bytes": 66576 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.015.woff2": { + "sha256": "766858ba80303b8f6720b80cb4a7fbc9c2e2ab80a8dfb7148e456cc15a4fe7f4", + "bytes": 61212 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.016.woff2": { + "sha256": "b2207eb755c0acf4ee4abf89970346bfd532258262360fa240cb5a50f90f8856", + "bytes": 66876 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.017.woff2": { + "sha256": "1ae14473259ba70d805dae037998c582ba17848442c9ecf81c88f2d2491d2d06", + "bytes": 72636 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.018.woff2": { + "sha256": "4009509190ce750556b90d7e4a776b192e67a3a520ef34cc27f9de5461ce513b", + "bytes": 76692 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.019.woff2": { + "sha256": "71e8fdb948aae5769352bea7791390fe1439cab1ef4a15e575cd8c51991e499d", + "bytes": 48072 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.020.woff2": { + "sha256": "8ab19a60ce03d42086b5adf4de74e1dd707237c281780029e0d07f03472db55d", + "bytes": 58840 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.021.woff2": { + "sha256": "c77627f1c6ebf5f0227314d361b4b4c9b7eb9f8f132eb68c420c873ecb5119de", + "bytes": 57756 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.022.woff2": { + "sha256": "e09e5dcf32480926553eb62848e3e3c9c9a70b514af3f31bd95a2a1c07dd64fb", + "bytes": 51040 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.023.woff2": { + "sha256": "8e8bf62c137268825d1569a7343fc49e327b2f8f615438b74dc66efd85560dcb", + "bytes": 57260 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.024.woff2": { + "sha256": "77e822a8faa1c18a2768a3fac077eff3455b9c3d329324f4ffbc5992481df249", + "bytes": 58320 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.025.woff2": { + "sha256": "fcb932634351eaa044474513693330a81e7abdcb61e6e295f4097f724669fdc2", + "bytes": 61276 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.026.woff2": { + "sha256": "69265efd4f6d813d1bea91dab54063f8591e31212406743fd8a2649d097f2681", + "bytes": 68428 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.027.woff2": { + "sha256": "26e55acd5341e2d71396656c1ee7ac53442f0afe14e40a1447ca3df7e14f5c31", + "bytes": 52120 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.028.woff2": { + "sha256": "42ec85f4f1c3bef6256baa0a6e5d579e11e6527da1e1e7754390e86dc48375ee", + "bytes": 58104 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.029.woff2": { + "sha256": "40bd5822e59619fd64304dfa437088af19b2bb2b44ce0a287d2714062b872c3c", + "bytes": 59492 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.030.woff2": { + "sha256": "d6a58e5a669b725d96fded305a8072466e8bddbb0ac1487e015a3e417ebf1dab", + "bytes": 67560 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.031.woff2": { + "sha256": "02909e57f5b3168e9e6e3ba6a5722d892e9aa4b1b8eaed22ead59378b5057c43", + "bytes": 58884 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.032.woff2": { + "sha256": "6a423ed4c37df451f90c1af2c1c2defccf395936463057e33ec9b25df7987231", + "bytes": 72436 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.033.woff2": { + "sha256": "6a0f00d4d85c7588657e740a6768d764614c14f6d5e293b6197513862d96d374", + "bytes": 58088 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.034.woff2": { + "sha256": "b824ef119cdef7f8daaf4333ce7d8b3c891f8109c4196b4504bfe2e4dc117155", + "bytes": 54788 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.035.woff2": { + "sha256": "d96e58a3a968178d5700940357d53395b911f5f6c1df74aa0eee2dca41fda12c", + "bytes": 65052 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.036.woff2": { + "sha256": "0dac1b4c05e534d0411c321534f126561de1995961782b0121fd036d4549622d", + "bytes": 72580 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.037.woff2": { + "sha256": "886671ea05db11b2762d34f2a6dcbda5a45aadf2b8b5ff55c2d424c3fa89fc3f", + "bytes": 58028 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.038.woff2": { + "sha256": "8744f7af4069dbd7291b0cd0effccda0a620ce1651838dd9127765036bf41fea", + "bytes": 70388 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.039.woff2": { + "sha256": "884df2932041dcb9c5eef4a545d9f6bf2a5d6d98fab1746dbcf5f973ba3d9aaa", + "bytes": 77416 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.040.woff2": { + "sha256": "515f86991823fcb18100f871a9e88aea7b506164ed1c994c416e717d93eedc0e", + "bytes": 70364 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.041.woff2": { + "sha256": "328d2e41bc279a6f8c59f5c39bcc8ee09480bcea8605f35795b0eba17be00395", + "bytes": 61104 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.042.woff2": { + "sha256": "2cfd0a18d62fb18bfb50e6ab64e98437aa94ec6d67420d2368c4bffabb82f9ee", + "bytes": 64780 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.043.woff2": { + "sha256": "6eb93ba6139741950a98c04850b604746970d55cf55d1e9485be621252c5185a", + "bytes": 62996 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.044.woff2": { + "sha256": "25fed5bb81d814ca865ce859f95e859570da0c4cd3a84b56b047edca25a4c972", + "bytes": 60768 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.045.woff2": { + "sha256": "a5bf225cd5ebf7ba264cc525483fe60e9cf25c18733e39e0846cce548f8b7a63", + "bytes": 64192 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.046.woff2": { + "sha256": "73e0de8e0c7d7c7feecf6fa6436d7b1def6332dc81aa1d2c952ef389e040e1ef", + "bytes": 67760 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.047.woff2": { + "sha256": "37382194c951221bf234b52422bd97150d36c9ac2065a3094164f3a2ad927c3c", + "bytes": 79636 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.048.woff2": { + "sha256": "254cedada3d2c80b473084632059f697abf8b93edaa448bef2ffc33f2439aadc", + "bytes": 90048 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.049.woff2": { + "sha256": "9e22591d465ff05e1883227d77dadc4fab368df0950735ca487068f2024bcc04", + "bytes": 59620 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.050.woff2": { + "sha256": "9f1abf2e20a1c25cfce9de1379093029fd2263e5bf5cd27fef2cc8b3b96c27af", + "bytes": 58120 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.051.woff2": { + "sha256": "a8d22885c62fa083c8bc30d12e3e617d2f66e61bd5d76eec26efa2155a3887a5", + "bytes": 61056 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.052.woff2": { + "sha256": "474dbaada07cfa3aa4bb9fe2dd1ce948f2a423d9bc6ae2a7fd66bf18d9ce97f8", + "bytes": 71844 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.053.woff2": { + "sha256": "699995bbd140921f4cdedd5a523ae6068c8728aa9c0cb9678bbaf34ef5179ce9", + "bytes": 71948 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.054.woff2": { + "sha256": "02425d7c147ab066d28229edcf8ba944476639fcc50fbafb2560b7e185207134", + "bytes": 64860 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.055.woff2": { + "sha256": "392e246c41db5582b2ecd7eed5442db7b4a59ddfa7e248703f2108b374eac4c4", + "bytes": 60444 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.056.woff2": { + "sha256": "6d08789d627d96e06500552ef5ddccd87c96964b45bb284b2d52efb5944ef857", + "bytes": 76376 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.057.woff2": { + "sha256": "cadffe463cbbc8b07fc8a3fff1d15f6e05d508cf3b88521a68dca271e070b6bc", + "bytes": 63716 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.058.woff2": { + "sha256": "ddc8bfa535f0cc4b219d0de8cada4bf2bc3c84cb526e598e0161373da2287418", + "bytes": 63852 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.059.woff2": { + "sha256": "6859c87b5a14335354b4aa84b898bda7583dcde69b27d356c9c5d01c2d315475", + "bytes": 61284 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.060.woff2": { + "sha256": "c8a29878f44bf1726dabea26f3a2d5c863c62d887c49c118551356905c9e5a20", + "bytes": 72488 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.061.woff2": { + "sha256": "068c699a10cefef3e1d4d1d13935847b7d5e3375145ec0cf8aec03bfb296e62b", + "bytes": 90480 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.062.woff2": { + "sha256": "5f86d3ab6b9a2b1bc9731a83eea8ff50b620934ea217a1cea27e480349423ec0", + "bytes": 66036 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.063.woff2": { + "sha256": "59502e5ffb58476b3d5e7263e0247cc0a6e6212993d1242405c0727d85b1eb56", + "bytes": 70852 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.064.woff2": { + "sha256": "23e93984262702e33291b59b4005a19a3e7f44c9db30a7b4b17c76db87607b29", + "bytes": 77456 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.065.woff2": { + "sha256": "e20225acf44c17fcde8fc954404ef55c4327eeb5a0abf8ff9cccc93fecfcee27", + "bytes": 74300 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.066.woff2": { + "sha256": "7db77136d95c33d9578fa85024b31ee943efea7593a9f83de0ebfd6a6ab43a64", + "bytes": 79996 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.067.woff2": { + "sha256": "600cc3786acbf50eb12092e140f044610a24ec669064fa0c13d1bcb75585dcd7", + "bytes": 82836 + }, + "files/FluxerSansSC/FluxerSansSC-Thin.068.woff2": { + "sha256": "3106cedaedee49c46f1ad20cf4f0af9c0aee08dc2eb44be6cc102a95469c78b6", + "bytes": 71372 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.000.woff2": { + "sha256": "d834bfa077b2b4a578471d94f2dc69c6f0764403cb5d73b96719b129ea8b3692", + "bytes": 55656 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.001.woff2": { + "sha256": "b782f5fe53454fedaa86ebfb560102483796b05844e9108fb0735c80768f18c0", + "bytes": 37752 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.002.woff2": { + "sha256": "c861936d18187d983281ddcbfe5372b703b7cdfe4c2736f3aec07bf87f4ee8c7", + "bytes": 23468 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.003.woff2": { + "sha256": "f2a83d0d4e3cf6648283186db7528e649006d3dd3cab00d366b5090577278821", + "bytes": 52704 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.004.woff2": { + "sha256": "41399e6b77ca45685134b605ae355db2f10f00011aa1f99ba5d5ebfdcc2631d6", + "bytes": 62728 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.005.woff2": { + "sha256": "bbb7a9f033df503c07643947e4acd12d2787035b9ddc3f01fd2c34ac22fee7dc", + "bytes": 55576 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.006.woff2": { + "sha256": "e8b4e7b96ae9bf89fb2870bc90cfb7217a93ddafa397a5be883dba9ac7d684eb", + "bytes": 61864 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.007.woff2": { + "sha256": "4668a5ed6fa300d97cbad1f7af4239e5f8247e6bca2e10d442035729adcfe588", + "bytes": 61272 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.008.woff2": { + "sha256": "35ea1bee06592f3e64f9ecf4311b5322771491f47ca2f34e4971427e58c52e4e", + "bytes": 68520 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.009.woff2": { + "sha256": "d73bd48f353bbece84fda8d2c33d3c48e8acf1f7159117b9e71070d201b386ac", + "bytes": 64424 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.010.woff2": { + "sha256": "8f964bc8188290c8a9233a9411b718af41d140221e064ab0ea00419fae848547", + "bytes": 60608 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.011.woff2": { + "sha256": "1f0ea071131d02c306785c7d83bb1f6216ae7b293629c6e11fc4b0fd05a0a0f9", + "bytes": 67308 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.012.woff2": { + "sha256": "e42db3275d70a736c79d7f13e1b52d90f031f2f90ba1af6bfd65f921b185d814", + "bytes": 66204 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.013.woff2": { + "sha256": "1c7d35a37fa2de3ef38fedb60cbbfcc830a9cb243e5bfa46e1c317d6a4cf5be4", + "bytes": 63460 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.014.woff2": { + "sha256": "2bb797a0de0354e55d82b04714f43c8202868e6eec35f492d2ee51d961b09882", + "bytes": 67744 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.015.woff2": { + "sha256": "06165d552ed70624804462bc4493284bcf091f65a9e57b114f00bddad69e059b", + "bytes": 62500 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.016.woff2": { + "sha256": "b7775b15cb5faef72c9e3b7f06621670cdd1d01aaf34c1402573536f92a88626", + "bytes": 68616 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.017.woff2": { + "sha256": "e9dd8165058a112c568d66f333e869e711667c65020b268490db5434e9cff10b", + "bytes": 74500 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.018.woff2": { + "sha256": "0f1368b147a76338e7e27ceb06c4e058ebe333746bf66ccde48cb62f0aab79ba", + "bytes": 78688 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.019.woff2": { + "sha256": "f56743f437cb473f0d13f1249683d0f5a86884ba3edf97df0db3f928de2cb7ca", + "bytes": 48700 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.020.woff2": { + "sha256": "1b2712cdb12433d118a836bc18044bc8235ae695cf86a1517be80eb0f6dc52cb", + "bytes": 59336 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.021.woff2": { + "sha256": "a0249a9dbfa4423514d048c7037c306d4b84693df16774660410f8bb4b42a086", + "bytes": 58772 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.022.woff2": { + "sha256": "cd1c4f77e63c2020e723a0126992ae5a6a583264d5ee66144033aa1cff9b2262", + "bytes": 51832 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.023.woff2": { + "sha256": "c017a3277f6b5b5e2a2a492e499b329689edfb7b42a2701913e8c56ae87cd7f1", + "bytes": 57736 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.024.woff2": { + "sha256": "04bc6cb835577897ab9e27846867154d04a1c906fd6f760d8d86fbca3f0654e9", + "bytes": 59176 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.025.woff2": { + "sha256": "ee2308adfb9276e951c8946cb9c98c5d580236aeb85b654a827c7e70242564ba", + "bytes": 61804 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.026.woff2": { + "sha256": "cad2e6a6c720f3efc737838130b8bd1eadbf90d1e53be6ef04bd9e097bdb8bfa", + "bytes": 69388 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.027.woff2": { + "sha256": "c401dfbc97e495e4e09dd8f55f68042d81a3715576a386a6c9529670af88d7ad", + "bytes": 53448 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.028.woff2": { + "sha256": "78b87f18d0156b01dfefe3d34954421fda7268fc0a504bfe4d44ff529a0688c9", + "bytes": 59176 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.029.woff2": { + "sha256": "253e813417e45da7d349cf3f9e068af6e82394d091360a9e7ca8cef74e8d9485", + "bytes": 60608 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.030.woff2": { + "sha256": "5113da2546966a2c2d25e8ca5f469a76d01b1bb9e0bb291ae1d894f26aa8dcb1", + "bytes": 68824 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.031.woff2": { + "sha256": "c40e4e3ca35b835b3015a90789f386ae65353f69153211fb3d900fd7d946920c", + "bytes": 59948 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.032.woff2": { + "sha256": "1652b9f7f5dbf057f5f3b15e10e143b12d6a021e2ffff67bf9dffa6816e26ed1", + "bytes": 73304 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.033.woff2": { + "sha256": "af735b7e1f69bee06ef1c8c31b9a3b97d42e925ad898c0afcd67b83d2cfaa8d0", + "bytes": 58436 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.034.woff2": { + "sha256": "11bbb7535399e37252d5f1f395dee74e6789c436ef1ff9a5682cfabeb864fdb0", + "bytes": 56532 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.035.woff2": { + "sha256": "f4db4fd571cbe437a9f05a95d2be713a4c540621f671039ce7b2daa520bbfc5f", + "bytes": 66372 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.036.woff2": { + "sha256": "9d5e6644ec11c766b4c689b6b51780b5b5bfd542220bbd0014e2fab1cf75e853", + "bytes": 73784 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.037.woff2": { + "sha256": "b321fd9dc1fe586721eb6e5b4a0cdf438fae7a45fd16de6d01b95b8710b26d07", + "bytes": 59652 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.038.woff2": { + "sha256": "6a663aef5f657d80df35f252b08651bcf30409e5c770b5997c3fdb73ab265052", + "bytes": 71560 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.039.woff2": { + "sha256": "2781117d34f30228edece969feeb134fb05d9e845c6fc9c70b05c77e782b5822", + "bytes": 78860 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.040.woff2": { + "sha256": "8f2c30fe3e45cd8700298065ed5c1537e0a93c94726ae3ddcb1ed1ebb1cf6e1a", + "bytes": 71760 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.041.woff2": { + "sha256": "13934279b368eaf43c9a89396eb6d70038b237a14d68799cfc4fbacd31900c80", + "bytes": 61620 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.042.woff2": { + "sha256": "63925afd027c614a94ef331e6247d6ea06f03ce8394058255261d5ec467707f0", + "bytes": 65504 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.043.woff2": { + "sha256": "b39feec2c14b18988f83d355512b3c7dc73a31239dc339c62eeee9f4634ebbf1", + "bytes": 63632 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.044.woff2": { + "sha256": "4131825b80aa1fe172ce31b49476c58ffd3d7b533072fd12401d25bd9d6f8c60", + "bytes": 61708 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.045.woff2": { + "sha256": "81446387f494907f773c46136f4169bc86b8b961aa65bc5edf95ea5a28a9f98a", + "bytes": 65484 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.046.woff2": { + "sha256": "251e5000db616b582202b650bf2afd7558acd8c1b756658e4671aa8954695a75", + "bytes": 69340 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.047.woff2": { + "sha256": "e878b3fdd878a0189b16931bed8dfeac3adc9f6d7675bf1b2dba857f2911e2b6", + "bytes": 80476 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.048.woff2": { + "sha256": "fa6cc6c91bc88f5de1309e97227a5c6577edac6b7f3ddbf8037aa9d0e4ffbe3f", + "bytes": 91764 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.049.woff2": { + "sha256": "2c3727b45a882775d3948d9c345400bc46bcd870e56fce877787c57a2b06eb72", + "bytes": 60752 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.050.woff2": { + "sha256": "40ec2ad68328e7103a0c772852311193a6450c7ac73042cda01365d77912c28b", + "bytes": 59648 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.051.woff2": { + "sha256": "3dce9d022a8f1da3ee174e06b4df9e66795bc94c57b23f079daa3cf4daaef69b", + "bytes": 62608 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.052.woff2": { + "sha256": "04183877e3dfae7f871cfde94b7f1097857d4a21c3bdca7634e0e0b7146b663e", + "bytes": 74224 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.053.woff2": { + "sha256": "98715f0c7f15103f4ff8c577b04bc957c0155f798c3b4ef1f265eaa3218e3f33", + "bytes": 72828 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.054.woff2": { + "sha256": "b1b0e79eaa712ca507f68cff7ca0738f98d25a1bf8ed5e9b2e691fee25a6e184", + "bytes": 66864 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.055.woff2": { + "sha256": "bb447bb2669e2e5a733cb86f97573e26cbe2df110137d3a98d0a37e147ef6d3c", + "bytes": 61732 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.056.woff2": { + "sha256": "a429dbc07bc8fe946a8db391316c532d73f500c3b47daefb1b4c7a9bf5792df2", + "bytes": 78132 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.057.woff2": { + "sha256": "e88e854b84380b02b9af6ffd2c0d637b1deadec1421c7e8249087e4f81e72510", + "bytes": 64356 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.058.woff2": { + "sha256": "45d5a14b01ef965093dfe85c2700fe29342226173155e7ec73092c446e101d76", + "bytes": 65640 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.059.woff2": { + "sha256": "759fd60c56a9c9dfef93a3b50d93e6fff2b88768046ab0cf9d8f6ad49b7ad3c2", + "bytes": 63192 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.060.woff2": { + "sha256": "62a42c3fca6b7bd6118d57021a27746b9cf6c693241560ed6ed89adff20ff90e", + "bytes": 75368 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.061.woff2": { + "sha256": "6057f9023b3bf48c21db9b6446283758cbf7ebbe0662a97a88e78cc5160c8e64", + "bytes": 94492 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.062.woff2": { + "sha256": "44dd0f1ad70336c9e0658cee988bb9eb47a9656382592cb9846d7163c8a2c54e", + "bytes": 67512 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.063.woff2": { + "sha256": "f542523c28439e12d09d7f2e86ca1c084754eea96cb2567f00f1bbc383577a98", + "bytes": 73724 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.064.woff2": { + "sha256": "045202ca72e877869c5041d8e044fcd322c13262c3094d5d8cb56145a85dc976", + "bytes": 79276 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.065.woff2": { + "sha256": "22f1f74603fff8c288dfd39576db215c5c71ffc8c396d6cf5e592ad9b63d73d9", + "bytes": 78484 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.066.woff2": { + "sha256": "f0b2b7d9a28300a23b651fa64ccc4693d09ace9598d79df2129b160a4cdcb8ac", + "bytes": 83000 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.067.woff2": { + "sha256": "3a326684ef4fc31df2555ef99f9cf665a6082e1231c90cf162773dcccdb38099", + "bytes": 86348 + }, + "files/FluxerSansSC/FluxerSansSC-ExtraLight.068.woff2": { + "sha256": "58f921898c9807add58b3fd1d29decbaaef620a1d0ed57c7d3fbed9c304007fd", + "bytes": 72920 + }, + "files/FluxerSansSC/FluxerSansSC-Light.000.woff2": { + "sha256": "49a62aadcd3e78a36abe598b45b1da5f7b400576b03869cd83683bfdd0c8e700", + "bytes": 55776 + }, + "files/FluxerSansSC/FluxerSansSC-Light.001.woff2": { + "sha256": "12ba86da09e163bc9903a8ca37a0ff5ad515340ac499b6943b5c78dc6d9911ea", + "bytes": 37868 + }, + "files/FluxerSansSC/FluxerSansSC-Light.002.woff2": { + "sha256": "7de000a57145a4729391091e571ada90f5a638ec0c1caa164afde7d663589c29", + "bytes": 23668 + }, + "files/FluxerSansSC/FluxerSansSC-Light.003.woff2": { + "sha256": "9f27387bf4867149aef834c9ec7d22561bd5934f22fc46807d8bcc31c28c9d32", + "bytes": 52928 + }, + "files/FluxerSansSC/FluxerSansSC-Light.004.woff2": { + "sha256": "39a8b870aa8e7ed771093f10a8606fbae91e7e40ab4db99eb720b35bd537f9a2", + "bytes": 62656 + }, + "files/FluxerSansSC/FluxerSansSC-Light.005.woff2": { + "sha256": "cb5ed4ef93869e28ac74eaa29201f2245c325c7351776034724af70d108ed5c5", + "bytes": 55832 + }, + "files/FluxerSansSC/FluxerSansSC-Light.006.woff2": { + "sha256": "fe7ed649db997482f37c86baf550c42949ed440f1564ab8d60d6382a10f06a04", + "bytes": 62056 + }, + "files/FluxerSansSC/FluxerSansSC-Light.007.woff2": { + "sha256": "51d47debb461d9b9885329c65f26e41954bb704b91a86a985a520e4833b618b2", + "bytes": 61556 + }, + "files/FluxerSansSC/FluxerSansSC-Light.008.woff2": { + "sha256": "069454c1328b78049bccea19876f700624aaa7dd4ee902f07b297f165124e5cd", + "bytes": 69024 + }, + "files/FluxerSansSC/FluxerSansSC-Light.009.woff2": { + "sha256": "acd8edfa8d2d4c6c4b79776397346400f6564cfb978ca5a17b065e53ea1de80d", + "bytes": 64804 + }, + "files/FluxerSansSC/FluxerSansSC-Light.010.woff2": { + "sha256": "a770575fdf037ea6f1c99c5058dbdb8a3a2ea3268cdba15aa32475330ab659c4", + "bytes": 60524 + }, + "files/FluxerSansSC/FluxerSansSC-Light.011.woff2": { + "sha256": "270b64cc37f33c08111060964104110bb2f0b8361773b7471039e551ec6c7789", + "bytes": 67276 + }, + "files/FluxerSansSC/FluxerSansSC-Light.012.woff2": { + "sha256": "ba21b77c5a059faba161395972f71b1167ac404cb5a74264bc7951c1a5eeece8", + "bytes": 66080 + }, + "files/FluxerSansSC/FluxerSansSC-Light.013.woff2": { + "sha256": "ea0baa5452291567cbb516a1aa75ee1a7f20178725960b29baaaac743a69d859", + "bytes": 63660 + }, + "files/FluxerSansSC/FluxerSansSC-Light.014.woff2": { + "sha256": "05d127828486edf0d0b71367d2be6e682e5d20ca3befd59975f173ab851d5bbe", + "bytes": 67924 + }, + "files/FluxerSansSC/FluxerSansSC-Light.015.woff2": { + "sha256": "8f40f352ebadb99d5b98b3fda8cc8069bd4a3c73496c364ee6a2e996186baf95", + "bytes": 62392 + }, + "files/FluxerSansSC/FluxerSansSC-Light.016.woff2": { + "sha256": "3bcb23150afae95c8917a0e39174e91affcac4721e67e3af9736da1deb174f44", + "bytes": 68300 + }, + "files/FluxerSansSC/FluxerSansSC-Light.017.woff2": { + "sha256": "f3f652b6145f198935eea4c419e8409c73a9fb66c19a35a6208e82b55f58c307", + "bytes": 75192 + }, + "files/FluxerSansSC/FluxerSansSC-Light.018.woff2": { + "sha256": "4611a2b00e90b70a75b35df559ede3fa4e7ea17a3e03287dbfc741def757068d", + "bytes": 79060 + }, + "files/FluxerSansSC/FluxerSansSC-Light.019.woff2": { + "sha256": "a123276a21e1860c5cfd1e1e67a9c06246052882b9467ddc7df8bf48777a710f", + "bytes": 48968 + }, + "files/FluxerSansSC/FluxerSansSC-Light.020.woff2": { + "sha256": "8c7e639083596429cb88409c015b9d35625bfe6ff59799c5a26802cbe17fc2c1", + "bytes": 59152 + }, + "files/FluxerSansSC/FluxerSansSC-Light.021.woff2": { + "sha256": "efb514462834b5a3040ceacbf7a519acf23ad36e3d2e0924f8e003e804cebaff", + "bytes": 58872 + }, + "files/FluxerSansSC/FluxerSansSC-Light.022.woff2": { + "sha256": "fb4a5ed11bcf56575541586e1a971f9db250c2354b287d7bbc663027b481f44a", + "bytes": 51960 + }, + "files/FluxerSansSC/FluxerSansSC-Light.023.woff2": { + "sha256": "07ac25049add5575e425832ba236db088f6b547e1500872e305f527d773bcc7d", + "bytes": 57976 + }, + "files/FluxerSansSC/FluxerSansSC-Light.024.woff2": { + "sha256": "90a5fc73ec1c65cf0c4d05e280a0d32616a782391a26f4d05a379f2005043a99", + "bytes": 59356 + }, + "files/FluxerSansSC/FluxerSansSC-Light.025.woff2": { + "sha256": "df874344441821718edb707026c7aa5d655e8374ded9397635d671f3e32bc5f0", + "bytes": 61916 + }, + "files/FluxerSansSC/FluxerSansSC-Light.026.woff2": { + "sha256": "3320cd7ddd5227665b326d1566c79c551d1f498bfd641b88f503d1cd12a6050c", + "bytes": 69520 + }, + "files/FluxerSansSC/FluxerSansSC-Light.027.woff2": { + "sha256": "2bf3eb3e70b29ba8d72d9295557e9bf51f5cd6799a83705de313cf669466bba5", + "bytes": 53588 + }, + "files/FluxerSansSC/FluxerSansSC-Light.028.woff2": { + "sha256": "e9b658ddeac471981ca74701fb2ac802e6f19111812680c63fc346499b7b8509", + "bytes": 59088 + }, + "files/FluxerSansSC/FluxerSansSC-Light.029.woff2": { + "sha256": "4a10e33e05cc858850ea6bfd0823686ff4e8e468174ff7f5b1cb149a31d56907", + "bytes": 60592 + }, + "files/FluxerSansSC/FluxerSansSC-Light.030.woff2": { + "sha256": "d8c85a9959eaccb9779469c42ed944f4c9e0f779111bf22c7364745fe089e9d3", + "bytes": 69000 + }, + "files/FluxerSansSC/FluxerSansSC-Light.031.woff2": { + "sha256": "6c2377441783ddc5ae849cc0972594a9880e295ffc7a5e4f5e5e66cb06a099df", + "bytes": 60344 + }, + "files/FluxerSansSC/FluxerSansSC-Light.032.woff2": { + "sha256": "35a12dbac001ef3f2efaa3ca906515cee32467c1ff3aa7c81d589cff906d886c", + "bytes": 73560 + }, + "files/FluxerSansSC/FluxerSansSC-Light.033.woff2": { + "sha256": "ac529c9225d79571084e7ed3e37075d529c2ffa0e5431ba06946d0484dfbc91a", + "bytes": 58700 + }, + "files/FluxerSansSC/FluxerSansSC-Light.034.woff2": { + "sha256": "38a921cf7e9dbbd7f7511a7310e7ce907a8c7685731b587ddc67f3faefcf2842", + "bytes": 57052 + }, + "files/FluxerSansSC/FluxerSansSC-Light.035.woff2": { + "sha256": "6e53e1ec2499071e9ebdc29142956ff00df80257852fcc561fea1033175cf87b", + "bytes": 66740 + }, + "files/FluxerSansSC/FluxerSansSC-Light.036.woff2": { + "sha256": "ba18786725c344d0202d115d1fc5ef1c2a7bf52cc3990741ddea48dc7ac39628", + "bytes": 74112 + }, + "files/FluxerSansSC/FluxerSansSC-Light.037.woff2": { + "sha256": "5d20ce37d6b0300e1c465b9d51e80701f1f567be87e740bbe23c43b6871635ef", + "bytes": 60372 + }, + "files/FluxerSansSC/FluxerSansSC-Light.038.woff2": { + "sha256": "7c4b30efa141fc9cdcfc743f334fdb9556cee9e10ca0b9409503964019d45d03", + "bytes": 72184 + }, + "files/FluxerSansSC/FluxerSansSC-Light.039.woff2": { + "sha256": "12f2182f2cf96cf7550aa5c2fa282a55dd61fa128f09c961dc5747b9ca84f0f2", + "bytes": 79632 + }, + "files/FluxerSansSC/FluxerSansSC-Light.040.woff2": { + "sha256": "4022a7281931c5db3e6fa4b9d718b82bfb8cd121d7777fe34755636806c68801", + "bytes": 72388 + }, + "files/FluxerSansSC/FluxerSansSC-Light.041.woff2": { + "sha256": "30de2a4e5723e2fb5cd8771d27123a5927f13b27aa19ff48a5ae06bc7eec3926", + "bytes": 61608 + }, + "files/FluxerSansSC/FluxerSansSC-Light.042.woff2": { + "sha256": "98d5f59941488afc9e08667af8ee45da95cc636b903129319f268f4bb57c1fd9", + "bytes": 65532 + }, + "files/FluxerSansSC/FluxerSansSC-Light.043.woff2": { + "sha256": "c9fb1405551d9fea98922b07b0fe9cbf49695c1249e2fbea35dcecadf7db3e13", + "bytes": 63424 + }, + "files/FluxerSansSC/FluxerSansSC-Light.044.woff2": { + "sha256": "6e8a4b6482265534c69d32faf033a84248894b73421a5488c2cc2dcb2728970a", + "bytes": 61812 + }, + "files/FluxerSansSC/FluxerSansSC-Light.045.woff2": { + "sha256": "4e3617d41edf117374e11a0c9a7864aedff1d7e504772b0d1344ef5a93e4e204", + "bytes": 65312 + }, + "files/FluxerSansSC/FluxerSansSC-Light.046.woff2": { + "sha256": "4d3c8122394551a4ad9c0e2cd228e63144d16a4ae21646231b8c5023993489c8", + "bytes": 69296 + }, + "files/FluxerSansSC/FluxerSansSC-Light.047.woff2": { + "sha256": "4e766c78ea501ddf0a7c683ca41e3ef271dec0021b32022d46da5989d9552001", + "bytes": 79548 + }, + "files/FluxerSansSC/FluxerSansSC-Light.048.woff2": { + "sha256": "1ff41050a5465c645de8e6edf7e535ffae93b87269fb8d1957d363ce17ac68e4", + "bytes": 91464 + }, + "files/FluxerSansSC/FluxerSansSC-Light.049.woff2": { + "sha256": "275a242cf7d3b309566a171e727e4895dd4d2206cc12dc0aecd910adbe84a77f", + "bytes": 61180 + }, + "files/FluxerSansSC/FluxerSansSC-Light.050.woff2": { + "sha256": "cac20f2b12d3061df01c5d3c68b5a9c5afa5ef40feb2fd3747083b3b346e05f4", + "bytes": 59944 + }, + "files/FluxerSansSC/FluxerSansSC-Light.051.woff2": { + "sha256": "0339ff33dba23e63156d5037755e56d8b5a91969b0c852f2191da2a760d3cc6b", + "bytes": 62956 + }, + "files/FluxerSansSC/FluxerSansSC-Light.052.woff2": { + "sha256": "fd139e8f1c0dc2c579c891a4b1c3fde24042a812e92c41995532fbd45b4a1f01", + "bytes": 74864 + }, + "files/FluxerSansSC/FluxerSansSC-Light.053.woff2": { + "sha256": "3c3e68bf79653500fac4ae61ca04c2494201a015d1557d6a80534fc1ebf76460", + "bytes": 72804 + }, + "files/FluxerSansSC/FluxerSansSC-Light.054.woff2": { + "sha256": "3d9721d45282423b307201f809e799a943fc47078d0c37fa37631ab2c2c0f758", + "bytes": 67084 + }, + "files/FluxerSansSC/FluxerSansSC-Light.055.woff2": { + "sha256": "7e2253805f4a1a0474c5e4969da1d152fd84c06b7f47042c81a8383a4e6a67d1", + "bytes": 62412 + }, + "files/FluxerSansSC/FluxerSansSC-Light.056.woff2": { + "sha256": "dfb748dfcd3807faaaa60863803836ce3ed9b3608b28eded8775aebf600efe4e", + "bytes": 78660 + }, + "files/FluxerSansSC/FluxerSansSC-Light.057.woff2": { + "sha256": "7c6d7a695dfaeb2a2fd8fc7ed1d2bd2fa1f4b226f927971ce5f6b18c22de7411", + "bytes": 64528 + }, + "files/FluxerSansSC/FluxerSansSC-Light.058.woff2": { + "sha256": "8636f98e17e71a5891376e7783278dfe523075b64cb865ab88fef1fd4f0a71cc", + "bytes": 65416 + }, + "files/FluxerSansSC/FluxerSansSC-Light.059.woff2": { + "sha256": "9c9460859b94558982c24fbd50a7e34de6ed0799bcd931b321569a7c914249ec", + "bytes": 63256 + }, + "files/FluxerSansSC/FluxerSansSC-Light.060.woff2": { + "sha256": "47a09db57e120eb9535abf4e6e253d250899ea95bf6a95d507254e6408e5034d", + "bytes": 75028 + }, + "files/FluxerSansSC/FluxerSansSC-Light.061.woff2": { + "sha256": "1f6bf2c90b5ed800ace2b1b75f64837085d86af045b77a2ada1d53a7001540a3", + "bytes": 95124 + }, + "files/FluxerSansSC/FluxerSansSC-Light.062.woff2": { + "sha256": "89666187eb08f275fd19844ab824be2ab2482e4bc69a2cbd90c413ba2eb3defc", + "bytes": 67804 + }, + "files/FluxerSansSC/FluxerSansSC-Light.063.woff2": { + "sha256": "5b0b324dce944223dddfc53f8dcddf4040f1d786b150ae4ec74f4c8c7c3e7432", + "bytes": 73816 + }, + "files/FluxerSansSC/FluxerSansSC-Light.064.woff2": { + "sha256": "e3bdba76d343a16df391de94b337cdc3d8f8a3238dc4f835e59004838af031ff", + "bytes": 79840 + }, + "files/FluxerSansSC/FluxerSansSC-Light.065.woff2": { + "sha256": "e359f8228e653a02a2fe9474e8b132127733b2105d4276932962130ee0db1776", + "bytes": 78748 + }, + "files/FluxerSansSC/FluxerSansSC-Light.066.woff2": { + "sha256": "17b612cecaec2d28d3dc226a6efc46a7da4b695baf0918ed178da6df0555f51a", + "bytes": 82720 + }, + "files/FluxerSansSC/FluxerSansSC-Light.067.woff2": { + "sha256": "eabbd4400456bb9fbb2fb621e592fe6c89a21a29b8da5a3bec1adc19dab8e702", + "bytes": 87304 + }, + "files/FluxerSansSC/FluxerSansSC-Light.068.woff2": { + "sha256": "37832b168a930745c3d5dc9915cdeded20bd4d48c50e20a7873aa6f808040e6d", + "bytes": 73156 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.000.woff2": { + "sha256": "a60a57730491ca419d140cd8fa25f49204fb9d6732d5b16ab24be224741ac680", + "bytes": 52696 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.001.woff2": { + "sha256": "89794db63043539c83bc44f8607469c461f59844396b3d74be529c214a5b2123", + "bytes": 38108 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.002.woff2": { + "sha256": "ebcef7a506ce6c11d67645cd8815e975f38bdbc7bf68138731155433daf8161b", + "bytes": 23004 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.003.woff2": { + "sha256": "68ea299469a6bb84111e9da9626eb212410a769c8cc89ca44ef84cf5e735e29b", + "bytes": 53068 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.004.woff2": { + "sha256": "04c5010d34ab5f9359534f70a0163e7bbad76ca98c426d55214995f08b38cae2", + "bytes": 62960 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.005.woff2": { + "sha256": "cd9e46fa25cb71c0c2a37b52e3f81b0356569588413fd5cc793aa695befba7db", + "bytes": 55824 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.006.woff2": { + "sha256": "0368ce6afdb918fc36e1583d22a70e19a85c95381103f984b5369ca2c06ff772", + "bytes": 62100 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.007.woff2": { + "sha256": "1c5e325350ad52150c77946727d70a41ca671dca15df2577356d56a44fccd4a7", + "bytes": 61808 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.008.woff2": { + "sha256": "1fa4c5f41570e17a50b42a19efb157815819c865973dd156e79773a7981ce886", + "bytes": 69320 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.009.woff2": { + "sha256": "a4de637dcaebb6bbd28f6819309941570f182a15eea6d8b10a5749b26d6b4a82", + "bytes": 64904 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.010.woff2": { + "sha256": "bd9ae32a022c6df3036145e450fe02aa5c14e6c19c089679af40db934afb8b8e", + "bytes": 60740 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.011.woff2": { + "sha256": "76684b1f007ec531ed842a9b315821c70f5d3f6fdb89a391b2eb1c52992673f9", + "bytes": 67076 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.012.woff2": { + "sha256": "70ef554c28cadd49b3a16aeb50262144e87209698ce86667049aefc191f4a9ee", + "bytes": 65968 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.013.woff2": { + "sha256": "1ff4f1d1d6448ce46c1668ca8a1f791c1c50c9a656d27109d1c4bedaa0ac765c", + "bytes": 63932 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.014.woff2": { + "sha256": "6c94443754b5e618fd4410bfadcdf4e9abeabe04618537c859bd8970c7053bcc", + "bytes": 68208 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.015.woff2": { + "sha256": "718faa1ab05ed94286bf1f3c30a15c650139f156c8cc062a211490984e357d6c", + "bytes": 62268 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.016.woff2": { + "sha256": "a26b644b72e61ef802e76b7d5866678abe539e5159def4cf726d090330f4fde0", + "bytes": 68516 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.017.woff2": { + "sha256": "210e1546691536e137a84fdad9237080e4e67f7e14ea228f4ff1bb85ed0aa5c9", + "bytes": 74240 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.018.woff2": { + "sha256": "07cc8150178278f6560f62511bd77ef3c859aa24bc8c1953a0c51504d56c1e1e", + "bytes": 79020 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.019.woff2": { + "sha256": "0e4a49ff452949bd70bd9752469c5b1daa734593b25d91ed80df77d09ee3df2a", + "bytes": 49044 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.020.woff2": { + "sha256": "7668bb6dac9ffb1e0667d9f6f6ca6de277ea500f826156e3b4e60e5a29dbe123", + "bytes": 59304 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.021.woff2": { + "sha256": "69163599707cad9c556f215612f8c690955fa90bf97d2de2d7e2ace9c50202f3", + "bytes": 59224 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.022.woff2": { + "sha256": "47ec9b35856bbe9a409adc818aa44a5f52ebb79d7400bf3375f41c7f046ab9a3", + "bytes": 52248 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.023.woff2": { + "sha256": "b98ff64c544336670005aecdc8c387b94386e2dcbb8b22681b9c4d1f3dab47d3", + "bytes": 58388 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.024.woff2": { + "sha256": "3ee3cb8c07978fb51015333cea46abcf644ddcb9d0fbeac1f9f16f2334a7075c", + "bytes": 59628 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.025.woff2": { + "sha256": "6da72904d1024c5fc2bf0adf3232dde7d66679af375a05bfd6e165a43732f85d", + "bytes": 62248 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.026.woff2": { + "sha256": "739de2cc0b891e8b414238200a6b7b5a43a97f31f77006cf436072e1b58d29da", + "bytes": 69692 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.027.woff2": { + "sha256": "3632a5d192d012d2fb1358a9b79258f3fbd38285f546be1393cce4b784c2ea39", + "bytes": 53920 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.028.woff2": { + "sha256": "bf4cf3a5a23f909c60d328f0c5c51b654f718377fbe398aa097c9ecdfa92c4c2", + "bytes": 59284 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.029.woff2": { + "sha256": "c10510c3a25cc3f76615ebf7b1eed70f949e2fccc42bb874a38df0a0ecb0cfc8", + "bytes": 60588 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.030.woff2": { + "sha256": "7d024793d748294d714e9e6cd25ac83e9cacf2fb27fa53019878ab930850ee92", + "bytes": 69096 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.031.woff2": { + "sha256": "42c9324d08245c8a97b1e2658489efcb6cb812c07cee08091420500e44aeb29e", + "bytes": 60756 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.032.woff2": { + "sha256": "66d77797ac4da26c05bfb96ab4fc4314e64b655f39e88f6bda4a1498760da6e3", + "bytes": 74172 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.033.woff2": { + "sha256": "ac23b243ecc3e5b069bc751c9efb35ebcc577e88b5708e1fcdea2884f70c07ef", + "bytes": 58848 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.034.woff2": { + "sha256": "ff6d0f0b62712f06f9dda873aa53ffac7c2575c7dc7c7bb6c53241efca638ac7", + "bytes": 56900 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.035.woff2": { + "sha256": "e89e417ac5c6f2823fcbd3b2db281adb3c8bf78f73573f6eb0703ca6a06a3f52", + "bytes": 67072 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.036.woff2": { + "sha256": "e17db5f19896528d226b521261eeb906f63fdf5360e91a6c6f38102230bc6740", + "bytes": 74408 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.037.woff2": { + "sha256": "916c5ef1b61e94f0e0a82a4548c13d8fb7f3e743412e13d6ea5b5ae733c5fd9f", + "bytes": 60688 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.038.woff2": { + "sha256": "7ce357f549e7d296192f74c127194522ec2162c9857307e8a0b1b1b2ca8b175c", + "bytes": 72492 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.039.woff2": { + "sha256": "e689e61ee17bc038248c93d21ce8d7d712de718f293ae711ab9e34554b5c5b15", + "bytes": 79820 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.040.woff2": { + "sha256": "c23d25a0fbe50e8bed95bc8c8d3fc43882d7add2b7dfea705b5e4025607c481e", + "bytes": 72504 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.041.woff2": { + "sha256": "81a482ba54b1988e90a346b550099f84c9f760ca2cd55d44fc2a25f7ed8e6c18", + "bytes": 61920 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.042.woff2": { + "sha256": "6dc1171d20f333e29e08c288f2948795e8617dfad3ec78c3bb7b57cd10d8a916", + "bytes": 65432 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.043.woff2": { + "sha256": "d9e1dc01c447ced3aab9bf23c586386cd8e04760cb908ba07d258fee3c8c0f09", + "bytes": 63800 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.044.woff2": { + "sha256": "d20bef55f000cd88aee5df949ad943a2be0fdfaa702597a626dfc4369d9d8110", + "bytes": 61748 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.045.woff2": { + "sha256": "5901726c93562c54d343dc942a0075696aa5d93393d3566a56690d5cc2e5cc67", + "bytes": 65256 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.046.woff2": { + "sha256": "4a28342c2b4d5f4c1caa21f4bcdb264f91dc3f6aaad77b019ecf5789698e8cd0", + "bytes": 69292 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.047.woff2": { + "sha256": "74f28f6b149e1a895d303d7643a374039c5886613c594c5143d77bc60cf12294", + "bytes": 78456 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.048.woff2": { + "sha256": "b587c95be5145a50381236456c20159a3a1e2f1eaec33cbbf76e942c57ec5779", + "bytes": 91036 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.049.woff2": { + "sha256": "b1bc43662afcd8ac087052140a01d9b63d649f8d96a47f60cf2129b89c507678", + "bytes": 61496 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.050.woff2": { + "sha256": "7e0e0e86ed7bec754720ffc55c4f7c34da37e885bf80cb08c4db814d771e0408", + "bytes": 60424 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.051.woff2": { + "sha256": "c66a108893e156d8079e2925736dd0ea4b11170930302b0688f5d4e2c2a9a87c", + "bytes": 63460 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.052.woff2": { + "sha256": "16f68f2ac610b07dc04409bca2c318f3bf3c1df5e43da778454790f6d4271580", + "bytes": 75288 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.053.woff2": { + "sha256": "70fb790c82aeb52879446a98331181090a96afa87986e91412b72f3095eb553f", + "bytes": 72840 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.054.woff2": { + "sha256": "575ec70c09901c1b3d3d8513ede8180bc7469f18f17462d6736bc32e3fad8adc", + "bytes": 66368 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.055.woff2": { + "sha256": "28e64643d36fbedf841e83cd14188e02f669539f9e259846fa65a2317c3f2f38", + "bytes": 62868 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.056.woff2": { + "sha256": "a4ae9c67b27feb6d20dd6ccfe38fc0f0b5808545e3ebeab642cb8ba8d8b6bf07", + "bytes": 78980 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.057.woff2": { + "sha256": "8f5a5892c238be3dfac2f4d68035f16002a0402672efeb04ce91c2fd03d586c8", + "bytes": 64592 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.058.woff2": { + "sha256": "a4b81d807362fad4f7ffcfc5d344cdb7474d6decb8369aff09ff97a48beedbd1", + "bytes": 64776 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.059.woff2": { + "sha256": "0ea5f75b533f4c1e33eeae7cbed0c48132a90ebd2cf6b6d898e405fb5c0aff3c", + "bytes": 62404 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.060.woff2": { + "sha256": "00a94db90f1d2b578e05ab3fde90309c1abb8c523824421c3f841c5b06a6e537", + "bytes": 73264 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.061.woff2": { + "sha256": "f2acfc5a13d4cd45676285924c1fa167c9e405eae6ecd2210a9c0eb8b44434b7", + "bytes": 94068 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.062.woff2": { + "sha256": "9d12d40eb4a3d3e54fb6d5f323000c02a9111ecb0bfbe2edfee485ec2032a228", + "bytes": 68160 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.063.woff2": { + "sha256": "45d409eb563333a6e91fe85601943b518461e819a6f99992d70eb20f41b80bf6", + "bytes": 73932 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.064.woff2": { + "sha256": "10c3c8862c2d6456e26937915bd55db993079403b2963bd9f85d6ca4e2ec9147", + "bytes": 79784 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.065.woff2": { + "sha256": "9aaea6a572d2e94547c6cda454735a42c6dd11daf4545d1f3ee3db119e45e941", + "bytes": 78016 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.066.woff2": { + "sha256": "ca91856d3a8c1e2bfade33e543892dbc3400da9f783b548c3664c7be6e03769b", + "bytes": 81160 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.067.woff2": { + "sha256": "18161aaa3df4ffcee40b999920a4378897f75502b6f8209154a17439033028ee", + "bytes": 87168 + }, + "files/FluxerSansSC/FluxerSansSC-Regular.068.woff2": { + "sha256": "8dbd631e40d9239b9be418cc9345f524fbb4376dc66a5412e28f587c3dd3c19e", + "bytes": 72656 + }, + "files/FluxerSansSC/FluxerSansSC-Text.000.woff2": { + "sha256": "f81dee7629c5bff708994d1868f5b9646ba8d66e2c0e0ba78abcd2277a4177b0", + "bytes": 54188 + }, + "files/FluxerSansSC/FluxerSansSC-Text.001.woff2": { + "sha256": "653c941c81a8a94c880d567de856ef5a0fe803f023dd8743d7b37447422173ef", + "bytes": 38344 + }, + "files/FluxerSansSC/FluxerSansSC-Text.002.woff2": { + "sha256": "16ebe56d36949b8dc14380f3933cb6c661fbf0153634815cf97504641b498bf1", + "bytes": 23708 + }, + "files/FluxerSansSC/FluxerSansSC-Text.003.woff2": { + "sha256": "13076ea91016d15d7a411b456a48ba16bf84a44f3b1be0bb4d28604b1d70ca86", + "bytes": 53580 + }, + "files/FluxerSansSC/FluxerSansSC-Text.004.woff2": { + "sha256": "f7ecbd8e2e594c62baec8b0cc8a6b53d9c49a15552008ddc877d2454b71a5cf4", + "bytes": 64056 + }, + "files/FluxerSansSC/FluxerSansSC-Text.005.woff2": { + "sha256": "e22425886c80b233e10c723176721a9a7db335db98608cd7c32810c9ab6f70ad", + "bytes": 56448 + }, + "files/FluxerSansSC/FluxerSansSC-Text.006.woff2": { + "sha256": "7cc3adfbf5ea0970b21ed64f788999de22513ec39f4033261065fa494f2d88fd", + "bytes": 63092 + }, + "files/FluxerSansSC/FluxerSansSC-Text.007.woff2": { + "sha256": "fcb4db06ce0be0ec692aa4fe67163cc4fb49cf4852e86ed7e8e2aa0b307daffe", + "bytes": 62772 + }, + "files/FluxerSansSC/FluxerSansSC-Text.008.woff2": { + "sha256": "ff5ac2ac3295d03c0592ba5d6084b3c80c292fce5288f1dae46a2b8e1cd9c218", + "bytes": 70440 + }, + "files/FluxerSansSC/FluxerSansSC-Text.009.woff2": { + "sha256": "22f1afdcb5cef5d2cd3de93d9b50438750663fc107fe961e02064ef225427cdc", + "bytes": 65992 + }, + "files/FluxerSansSC/FluxerSansSC-Text.010.woff2": { + "sha256": "1aa1bc781808f29c270dc6fa707a1596dbb3c8742903d58ab468fc75152d0673", + "bytes": 61136 + }, + "files/FluxerSansSC/FluxerSansSC-Text.011.woff2": { + "sha256": "6711e86644efa57b1398300f2328a45be67a4f77ba2498ab63e5861e370b2221", + "bytes": 68652 + }, + "files/FluxerSansSC/FluxerSansSC-Text.012.woff2": { + "sha256": "f4ebe97c957213e70ee56cc2bacb913995dafdedab1fbe431b2fbc58f546f35e", + "bytes": 67916 + }, + "files/FluxerSansSC/FluxerSansSC-Text.013.woff2": { + "sha256": "55514ae8454853ed95c51bdc7585491bb4975b8d526eaa1dd58d9afc723ffb1a", + "bytes": 64832 + }, + "files/FluxerSansSC/FluxerSansSC-Text.014.woff2": { + "sha256": "22839951fade25fd3b66e830c5b220bcde05c502abd94f568a5197fd1c764b9c", + "bytes": 69136 + }, + "files/FluxerSansSC/FluxerSansSC-Text.015.woff2": { + "sha256": "61c281486a68a88ac9b30691eaee8d8e53dd1bc1d6e2f5bc0df667d86794377b", + "bytes": 63340 + }, + "files/FluxerSansSC/FluxerSansSC-Text.016.woff2": { + "sha256": "2c32d7aaab66af4daf141bd6cb089d322b467ab28180a6e1a1902e4b1e1fbb28", + "bytes": 70052 + }, + "files/FluxerSansSC/FluxerSansSC-Text.017.woff2": { + "sha256": "9a97798c38bd42776e48af834eee131cf2564c76f33d703214717e99cd2ae656", + "bytes": 76400 + }, + "files/FluxerSansSC/FluxerSansSC-Text.018.woff2": { + "sha256": "c6bbb19b97e53050c9dc64b79b20e6e6c2abceaed3a2b565c736b6e465877f81", + "bytes": 81556 + }, + "files/FluxerSansSC/FluxerSansSC-Text.019.woff2": { + "sha256": "47c241cf6f7fac8b7a6c864ffe303ae29c4dce6e6dd0ca888015d5036abb6fee", + "bytes": 49788 + }, + "files/FluxerSansSC/FluxerSansSC-Text.020.woff2": { + "sha256": "a93ab971c5565527ba286fecd5d8c954f5eef787350860706ea5563ca66f678a", + "bytes": 60352 + }, + "files/FluxerSansSC/FluxerSansSC-Text.021.woff2": { + "sha256": "d18461c18fb189e9e316a4be06f9a5559df0e919df96b2c27acfc67e33b9405f", + "bytes": 59736 + }, + "files/FluxerSansSC/FluxerSansSC-Text.022.woff2": { + "sha256": "528495e127fca876e16afddcca889e0661d9e6e0accf00e5d46915dc9985213b", + "bytes": 52828 + }, + "files/FluxerSansSC/FluxerSansSC-Text.023.woff2": { + "sha256": "e9b6afab604492c2587db46b8a8a03a792f9cac3aaf8323807f59d40e64ef1c8", + "bytes": 58896 + }, + "files/FluxerSansSC/FluxerSansSC-Text.024.woff2": { + "sha256": "fac004307a28be0b42883499b3a40a61b7d069a87b584aa32b4c3ec9094c7268", + "bytes": 60488 + }, + "files/FluxerSansSC/FluxerSansSC-Text.025.woff2": { + "sha256": "8ccb223013274ed3ab37238b5eea70e699b7476d61784482fb0bcb38b3aa0a7a", + "bytes": 63028 + }, + "files/FluxerSansSC/FluxerSansSC-Text.026.woff2": { + "sha256": "4bea53fdaf9de87fc54ab67bf271ccb485130b52bc94bc0d464ad36f7ab88064", + "bytes": 71432 + }, + "files/FluxerSansSC/FluxerSansSC-Text.027.woff2": { + "sha256": "31cd91aadbdb59f5fd3333e14c4ae227684df76359452b6afe0f4c9fc116f647", + "bytes": 54560 + }, + "files/FluxerSansSC/FluxerSansSC-Text.028.woff2": { + "sha256": "148b77ab1d83d3141c62659ecf9103499fa7eb6665b4e7f5285642e18bb755c7", + "bytes": 60092 + }, + "files/FluxerSansSC/FluxerSansSC-Text.029.woff2": { + "sha256": "29f29f82dd2a8b4b998c0d439ca48593d2e2c0e142d34902ac6a8bf7db4aefd9", + "bytes": 61824 + }, + "files/FluxerSansSC/FluxerSansSC-Text.030.woff2": { + "sha256": "f47fbf0eae17df99cfb99d9f80924ec20cac93cefbc6ab91a14f7e0fbc3cca50", + "bytes": 70284 + }, + "files/FluxerSansSC/FluxerSansSC-Text.031.woff2": { + "sha256": "e09938b4acebfddfb2b0bd08377d0f07adc9273518f580ca6868fea6d033ed2a", + "bytes": 61432 + }, + "files/FluxerSansSC/FluxerSansSC-Text.032.woff2": { + "sha256": "dd265c7bed1f4e74e9f05094e3faf93800c96a3d6b1043c42713ffed0968ccc3", + "bytes": 75072 + }, + "files/FluxerSansSC/FluxerSansSC-Text.033.woff2": { + "sha256": "e8902d926cffa3816e9656c06806b1ccad339f48d0ee2c21849b19e715873d0e", + "bytes": 59400 + }, + "files/FluxerSansSC/FluxerSansSC-Text.034.woff2": { + "sha256": "6aa0d0d68433842ab749b6936d5a18938eed6524ed3fd0e590b57eb07e2791c8", + "bytes": 58504 + }, + "files/FluxerSansSC/FluxerSansSC-Text.035.woff2": { + "sha256": "73d400ebca6abfc63f24acacd830d392aaa9350769ae51241d93d378975e7bec", + "bytes": 68600 + }, + "files/FluxerSansSC/FluxerSansSC-Text.036.woff2": { + "sha256": "dd885080bb62e484a58e8cdbe77101c6d157fa90aa2b88da5b859f03cb8f0497", + "bytes": 75660 + }, + "files/FluxerSansSC/FluxerSansSC-Text.037.woff2": { + "sha256": "040c58fa4ef4756e621e91f7000eec8e2799891d9174625381435f5580ea1ef0", + "bytes": 61472 + }, + "files/FluxerSansSC/FluxerSansSC-Text.038.woff2": { + "sha256": "96c814f279bd28b4e8a5bbd7376a7ea9c5edde7090a21a811104fe10dead20dd", + "bytes": 73548 + }, + "files/FluxerSansSC/FluxerSansSC-Text.039.woff2": { + "sha256": "1d771480fa449142c5edd6c9186fb0c3e1e7e744d32f87231e99db5f175fc6c7", + "bytes": 81080 + }, + "files/FluxerSansSC/FluxerSansSC-Text.040.woff2": { + "sha256": "3f05090afe41ef74d84a94b18cf539ac909c87074bb2c088a6d99cced754ad18", + "bytes": 74380 + }, + "files/FluxerSansSC/FluxerSansSC-Text.041.woff2": { + "sha256": "880f921b6c2307524953f0053f27e06297ca5158b3d3427844b4e110b1e1c32b", + "bytes": 62620 + }, + "files/FluxerSansSC/FluxerSansSC-Text.042.woff2": { + "sha256": "ea9d4d889ef92dc9115e8ed9c80c81f0f0a2beb5798d1630f8343695aae3bc83", + "bytes": 66080 + }, + "files/FluxerSansSC/FluxerSansSC-Text.043.woff2": { + "sha256": "bb09f90f0916d31543d0928737e53e3826763f752ee08f6491528d43df48bea3", + "bytes": 64380 + }, + "files/FluxerSansSC/FluxerSansSC-Text.044.woff2": { + "sha256": "7394effedf57f60240411d666cbc203be48847ecfd6249a13af8dc7bf63fdeeb", + "bytes": 62724 + }, + "files/FluxerSansSC/FluxerSansSC-Text.045.woff2": { + "sha256": "04eb4a844f002446bc8168338205594e6175331d8e17cddc39b5193da2566998", + "bytes": 66760 + }, + "files/FluxerSansSC/FluxerSansSC-Text.046.woff2": { + "sha256": "43cfafbf22ab247c6281347cfdac6216cf82cf1d5a12c044ee21287beb1f0073", + "bytes": 71620 + }, + "files/FluxerSansSC/FluxerSansSC-Text.047.woff2": { + "sha256": "a1f418789186741d28091fddfbb7230a299cd2f11cff0eeb43ec40dd1e83f28a", + "bytes": 81720 + }, + "files/FluxerSansSC/FluxerSansSC-Text.048.woff2": { + "sha256": "1e29d10c43723fdf6798f11f6368533fefc4ef22a22ef734b15b56acf6070855", + "bytes": 94232 + }, + "files/FluxerSansSC/FluxerSansSC-Text.049.woff2": { + "sha256": "483553d693241789d3a61098ec052db46efb268f4499efd39029cb381310197b", + "bytes": 62780 + }, + "files/FluxerSansSC/FluxerSansSC-Text.050.woff2": { + "sha256": "745fbd9c61560a89474ff7a4db4d3d7285114d2344b33f7317ce1dde78f5affe", + "bytes": 61752 + }, + "files/FluxerSansSC/FluxerSansSC-Text.051.woff2": { + "sha256": "7507996b745645aab83d480821560d8c11cc046f7d80fc365f0e9c6c1df75a6b", + "bytes": 64476 + }, + "files/FluxerSansSC/FluxerSansSC-Text.052.woff2": { + "sha256": "83d9f45bff7ef7b6551e2eab832dc8b920d9460caa29796b213233b36e1bd7fe", + "bytes": 76184 + }, + "files/FluxerSansSC/FluxerSansSC-Text.053.woff2": { + "sha256": "c2b02048b13b7f0743121909fde87635567a0d2fa38ddcaf1dc3c89de1b7a5da", + "bytes": 73828 + }, + "files/FluxerSansSC/FluxerSansSC-Text.054.woff2": { + "sha256": "4372eb316e6a2269e5e7be3ab55e532bcab0893d73c25d7dd8f9f9ce58c9fe58", + "bytes": 67940 + }, + "files/FluxerSansSC/FluxerSansSC-Text.055.woff2": { + "sha256": "eac82dfb99b349e3f28d739083879e837324bf6fa937affcde528b826c342e40", + "bytes": 63332 + }, + "files/FluxerSansSC/FluxerSansSC-Text.056.woff2": { + "sha256": "3dcc0228fbef8ea30aa986812b3b93359f3cf6685b0c0320b9edf648d06c893d", + "bytes": 80332 + }, + "files/FluxerSansSC/FluxerSansSC-Text.057.woff2": { + "sha256": "b1f4bd80fc08791d75baa755d6d004bc1e431833748f3eabe69f8c128e35668c", + "bytes": 65520 + }, + "files/FluxerSansSC/FluxerSansSC-Text.058.woff2": { + "sha256": "b46632aac5056b3bc5d527ee3607cfb4b8402600c0dd0889ffb7293febdfd33a", + "bytes": 66152 + }, + "files/FluxerSansSC/FluxerSansSC-Text.059.woff2": { + "sha256": "50499103603b3812857bb0de5ff6d888e84076553bc630721670348e9d6c665c", + "bytes": 65080 + }, + "files/FluxerSansSC/FluxerSansSC-Text.060.woff2": { + "sha256": "43583c49b52c98c8e891c5c19b4640f2cec1c726e8852d16076df611f5963fe5", + "bytes": 77848 + }, + "files/FluxerSansSC/FluxerSansSC-Text.061.woff2": { + "sha256": "012682e4b796e21bc192bcc9fc2a3a46a19edbc6eed0fa7ddcc0cf33b890c764", + "bytes": 97776 + }, + "files/FluxerSansSC/FluxerSansSC-Text.062.woff2": { + "sha256": "26b2f9b7166d69e8f30861b8e177ce636efdfde1723542c333e9a28526851ceb", + "bytes": 68996 + }, + "files/FluxerSansSC/FluxerSansSC-Text.063.woff2": { + "sha256": "4fccd7d733f3858e59c36634761dfbbe3a1f337888b66b2f051569742705102e", + "bytes": 75428 + }, + "files/FluxerSansSC/FluxerSansSC-Text.064.woff2": { + "sha256": "9b79b5b983da9356b91a6fcd029e285854d13e6af4f96f9db597a006165ca2e0", + "bytes": 81584 + }, + "files/FluxerSansSC/FluxerSansSC-Text.065.woff2": { + "sha256": "a04b213d6d5b467957d3d3e70a593156e70e36ea624e99d2446c8b91baa12fd1", + "bytes": 81020 + }, + "files/FluxerSansSC/FluxerSansSC-Text.066.woff2": { + "sha256": "d2385e2ef61f8b3d695c738874097eabe7b00799b479b54285af69489e3e638d", + "bytes": 85636 + }, + "files/FluxerSansSC/FluxerSansSC-Text.067.woff2": { + "sha256": "079d685e8b2fed7a34e9986b37adc8536abcd6aa9add0e8750147a0020f779cf", + "bytes": 89928 + }, + "files/FluxerSansSC/FluxerSansSC-Text.068.woff2": { + "sha256": "c4e1cfe82ba3cb19a285fdde02139048723a7265dc631d5b9f635ef30347291f", + "bytes": 73896 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.000.woff2": { + "sha256": "c26da7fa13dc40c27b4134a52baddb37ac964a8bce736b9275356fea974eb3bd", + "bytes": 55104 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.001.woff2": { + "sha256": "fdad5479a046464cb9c0e489f29b39efa4d3bb1eca052811429daac9612a59f5", + "bytes": 38308 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.002.woff2": { + "sha256": "323ea1f62833bbd9fb7f51e073c9438d8a16ef397e06d2abe76e08e065f1e5d3", + "bytes": 23732 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.003.woff2": { + "sha256": "cd6c8f206a9d4fe2aa46ca6058f4b5ff52484aa4c3b4712d30e610ecf968dd2e", + "bytes": 54080 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.004.woff2": { + "sha256": "ef52bbb2077af74ea52e088f90e4f3045992330d5696a02975814be087a9e553", + "bytes": 64956 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.005.woff2": { + "sha256": "23a42b4c0be7a51f2cbf659d7ca4f52f981ecaccaf4d003bd45addbe05056a29", + "bytes": 57060 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.006.woff2": { + "sha256": "5547585ec64f588ac2df072abd9630d87c47b7a793aa4c70638cd013343aec66", + "bytes": 63512 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.007.woff2": { + "sha256": "3c9d70cbb0f53baa8da7ed30eb22460eb6eb5ec70b495efacc7433a38c1e4705", + "bytes": 63128 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.008.woff2": { + "sha256": "0b1ffa7e333f5ffb03b2eb214e75e8729fbf4640e92aaa592e4d216eaf0a7993", + "bytes": 71232 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.009.woff2": { + "sha256": "74eae6ea655c2a119e30cd546c4aa193d1a63b0607c78d23e4b8884e6a95996a", + "bytes": 66452 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.010.woff2": { + "sha256": "b17cc8d2ef76421d04ed7e0a20179bcce06f2f8476be0f2f3c70b2d96895eb65", + "bytes": 61588 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.011.woff2": { + "sha256": "92173e5de577769eb495605ffd37ea7dd973641c7385bc413b889a24a906e966", + "bytes": 69548 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.012.woff2": { + "sha256": "9c981cba025dcad9b9b0cfb4f8ccc8cf7ac9aca7356d4656b1ffe3d893d06a14", + "bytes": 68568 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.013.woff2": { + "sha256": "8d3a0fd1236d6a88897d379ab37c17aaa0a84c65699a9c17b54de9f18a98414b", + "bytes": 65772 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.014.woff2": { + "sha256": "6c441861e6a5224049834d5897c9c29ac14e441a7249ecf10929ec0ebdcdb420", + "bytes": 69628 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.015.woff2": { + "sha256": "b7bad015be74f16ef0330b9e33ab96ff1545b22af344b1654027e23f87564ff4", + "bytes": 63844 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.016.woff2": { + "sha256": "a8a155b6aaa9a55d8f2b62d8ab3d9d6eca53041efc46d501924fbeb8242a7d44", + "bytes": 70980 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.017.woff2": { + "sha256": "12d11131ef344be75b5640775da2089edbf31d293759672ea6db81dd89798f8a", + "bytes": 76940 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.018.woff2": { + "sha256": "9a69066e306f3ae7a4b041a58dea4ddcff60185de1f4a7511df19ac4e3652d75", + "bytes": 82140 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.019.woff2": { + "sha256": "412eea0e118e8aedd1d6c268f86bf7db4203ca045c5b68fa1cd77a75145d39b3", + "bytes": 50000 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.020.woff2": { + "sha256": "ac658ab4fb774831adb7191fc6dd6f17f338563c1bba4d1319ff718c1a4cfc6b", + "bytes": 60632 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.021.woff2": { + "sha256": "7b38994712e11f10f5ca154eda0fd64c012153c1d821b23d0865c537570d8a83", + "bytes": 60280 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.022.woff2": { + "sha256": "4b6c49ed992dd9a66a17940f195a582f2f48d156dc5be9c5f98c06590f1bb66a", + "bytes": 53204 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.023.woff2": { + "sha256": "7bb0a4faec0dffdc34bd3512e9f3295affd6b1d1589a7f72b6cdeb5172c0e931", + "bytes": 59508 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.024.woff2": { + "sha256": "d8f7843c1817c0d7d1b85d9bfca28779efc110fc8e33534ded658c074de6d47b", + "bytes": 61216 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.025.woff2": { + "sha256": "74897a85c765752fdac7cc1f4637845b15c73485267180d58751f237cf8c124e", + "bytes": 63484 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.026.woff2": { + "sha256": "4d25da7128220bb6750765d45491b829b543a7f265ad7c3273f0d85aec2bab3e", + "bytes": 72168 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.027.woff2": { + "sha256": "0a71b5b623e895e2a1ff21fee3d4a8d1c419d91cc361e5c979c0677283dbdca9", + "bytes": 54876 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.028.woff2": { + "sha256": "15fb61dd8b1e52b531c0c868afd7feb2633761df2f8aeeae68fa14ff325ab516", + "bytes": 60592 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.029.woff2": { + "sha256": "858d1b7c85a485850babf734e14e2ec003e79ea6ee7434604fd3b984582b16e4", + "bytes": 62348 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.030.woff2": { + "sha256": "1064016206accef649514f6a3214271c16506b56266f3aae3578b196d33cfb24", + "bytes": 71064 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.031.woff2": { + "sha256": "7f1631edae8a5424ff0aa7327b96aa469dcc3a4c0ca9327d6b3f5783eb56f2b8", + "bytes": 61604 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.032.woff2": { + "sha256": "b9c1168632334a4ffaa65b8f4e67bd746194e12f8a5f65036e7fb4bc71a6e0bb", + "bytes": 75216 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.033.woff2": { + "sha256": "47a8da1cc5a055bf1c74e2624cb6d83cf1153eec9f25df3fa9832459cefe104e", + "bytes": 59848 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.034.woff2": { + "sha256": "267fabe0067250754477f8bbc0619211048b1eb424a6b37f893eafc8a84a74f6", + "bytes": 58088 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.035.woff2": { + "sha256": "0319f34eeebc51da38d6194c13d42a7dfd229d5869a0874273d1dbc563e958d9", + "bytes": 68484 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.036.woff2": { + "sha256": "00bd1a791a31d8661bdf86045494790929fda9eb4403eda09fddb30ac93eebc5", + "bytes": 76452 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.037.woff2": { + "sha256": "605391090198b5372069c0e2e24d5f03a4219d2f4ded7e57e9f3f7d8830f83ed", + "bytes": 61988 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.038.woff2": { + "sha256": "41c3ee4396f092b28b4cc3fc59b5e722aad5a3ee7e7ede7764b0e2e8814d71d5", + "bytes": 74040 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.039.woff2": { + "sha256": "2e5a8f69ce0fc6a30894175a0475006f418769787e0794e8948b26fe3845a495", + "bytes": 82024 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.040.woff2": { + "sha256": "984bb647b7b282e0b22b136576d377032e9ab085b0b5b11eedd851cbc61f5721", + "bytes": 74944 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.041.woff2": { + "sha256": "658bb815290cda2a3ed8239e978d80ca8c22e468787e9ed525600d2d0db33713", + "bytes": 62808 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.042.woff2": { + "sha256": "01240d726c9365c2e209eb7c3068fbd32dfd9cf09ce2d8595c75b842779804bf", + "bytes": 66748 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.043.woff2": { + "sha256": "b0e362322afdd9356bb80d5070b58334d7d91d4286892107fbb534ca182a20d7", + "bytes": 64760 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.044.woff2": { + "sha256": "4bdc4871f6b31636729c7371204c80b0dd96f1ec7748daf5202c25594d922ec9", + "bytes": 62788 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.045.woff2": { + "sha256": "731b99afc63c11b823648bf8c01b5124a9b4c6058cbf15d1252a0cec93b8a743", + "bytes": 67188 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.046.woff2": { + "sha256": "61c92d055d18d57b0e6ea2f8e09411189a582dd342723966309ed736baa89b2f", + "bytes": 72988 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.047.woff2": { + "sha256": "8eebe83aee55c66ceac932d1dd7d7b35c3ba6f98cbfdfcf497df8c9a43fc58bb", + "bytes": 81696 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.048.woff2": { + "sha256": "0b26cb8bae91a09211c5677effa60f61ef8bbe17469beebc099d8f07ddc23d89", + "bytes": 95028 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.049.woff2": { + "sha256": "29da50e15f9e9e8ca532a63a03b50001371aa23c95deddc27b7c6f0df2a39485", + "bytes": 63212 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.050.woff2": { + "sha256": "9aa7173caf314b00c6555925c7a4dd41f7a680fb4007db850d84cdbb3e7946e4", + "bytes": 62204 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.051.woff2": { + "sha256": "b60be933b1f22c162e257d762abb9aaa4f9f82b9849174d011ec37ef14b180c8", + "bytes": 65484 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.052.woff2": { + "sha256": "7919f462307fdb1685bdbe5f9719df4a7bde3e0406674616f05c5dbc83c91323", + "bytes": 77392 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.053.woff2": { + "sha256": "b0dfdd5fdfb24fa1d2a60a583095706fec62edcb15391df2264940914314ee8d", + "bytes": 74344 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.054.woff2": { + "sha256": "5949d71a5e2a686aebc6f06e4a587ed4f9b36e85e7b6148855b5c5ef158eaa72", + "bytes": 67940 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.055.woff2": { + "sha256": "7029d64fa142b010a33a90b3d7f5ec5cb021dabab7231bea78ea230b79df47f3", + "bytes": 63708 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.056.woff2": { + "sha256": "53b254ad6a3591a1f4d495e46d5b0fc7789ccae50e1ed060ff004415e6c4a15e", + "bytes": 81076 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.057.woff2": { + "sha256": "a8240a3f54e8905ef04bc73602731e137207878cc592cc9da8b7722bd2fb288d", + "bytes": 65832 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.058.woff2": { + "sha256": "491bf84c777f1be8083a3da571829f2a4cb6b503485950c7d71b35e55bec8a47", + "bytes": 66420 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.059.woff2": { + "sha256": "ec6d167bcbe30bb2099f39d33bde71662f2d6afd85d32d12ec2beeff23a289ba", + "bytes": 66452 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.060.woff2": { + "sha256": "3008ca145c2ca0704d46e2003ee3370acec46507979b04113e9904afb5d53b7c", + "bytes": 80320 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.061.woff2": { + "sha256": "b2e4181742749c14ce81d65c2b901594936d6bcb64db535a055f915868ac86f6", + "bytes": 99596 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.062.woff2": { + "sha256": "3a571d1273ac1626f761e2ee28c32392ee2cb6afc1555708de06b87edc62a1e0", + "bytes": 69180 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.063.woff2": { + "sha256": "f4bc1ebb9c24c8dba712776d91556b96aefd78eab9b3e8d672a36676b6b4f827", + "bytes": 76176 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.064.woff2": { + "sha256": "20edd338e2eb0894b2de938dcbbbe6ab1dfddc5be8352dd78e1570351f563c0e", + "bytes": 82240 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.065.woff2": { + "sha256": "1beec7aaa1a44ab45dca96607fc70f8ffc6d4c85e63fa412c73bf2bd094b4d1a", + "bytes": 80788 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.066.woff2": { + "sha256": "1af949b57a60d5636300f18ad1e7c97ff698a2a8af506ba7b809c25035f10fa2", + "bytes": 86776 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.067.woff2": { + "sha256": "2675e6483b3dbade64811d7c0c82f00989b27857deeee5e860a4907a85a99330", + "bytes": 90924 + }, + "files/FluxerSansSC/FluxerSansSC-Medium.068.woff2": { + "sha256": "b6810e4aed2a255644f7ae43e28aedd6261fc154821c69a4dea6589f526f0233", + "bytes": 74244 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.000.woff2": { + "sha256": "299b662b50f015e1b5c3fb70f224f32ebd9d4d7394d3eb096b7c27e5d6eb7909", + "bytes": 54948 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.001.woff2": { + "sha256": "ffd62eaee74b75b98321fcd6a08743d58eed083607afd9f8702233c767166b89", + "bytes": 38268 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.002.woff2": { + "sha256": "9600de0118c9037b3e234493be786da61b35fd9b36cfe52f0eea144c0d4069d2", + "bytes": 23748 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.003.woff2": { + "sha256": "8e1db2d8dc5a746b36f4ca286c4a5967f94399854c062db1f5e9f43521cecd89", + "bytes": 54208 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.004.woff2": { + "sha256": "68fd17c6a6ea1195d270e368ef9f7270394f2f51015d563bcde5dc4aecf2d695", + "bytes": 65300 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.005.woff2": { + "sha256": "4d9710522926a315290be5664b1ca9207bfd10ebf34f44fb61943797c4e4f7c0", + "bytes": 57256 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.006.woff2": { + "sha256": "afb71309728408e391c80acb43ffef4d99f68231f4f8102a81495cadbc9665ef", + "bytes": 64272 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.007.woff2": { + "sha256": "01be5d917a77fececc2a9305ffe80d67eb338c1929e0d605558d1162952945aa", + "bytes": 63912 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.008.woff2": { + "sha256": "6b0ee3402cb64fc47dac639f95a9f13d5306afc72f06f80f525dd39a02e2bd42", + "bytes": 72092 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.009.woff2": { + "sha256": "96bd514447479560809b6b0f870e754f73daaa273fec6433ba82e0932730894f", + "bytes": 67164 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.010.woff2": { + "sha256": "716200c43a38d6130ea7b5bbf3dfc692b73b06df833361753c0266a36d989a87", + "bytes": 62088 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.011.woff2": { + "sha256": "26ee9958fc3d8747a232175992ed143f21419d71e22a67edd7fcc858e123534a", + "bytes": 70444 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.012.woff2": { + "sha256": "5cb2305da2a194d0b63f05bef46633fe44111a767887ec6ace260d928df021c1", + "bytes": 69728 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.013.woff2": { + "sha256": "a5a3824966ce8cbda01bfbcd2073db1f17d8c1238d7b4bb48cf91aa5faf1f3dc", + "bytes": 66200 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.014.woff2": { + "sha256": "3398054f7451c0c52fed216a05837b621c93315b1aac762cd34da9984168f9b3", + "bytes": 70044 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.015.woff2": { + "sha256": "de74643885ab1a513e5aad752536fff7fd80e488a47564a0cc1f519647f1ed62", + "bytes": 64044 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.016.woff2": { + "sha256": "32411ed3f2bb2c06dc4608bdebb289d3d5bb294c44b3870814374cbbafa6d738", + "bytes": 71040 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.017.woff2": { + "sha256": "01954c5664885da4714bfaa790546db108434cc26f3741cd0d5424edeb4d40ad", + "bytes": 77812 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.018.woff2": { + "sha256": "27caf45059cc8c3e7fbda66ad07de5411ba1f3568dab4126ae41ef245e047726", + "bytes": 82952 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.019.woff2": { + "sha256": "d3e9be23a7446db9dae8484e53f9bef4c88405f00ca626fc6417928dddae1286", + "bytes": 50220 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.020.woff2": { + "sha256": "c322b0e06e3a854c85cbf4d3bd4f7ad1cdde3cc67a399a0b2777e9c8bb7bb9f9", + "bytes": 61156 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.021.woff2": { + "sha256": "7a8f51a40a6f32836b37339dc21f7a67b76f8f6e20fa6f13b8d9ce46fe978976", + "bytes": 60608 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.022.woff2": { + "sha256": "ec50d5fa15126c40dea1ce812ad7d116e3dfda003da15bfe0ab14e05bba8e22a", + "bytes": 53560 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.023.woff2": { + "sha256": "6e9db1aed7d4fb298151596223a6695a6ad3c9c473d750efbe219c2d9d92637e", + "bytes": 59988 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.024.woff2": { + "sha256": "0490e0a2933b0ce914e7b1d8aee5ab7d04bc99bb0f08dd6df940b62109cff605", + "bytes": 61616 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.025.woff2": { + "sha256": "3ab4d8f1c4d1c1df7cc8a5c535f336848232788dcf2ab5841707d2ded31a4336", + "bytes": 63828 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.026.woff2": { + "sha256": "9fe077dce956dc59b0e5bc6bbd61efc7bae1e716cd04c379419015b34e1ebbf1", + "bytes": 72692 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.027.woff2": { + "sha256": "f650d9a21c0841ee741e9b54cfe7fd63684b43d80a5bb74bcdb245b4ac3fe05d", + "bytes": 55128 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.028.woff2": { + "sha256": "25f91c642acfd383e70d8c5824360a0674a82d7fbb08a531714d1278dd28a7ca", + "bytes": 61060 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.029.woff2": { + "sha256": "f819a4b414b7224a11eceb16c0a2b12c78b4b899bbaea68a2649543fa93f0cd2", + "bytes": 62800 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.030.woff2": { + "sha256": "20924065191612054b17cf2ca1f7e5c389cdfd79db05487ba2775261b66416e5", + "bytes": 72144 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.031.woff2": { + "sha256": "232547e6648d956ec02711d79ac75112fe14402b588d34e8ac2e70420f0014cb", + "bytes": 62008 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.032.woff2": { + "sha256": "3ed8407ecd8d87362379527775624f014aefe2c6dcaa1c13e86e49f9852809c5", + "bytes": 75680 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.033.woff2": { + "sha256": "ea990631476dd0660bceb88147f587cb2ec55e9f3231b81a7f74307bda32b530", + "bytes": 60416 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.034.woff2": { + "sha256": "5bf150c46de11ff27c70e5e477aef7b3545431489c82b5a28d5a3eb2cdf5dea3", + "bytes": 58584 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.035.woff2": { + "sha256": "f5f776e72ae22724e281d38964872f98904d23087aa7d93f5f6b1769acd760ec", + "bytes": 68960 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.036.woff2": { + "sha256": "839dfa663340d214399fac64fb38673189858d3d300acc9362375774c64eaac1", + "bytes": 77020 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.037.woff2": { + "sha256": "b2e64a65e5ea98ddccb290f9c57a67a41d7616ab71deed2defb323e7c0b02251", + "bytes": 62716 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.038.woff2": { + "sha256": "917cf2d285696679c60ad2a7ce5a5e6a9882b1d06303fe82052b777d442856b3", + "bytes": 75056 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.039.woff2": { + "sha256": "cfa39c5578283de607dab3094188cf82706974effa40a2f1ea0eb2ab5e7a5996", + "bytes": 83096 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.040.woff2": { + "sha256": "4098fea82ed9aa074cc50e754f8e1bb19f94fd920591e5c54dae64509c2b8d0d", + "bytes": 75932 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.041.woff2": { + "sha256": "84705008c7749ce8649c1af8f258c3b992047f0ed9dabc6f87a0e9963583aed0", + "bytes": 62960 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.042.woff2": { + "sha256": "da16aa8dd1241861c41eb0b9262309fc33f8ada75097eb2b5a012780f4b6220f", + "bytes": 67368 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.043.woff2": { + "sha256": "897ef44503a5b1d7feecec353832e06968533146922f89c45025fe106adb9466", + "bytes": 65268 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.044.woff2": { + "sha256": "914a8f38a139faf9d23ef0405d8dcf8c3ac66ee3efc85365a355a20d1c79b3b7", + "bytes": 63156 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.045.woff2": { + "sha256": "b8b4f9803efb51b310d2f35fb8a6c96ec0a71070ddb91491691fc812e6d92dc8", + "bytes": 68108 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.046.woff2": { + "sha256": "4aa88e6a78ff44760188d4fc0edf2e4541c7446f902a7ce7a6debecdb9b0fb1b", + "bytes": 74992 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.047.woff2": { + "sha256": "ac004775f797fde6a835a82ca2fbdb467fe5f9c7bc9112a049264bd7450dd8df", + "bytes": 82384 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.048.woff2": { + "sha256": "46519230c6cf2653df12f52f07b46210ba2ed3008ca55ea4a73aaf0afa8e9b5a", + "bytes": 96108 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.049.woff2": { + "sha256": "28d7a8c7978a596a45af21c27eb4eeb46c5339c9968d92a56a90c1718ec29d79", + "bytes": 64120 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.050.woff2": { + "sha256": "b46b2f922e6c80a8af6b5b2bd8bd96852b33f812b012b6cd6271d7b1b538e997", + "bytes": 62868 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.051.woff2": { + "sha256": "5054180aef60019c5ff36b9581f29b62d98ce94668c8e035c209b36d44cfd69f", + "bytes": 66132 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.052.woff2": { + "sha256": "4887ac79117287d22e484f39ca88c98c8163b82c89a50b8bdd55005520e31328", + "bytes": 77828 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.053.woff2": { + "sha256": "b2a2de638ff93cccd52dc118e353e2595640ce6fe07e8f20260b5e6035123bd4", + "bytes": 74924 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.054.woff2": { + "sha256": "9ad1542bdfee0de0bacefc454746d3ca5d4dcb5666b23ff52ba428824208b486", + "bytes": 68564 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.055.woff2": { + "sha256": "a18667d17c638396d4e637448cde90432a863b38c4419e4c4cfc96884be78604", + "bytes": 64304 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.056.woff2": { + "sha256": "ec4cb32059f6077690d9cf84f636eb24fd223eee932f1a715d20c8fec4cc8ab6", + "bytes": 81180 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.057.woff2": { + "sha256": "2c3d75ddaaa4fd34898cae23501f42d99682c7418f211a6f1abdfa6860dad4b3", + "bytes": 66588 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.058.woff2": { + "sha256": "d64642e84a29730aa33ba54c16d45de7b6f9de885ec1bc4cf8e452911fc3bb88", + "bytes": 66744 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.059.woff2": { + "sha256": "ca629b5c036d96b15b4dce42f3ea3e999c3c9f377eea615568707ad087d812c1", + "bytes": 67080 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.060.woff2": { + "sha256": "833f75e519f146dd03ac6562e95a7b3f5f614c4ae14f87cf9f057518a8ded366", + "bytes": 81672 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.061.woff2": { + "sha256": "56cb8bfade730b8250908a3575ac3b15848e97acf4f7862680e1d50efba5e57e", + "bytes": 101056 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.062.woff2": { + "sha256": "f18d14fc6b1711ef25907215c6e91f9a6fa2c96c4277d2f7210bb96609012727", + "bytes": 69564 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.063.woff2": { + "sha256": "14f749f549d23eb8923e2721a037ebd9d2ce281f70c2fd9f4b18b978d91a3156", + "bytes": 77156 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.064.woff2": { + "sha256": "933999b3aa00bf73c8ae5fbd78b3e9b8f12f529069a3cadf03faa9ce75a81923", + "bytes": 83684 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.065.woff2": { + "sha256": "0aeb2742aba8374a47338091c958d589c3a94a8ab45ec5858aca5a9ae5688da6", + "bytes": 80960 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.066.woff2": { + "sha256": "bc3416d8da711d723bf280a1932e2bf8c19730756e4ebf262c8f09d84e650b66", + "bytes": 87460 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.067.woff2": { + "sha256": "03d036453ad4083107b6d51a01b66e388966d5c272e49db0092e9dce42064a63", + "bytes": 91868 + }, + "files/FluxerSansSC/FluxerSansSC-SemiBold.068.woff2": { + "sha256": "4088d811b75c9e0f691c47e53108380020d16baf60e4e34c952a97401e29a27e", + "bytes": 74444 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.000.woff2": { + "sha256": "0e72d138048f261800a2ff8c089eaa2b0f695a67f1895c47e4582973861c63aa", + "bytes": 51628 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.001.woff2": { + "sha256": "6f80f48323cb26fa1ae1f68ec69037abd136d4d1209892d792d710ec6ab2134f", + "bytes": 37728 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.002.woff2": { + "sha256": "fbbcc4b193b3d38cddaff0830af0ac24b3eef974c26dad0a45c868991b80cbe5", + "bytes": 22580 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.003.woff2": { + "sha256": "d0ef96c0e301ddf8e80237e2f931edd5c1ad598eed221329991fa5d7245f7fd1", + "bytes": 54020 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.004.woff2": { + "sha256": "82556cf37aca0cc2ab3785bda9c2c560e3a46b15516dc8ab1f8b3bffa5346610", + "bytes": 65280 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.005.woff2": { + "sha256": "3ab8e1915ee963a4c898c626bc5ac16d3dc681ca6cd5fdf0980be1545b7509b7", + "bytes": 57208 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.006.woff2": { + "sha256": "68983b5a35e9e82146021c4e98628659b9f91ce9aa249dadb33f258f287e7c7c", + "bytes": 63832 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.007.woff2": { + "sha256": "cff8a95cd8a0af361fa9ff59713283409fda37ff9e57e8f273eef09f73d5f394", + "bytes": 63508 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.008.woff2": { + "sha256": "483dd588f048c135740213f24618a835af17970c66584d746d361a0e78f6d5f4", + "bytes": 71884 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.009.woff2": { + "sha256": "371f81ffabf1109ba1cc1a4b12edb647cd669fe011b239f275088ba7d361ca0a", + "bytes": 66716 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.010.woff2": { + "sha256": "2e5895c4be2d319b12e96333697e41acc77a2684209872b0b5b36bf43e598892", + "bytes": 61696 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.011.woff2": { + "sha256": "6fd72c95140a87195c5397a77c8d89355c6ea02eb65a7c42fec2299352c7db0b", + "bytes": 69072 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.012.woff2": { + "sha256": "a574f7a9d544a5fa69151cbcd3878952983df8008a72c148f535afb54b8a3068", + "bytes": 69008 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.013.woff2": { + "sha256": "55eadcf526c74a3eec0cf98da246fb0fee9d1396a9166390afc0eacaf604eb55", + "bytes": 65728 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.014.woff2": { + "sha256": "51927d792fd463afe9f268e545bdc850fc323c81b1d31efe907825d322a736e2", + "bytes": 69096 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.015.woff2": { + "sha256": "749b83ffe65eace19b7e983a0d95e461ea1e99bca61d6f2117ffe1bae7f16c6b", + "bytes": 63000 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.016.woff2": { + "sha256": "3ae2d97547954d440935e1ed95554e43592a03e5e4f9d0811b67dbf785160d67", + "bytes": 69888 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.017.woff2": { + "sha256": "2e796198fb9430e5d44d8c90e5f087d0e95081105b95cea824e262e512a2ec08", + "bytes": 76144 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.018.woff2": { + "sha256": "16cdfbe3d06ed916e8584ed4029fe823fbd2e68d65f80d1df1de38d058148331", + "bytes": 80828 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.019.woff2": { + "sha256": "e4c48e1886212ad79674fe807c7e1241cfc61e9a63898ae30063aef46dd98b25", + "bytes": 50128 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.020.woff2": { + "sha256": "411f2b3ad13374fbf2564216933c4e9fc73aef611c8763aa64dff32f0ea7558b", + "bytes": 60700 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.021.woff2": { + "sha256": "1e70da63d508402a527c22bbf34eccc55626003bc55e7297e525f160335edbf8", + "bytes": 60376 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.022.woff2": { + "sha256": "5c3361922e1899f0201c6175ad431eda24c5892eca1551e0bd41263188f95d87", + "bytes": 53388 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.023.woff2": { + "sha256": "6ae2d87b8db72610b69943a525320ad3416d3dc2bd5820a18e7e4b5f76e758a3", + "bytes": 60308 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.024.woff2": { + "sha256": "07f3b3b7d13c1df9e8ea3b6ce86a4b6b54a3b3d908823037a2662d37cceff5ff", + "bytes": 61356 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.025.woff2": { + "sha256": "eab1a5c0d23d00e3a461fa44818f74c851935ccd172ded168afd0a6bbc3f08b7", + "bytes": 63704 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.026.woff2": { + "sha256": "3e7579c8f5d8ead0e43766d3365249ff90fa835d3f983de243f008ad788f47dd", + "bytes": 71616 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.027.woff2": { + "sha256": "869c9c188e9e909d6e67b202d5118a144d2566ae80cf6afa273354ed9e505104", + "bytes": 54740 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.028.woff2": { + "sha256": "83a3f642977a0a6c363d782d162c18b6ad26a5726ab4b188a770bb0514f915b5", + "bytes": 61196 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.029.woff2": { + "sha256": "c92815b473c365dbf1960a50625ae001903403125496b0276c99f36be9721c97", + "bytes": 62196 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.030.woff2": { + "sha256": "c1bb9fb8ab915c5deaf215071dd51cedf04366876f8fde8bb5d1402a7c364ca8", + "bytes": 72048 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.031.woff2": { + "sha256": "94f4ab5ea015e7659d9bec8a8dd1de023b654610dd33dc2f7833eda22f9841fa", + "bytes": 61572 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.032.woff2": { + "sha256": "1e40da563151887c951a52505b9f8194ad96d254730fb02d910c18e089f1ed3a", + "bytes": 75008 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.033.woff2": { + "sha256": "ae4c90145cc8d1d7bb4f0e41a1cdc7c8e7ff01b416c06f40407c9cf8c97d6ca0", + "bytes": 60348 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.034.woff2": { + "sha256": "a2889964dc84acb028eeaed92f7b64c552acff0f596a4301bb2119ce8bae5eee", + "bytes": 57504 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.035.woff2": { + "sha256": "126d89032f6e7f8f144e81e8b4b2a8aaab30fe1e9c4ad9f1ba53be4bdd324163", + "bytes": 68176 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.036.woff2": { + "sha256": "c78594b183f660c720fbe85b145fc7169289c5723f25d295793191ef91596f37", + "bytes": 76112 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.037.woff2": { + "sha256": "efafbb5b8387dbb980077767ee05ffd13ee693abc344a4abc9577f0f4d98d429", + "bytes": 61976 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.038.woff2": { + "sha256": "72bb815d80723c5575fe705af9c001fa30b33df45504624ae840a0d9037c3289", + "bytes": 74800 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.039.woff2": { + "sha256": "c155e99bc8b520d0c884fc6a46495f678ba58274ec5d9522cb386ca094e1fa17", + "bytes": 82264 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.040.woff2": { + "sha256": "ef2fcb1bb208276972d86f6f6df61828b2c0d2ee9896790a9336c490f9106534", + "bytes": 74256 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.041.woff2": { + "sha256": "387f5af89eb40244596de850023c92ba15d812cb38057ff5e44c0705fc20cd58", + "bytes": 62612 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.042.woff2": { + "sha256": "225cc86d5696670ec0ced92e1ed6564da2a18e6daa04e3143fcb555961a90821", + "bytes": 65908 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.043.woff2": { + "sha256": "b26983364568e66aa499bc3255b03f4c8559ac7d699de4602e40a93b5946ccdd", + "bytes": 64952 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.044.woff2": { + "sha256": "4013fa865c35eaf94080dfb0396f5bbc3308e3082c23421bce32c9698431e341", + "bytes": 62688 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.045.woff2": { + "sha256": "b8db7a790520f6a42d5534ee72f2511c6fb3ee0a978be1be6bbb55275acde183", + "bytes": 66808 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.046.woff2": { + "sha256": "8d0f8c0a0aa5050e4197b3c66115c2009c32633e7a291e6f4b699303bb0cc5bd", + "bytes": 74744 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.047.woff2": { + "sha256": "4a64432effb8737c27462d388e8fd8a2343b128aa1638086c7ac8a1fd67fb4dd", + "bytes": 77792 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.048.woff2": { + "sha256": "2df152852446bd810b565c13bfa865e58e15c75e1747b1b1b767516e5278d213", + "bytes": 93124 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.049.woff2": { + "sha256": "fb5e32a4d201566b8dcbf5d59cb8584c7f2299ccdcfeb22645f2b13bd06cf55b", + "bytes": 63176 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.050.woff2": { + "sha256": "d5f2dc10763398a4fe7f1f9a7adef0135fa0b25e0a6a035dded804215b4c778c", + "bytes": 62064 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.051.woff2": { + "sha256": "605b89c36d67a827d200013c1ab0c15dc426ccc33a0fb1784e28458d69c9c7b9", + "bytes": 65568 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.052.woff2": { + "sha256": "3053e4b1ce3faf7b4cd87e24e7790e6b784315392415f9c368648506561e5bdd", + "bytes": 77628 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.053.woff2": { + "sha256": "fce9420f5243e2d87c3a6ee1b1b2785874dbbdc8d8ff7b8418f129a6a612761c", + "bytes": 74212 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.054.woff2": { + "sha256": "78399a0887851e8a3473cfd6f05c7e9a8969081fdb621de537506b5f1026e473", + "bytes": 67296 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.055.woff2": { + "sha256": "bb8378b2300c02ad5139f3a858d56d2e791b6f953aa6654ab8619143e57a9cfe", + "bytes": 63980 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.056.woff2": { + "sha256": "fa45c9505a20a9175d63aaa121975898b1aef294f2875970047a9bdc2ab80de7", + "bytes": 80484 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.057.woff2": { + "sha256": "1dc451d58346b09d36f01ec7f1a6fb97fb4d630b5285a5b829190dff7d0b6117", + "bytes": 65532 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.058.woff2": { + "sha256": "b060f31c05bbef31364d2f71d8e65b64915317da019baee37086eedefb68a70c", + "bytes": 64816 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.059.woff2": { + "sha256": "a394f04e1360f773f3a85eddfaa26cab2d71de736f36af97a4b6d7b441596237", + "bytes": 65388 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.060.woff2": { + "sha256": "24924afb4b73a6f60a4d23015bef14a10125c3e5ce40804fd3647d5f95723cdf", + "bytes": 79428 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.061.woff2": { + "sha256": "64123b3fd8986ae1a6241b58e6e3b3046bf95932817e41394b98dbf72b0e04cc", + "bytes": 97472 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.062.woff2": { + "sha256": "b3049294e897e75f0232123c592ebf0f969100fa5289b27e540fc0b257a95b18", + "bytes": 69080 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.063.woff2": { + "sha256": "d1492a4314e532dd0c066f666c94507eb7b265c19d9e9d6be636ee9541e32744", + "bytes": 74728 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.064.woff2": { + "sha256": "0232b63bba46aeb5802c901120666c4435966d33dfa76e2932b55cb9313bafda", + "bytes": 82576 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.065.woff2": { + "sha256": "46e0a5ffe163e264217a337702f92ff77a15896fe19e6d72c055d9d2278791c9", + "bytes": 78008 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.066.woff2": { + "sha256": "04e207e35902ec31d6f968005465a62950326f7ada710a0f4cf64ead423374ec", + "bytes": 84860 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.067.woff2": { + "sha256": "c5dcce1c60938474912f8d983d9085daab5e594d803d0f1cb1a320f73aedc599", + "bytes": 89500 + }, + "files/FluxerSansSC/FluxerSansSC-Bold.068.woff2": { + "sha256": "c77367948a56599d7215b566f0efb6cef9581407750a242ade498c0e0b99c251", + "bytes": 73248 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.000.woff2": { + "sha256": "524eef1b48b5f86136743114c4ddeb79fa66392662721ff37d62fa5d7828d0a1", + "bytes": 46172 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.001.woff2": { + "sha256": "25d2a3a71f1908783e2054c7c5f78fdf4f3034aec120688543285b11049e24b7", + "bytes": 39704 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.002.woff2": { + "sha256": "fb62d2f92f4e525d61d5670c8d1f6efe397dff1b999cb47bd7cced7a9c51296b", + "bytes": 4416 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.003.woff2": { + "sha256": "d01f40dc5c14dff52dd77136b3a8f2c9e6814a10c7ae5380d71d1fb1f47f541a", + "bytes": 93784 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.004.woff2": { + "sha256": "10ccd04ec17a374f89ac9098ebc142934f66357bd6dd1064c51cac45417a4893", + "bytes": 50400 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.005.woff2": { + "sha256": "5cd3add3bd3dd058c5907e821d76406be695ae7539b2610658711af2d3fc4b4e", + "bytes": 64084 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.006.woff2": { + "sha256": "eb92989dd30a4106b27bb7262ce5d92d1667c7a8c62e55f3dc9194d203b6e041", + "bytes": 54736 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.007.woff2": { + "sha256": "67d02a2d222e1b8a3c0c6d9a8656a7226119776a16fbf90949713f4c27758fa7", + "bytes": 66976 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.008.woff2": { + "sha256": "a849bbb6750ce0c951ae3e9bfff1b0aee84c990e2a76f9481260a8e6d0c9b0f6", + "bytes": 73148 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.009.woff2": { + "sha256": "55f8f55f3a974de805b7c4d091f97fbe6746c183d2b952dff2cb35954142b64b", + "bytes": 64380 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.010.woff2": { + "sha256": "4c7edbdf820e742689378d51a58707a4de461821a0cc9f23a684d9e730641ebe", + "bytes": 64200 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.011.woff2": { + "sha256": "336d711cbcb09c58bd287a85ce0b79d8dfa2336118dca1f5e08b1e8229c21242", + "bytes": 70876 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.012.woff2": { + "sha256": "759c624a76ca90d8787e73bbda1686aac862a119b50adb7ab439cf4da1dccbd3", + "bytes": 77212 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.013.woff2": { + "sha256": "a7969a39e63fd109502a1a07ba3167213cc212f2ff1faae73423ee90f826215b", + "bytes": 59944 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.014.woff2": { + "sha256": "5eb075b27525578e9433e621a99e8ba8df1a3b2b6198b63b591734833b5b6c14", + "bytes": 69872 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.015.woff2": { + "sha256": "430c76855fa40e4cfac397026e1657f9d83fecf8da4e678c4e7d881e9cc93226", + "bytes": 72444 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.016.woff2": { + "sha256": "cad04764d0de74cdba254742e41448c19bc7e2d61cf38fabe673101422f5328f", + "bytes": 72804 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.017.woff2": { + "sha256": "3e31f76a3c3f9f7756b8ce77786085443ab779e2c33a5d34869b4babae79ee94", + "bytes": 86244 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.018.woff2": { + "sha256": "1858328ccf0001845820e8f41d203bf541de12517a6cd76c1046fbe0ae20e35b", + "bytes": 74068 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.019.woff2": { + "sha256": "a9695df7d0f630087ffaf7acb400857d1c454278deed6cccfe56ea0a9907e689", + "bytes": 73004 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.020.woff2": { + "sha256": "a978f74c1514bf47acadd153f1195474488e5d491443035dca5909e23cb37c95", + "bytes": 68916 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.021.woff2": { + "sha256": "2a53d8dbeb411223231fa8e33e867124d670255a0406959e893cc863c39d8e4c", + "bytes": 72448 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.022.woff2": { + "sha256": "7ff25e8f638112edee68ddbe85138ec61ef1ba5f08e89411f071f5aa1fbfc997", + "bytes": 87112 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.023.woff2": { + "sha256": "ebedf9859c72acf354e9cc5f3149eda437f99280a8aa5a35be87066d2eaf1086", + "bytes": 72864 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.024.woff2": { + "sha256": "bc2726cdc0edecc2a96b03e2f94f5e00af5a01081c858ef9fa46ab78983d50c9", + "bytes": 63864 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.025.woff2": { + "sha256": "a33f30f3508c2bfbfa5fd297b6c8f40c6ae05a0fa9d8af0e0783eb790d49b55a", + "bytes": 77720 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.026.woff2": { + "sha256": "21c6509addfd8a0c531ab60e2c8d14a7e2b420265fee5b23c9df611b3cc9b406", + "bytes": 76120 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.027.woff2": { + "sha256": "481268addb3f191510f8aa5c05e669dbf9be593beb126fccae8bdf356711a4d5", + "bytes": 73024 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.028.woff2": { + "sha256": "e8efc55bffbc7e0bf8c06a1579f7533d0595c7b59b7c4c7648d4b7e6592028f0", + "bytes": 78984 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.029.woff2": { + "sha256": "e0c29dd2ebfb856cda11fbf9daaae0eb7be2d492d39711b2fba42c5c5dca7afc", + "bytes": 71432 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.030.woff2": { + "sha256": "bb389dc5d078b49632488d1b716089f7eb44f891f1b006e377783d7af1264e3f", + "bytes": 74120 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.031.woff2": { + "sha256": "4b19381c87c3eb0522d3a20c596f2d5e5fa642a3f72aa80bcf49aa03e23477b7", + "bytes": 81204 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.032.woff2": { + "sha256": "f239b50e237cc0cc4cb4fb09d7f244dec56ba170840f49d2baf3472614e6cb8c", + "bytes": 83748 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.033.woff2": { + "sha256": "ee9ba26a48e1176d3c4bef467ada2c60b51eb60b19cc24e321a8cfced2734914", + "bytes": 90592 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.034.woff2": { + "sha256": "1ab05d89f94c973326dbad67f9a9cbdb67743d5478621e3628a362bc48c13d91", + "bytes": 87712 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.035.woff2": { + "sha256": "72137abde1d35dc9de0f5a2e24ecff24933edf79bf7f3a6f30348f1b6ced84c6", + "bytes": 70604 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.036.woff2": { + "sha256": "73af48617c0973134591a76715c7c3f93572958447a8b1bebf618c076161c721", + "bytes": 76920 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.037.woff2": { + "sha256": "d591ebac02efb8ebee82563f11fe9c4498dc0f32a97f14ee38898d61464a477c", + "bytes": 81780 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.038.woff2": { + "sha256": "08fecf881a02efc446efb0bd7ebde12e00f8bb7cce9eb49902ce6c22d32a7411", + "bytes": 72816 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.039.woff2": { + "sha256": "c03818c1d458473e5711e53f996cd78b4c548d5a72bb297365ede950981f9f23", + "bytes": 78976 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.040.woff2": { + "sha256": "66e5e8ab7dd45320a131bca425cf260acdc8dd65d1f0be485edd281ff044c3ef", + "bytes": 75648 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.041.woff2": { + "sha256": "dfebb41e889e67f2d6deba6643ea0c6a7a1c670bdea76929750171f71c882cae", + "bytes": 78688 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.042.woff2": { + "sha256": "fad9d5c7930074da9cf1e4a4dcad63aff77e2479cf82d96ff472f364a90410bc", + "bytes": 74592 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.043.woff2": { + "sha256": "5b7ccdba68cb34c9d512316da6c99c5491da6d26d435906a067e6e0babcdb722", + "bytes": 64084 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.044.woff2": { + "sha256": "b3d166548f7165ac602c787927d31e8f27ef57a96aff31ecf47116f530b9c483", + "bytes": 51132 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.045.woff2": { + "sha256": "5d4126d5c5b5e164c178ace3c74d604642c9fd88f91d00da02fe6a9f2563affa", + "bytes": 29684 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.046.woff2": { + "sha256": "c8bdc4316a32ad85af013d5a3e20de0845bb39a288d2bcd237ad6ec16179669a", + "bytes": 83800 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.047.woff2": { + "sha256": "4eb17a5f2bf1ed0f9d4dc1bbab8784d8114936eee350e898f9dfb239353def34", + "bytes": 89808 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.048.woff2": { + "sha256": "86e700b331c83182e559dfea8d47d168ba7b549c3863893515042736b86a0603", + "bytes": 96196 + }, + "files/FluxerSansTC/FluxerSansTC-Thin.049.woff2": { + "sha256": "60f770c58177de531810c70b40235bb89b34d797e272dc357c7872844397c2b8", + "bytes": 7524 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.000.woff2": { + "sha256": "ae9631a169a5a576305c437e43c465d3130a8c24e044b0c77c3edc44aa787259", + "bytes": 49888 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.001.woff2": { + "sha256": "79a3b1d9209a65b55bb7096d34f38b0457e96fe3049cfbab19c7af57dbecbf81", + "bytes": 40696 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.002.woff2": { + "sha256": "79570afc3dc74f817ac9a88b6af1e0dffdc67ed2643f8ffdb11c8886a133d01e", + "bytes": 4504 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.003.woff2": { + "sha256": "d02ba826192419c45416674945c784aef34078df60ea542450a03af3bc4b5517", + "bytes": 95504 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.004.woff2": { + "sha256": "edc2d815286741fd4f82ecf4d3006f694a9a33168414ded6afeec3d3d9f42535", + "bytes": 51160 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.005.woff2": { + "sha256": "c9ec2c8f666fc8cdc2797c52128233df61ac9d09fb47b8404b9e52628da3a66c", + "bytes": 65236 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.006.woff2": { + "sha256": "0f94a21f1ab6a93d3ac1c28a811dc8374bb30e3d825ef34a63720ea4145e009d", + "bytes": 55396 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.007.woff2": { + "sha256": "799f31a9c4601c0ead2dbdf078025841f9786be628140db7414d1e6d9cbdbb8c", + "bytes": 68256 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.008.woff2": { + "sha256": "5fd37e845cf55c226811726f98df61db7e598bbe436dec65fdf80d31404f838d", + "bytes": 74948 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.009.woff2": { + "sha256": "5a2d2c977724355baa3bb9497a4ba0f9d3e57577dd130f79cc10cf517b92561f", + "bytes": 65800 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.010.woff2": { + "sha256": "7dfa8561cfd9b602d79b62c9f65cb341c96831aab397acd30f98c3dc6632cde1", + "bytes": 65816 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.011.woff2": { + "sha256": "e69d07eb429a06569c5f1cfe54187aa2bc5924a3be87f9e7814dbbd96c4c01e8", + "bytes": 72472 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.012.woff2": { + "sha256": "1fa2cbb5c7f24ca33c14b3bee71b522fd1144fa091ba7d71f55b73f48fe8d3a0", + "bytes": 79032 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.013.woff2": { + "sha256": "ed2c162d9e3648492e0aae9f76449cd7946ec34ece4565e44b028bcc132df49d", + "bytes": 61068 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.014.woff2": { + "sha256": "16c3454a354ed38d27898c3e62edbb2757ed4e3d0207fe4f609b643178c8f544", + "bytes": 71432 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.015.woff2": { + "sha256": "31f424b4b86ed83931c065e17b833c2ed856ddedae7ba29bdbcf7594214bf92b", + "bytes": 74472 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.016.woff2": { + "sha256": "ac5f871c8b87ef8ae5351fd280171f295ed61ac86825ddf2b9af982999107644", + "bytes": 74776 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.017.woff2": { + "sha256": "c6d30a881026a4d7c9317c537fb599d9b292e157dbf3ca430903da5cd2d77d89", + "bytes": 88288 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.018.woff2": { + "sha256": "56f4216e079bc3050307abd14e60b5d5a5abbe7013b4967a2b288639036c0192", + "bytes": 76316 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.019.woff2": { + "sha256": "d32b1632924332c0f991a2338264675e32e334745d75ccb1093e9d903495fee9", + "bytes": 76056 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.020.woff2": { + "sha256": "8f62a1e2888e1d796549139518a7628e4ce30b42a495d8ed3c52a9cfa97a8932", + "bytes": 70064 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.021.woff2": { + "sha256": "1998fa5d10775c01f8f0eb0a96c21c06414e2a7f113b97efc243752d0af2a911", + "bytes": 74904 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.022.woff2": { + "sha256": "ff9ea414cd85ee0f0418603b10b6df2f923f2ae5356467fa733c78363fceeb68", + "bytes": 89712 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.023.woff2": { + "sha256": "f584722f896d6436479ae769a8c64094c3819aa4ef29112078397aa4f2fcfc83", + "bytes": 74496 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.024.woff2": { + "sha256": "27228ab34d72ac976878acdb36f89c0984d5a570965e3c204567c58eaf67feba", + "bytes": 65664 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.025.woff2": { + "sha256": "d6cb0a22bfc334abc4730db5970e1c3d09203cd767c54543ab21185aeafdbbfd", + "bytes": 80308 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.026.woff2": { + "sha256": "c0dcef4e93d05981d17400d4b408885e126b14e2e602f27f9a7fbcfa77057efc", + "bytes": 77456 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.027.woff2": { + "sha256": "28c3f5ebaa87bee23ecfb84840fd98290dfaa23e2c2eb7c25ff8817b98c4142f", + "bytes": 74748 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.028.woff2": { + "sha256": "6f9a63a928ba2bd92f7f4cfc1452c3c45bce6fd8dc29605692c50b6a7f370955", + "bytes": 80516 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.029.woff2": { + "sha256": "6638af1c91a0089b0d37e9cdd1151e3373b3d3cb1a5908dd6004d3ecf7c3534b", + "bytes": 74444 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.030.woff2": { + "sha256": "c727a3b6f1505538f0bf662b315ef6e02f6846615b5a624bfa5e231890fe4042", + "bytes": 76204 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.031.woff2": { + "sha256": "92b4015cbce0d9407b6ff8c3d5579ea306d21a03e4c0f922c1654f3781289b43", + "bytes": 83704 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.032.woff2": { + "sha256": "7fbfeb351d0fcfbe837955cb0857a28af1dc62ee99ddcaa42207bb02fe1ad6a6", + "bytes": 86376 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.033.woff2": { + "sha256": "ec30eeca14c0af640cfbca594d89ee7f4deb400db0c160c9609a09d987d2ef6a", + "bytes": 94616 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.034.woff2": { + "sha256": "35005ad98a6e85e47b71357756379746a7fb512e58a7f7aeb67b61ef7b8d3baa", + "bytes": 92168 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.035.woff2": { + "sha256": "49da79b188d7fd470c6025dab3d99bc577bda45056693e3ce1f8e1ad34848061", + "bytes": 71920 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.036.woff2": { + "sha256": "9c2ef437b615cd9db856dd4901dc3ea70b4427a3c3a0386e42996d7216ea8ff2", + "bytes": 78416 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.037.woff2": { + "sha256": "874ef6c0c492293c5c90533b1d41aa7beef1bfdece6a747a8337bfad82a2139c", + "bytes": 83816 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.038.woff2": { + "sha256": "ba3effd8637106b74829494d3804fdcd142c8d9b7466e5bc2a2e95a62b397f0c", + "bytes": 75064 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.039.woff2": { + "sha256": "9b77e15b6954c30b6bcbb87a9f35ce2e8be7185c855dd48efaf703eb3b26ee4a", + "bytes": 80864 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.040.woff2": { + "sha256": "9eadf937a7e7aa5f76425cf08f2420db14475f9ada4b3c682b4e260498054216", + "bytes": 76836 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.041.woff2": { + "sha256": "2194af9866a8a5b70237bc16d742da09c69e6900d7e08751048491573b22982e", + "bytes": 79932 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.042.woff2": { + "sha256": "b424d5f587297674d94d06d23ff9f83b37bd4e9d3237c7eb054c15b3e9b14617", + "bytes": 76012 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.043.woff2": { + "sha256": "36094283c6a98da8f7d45142c1c8edb49bba595a7aed2f9a9e6d9a39d88217f7", + "bytes": 64920 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.044.woff2": { + "sha256": "d23f33df47a91d57b4275e834090ba02bd50c8dd33d289ec847748d973e44c1e", + "bytes": 52692 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.045.woff2": { + "sha256": "ea6680603d1dd8c92be47f2c4c91d1c487b176bf4a542a21d7c5e5ccf61f98ac", + "bytes": 31064 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.046.woff2": { + "sha256": "12129f45ace178891c5f10221b6114ff8d5ddb04d30aecb2403351c7d7501674", + "bytes": 86120 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.047.woff2": { + "sha256": "9b083c8d6ffdc66747871b12fde40a6743ff755f8ae178f7ae0f91beb6a93fe2", + "bytes": 92684 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.048.woff2": { + "sha256": "4e41d00d09e92ebf2587b270ae0c3fcb6585280b7deb2c5d97f008b65c57b551", + "bytes": 98860 + }, + "files/FluxerSansTC/FluxerSansTC-ExtraLight.049.woff2": { + "sha256": "4287e1d86e80fd95007558074a6634f4b69e62f41a33111f49d67fd0e1c25e4a", + "bytes": 7596 + }, + "files/FluxerSansTC/FluxerSansTC-Light.000.woff2": { + "sha256": "a32ba4d7796631393900b9ab1e2109454a0599ad6d00bfaa56c44833cf9c62a2", + "bytes": 50392 + }, + "files/FluxerSansTC/FluxerSansTC-Light.001.woff2": { + "sha256": "80c1d773b2c62539518f24974fd78c626db257418a477a212cd3ea7ebbb3f048", + "bytes": 40780 + }, + "files/FluxerSansTC/FluxerSansTC-Light.002.woff2": { + "sha256": "ee4850cc80377fd9f2703c83c2631c0ef2455cd83ceedeaef2758e05aef63dda", + "bytes": 4548 + }, + "files/FluxerSansTC/FluxerSansTC-Light.003.woff2": { + "sha256": "57837722eeee8a7ec195cad127959d24eeea4e18fa7ac7af957c5c3124744870", + "bytes": 95980 + }, + "files/FluxerSansTC/FluxerSansTC-Light.004.woff2": { + "sha256": "793c2825807e70c123d60bd9d34426e32729555f5dee8d3abf6f015174bbf589", + "bytes": 51204 + }, + "files/FluxerSansTC/FluxerSansTC-Light.005.woff2": { + "sha256": "2a030d484077219f0aa9096a6de07e4b7c7eea4a53797bad3c006f118c5b7117", + "bytes": 65432 + }, + "files/FluxerSansTC/FluxerSansTC-Light.006.woff2": { + "sha256": "d5a9d316bd4ddd3d80ca4d21939c9db93714dbfe70d604beefdc49e9d587e266", + "bytes": 55432 + }, + "files/FluxerSansTC/FluxerSansTC-Light.007.woff2": { + "sha256": "cc8451917b43c39269d150b7d47555271c06ad15f4f15e1347a0e797be091716", + "bytes": 68556 + }, + "files/FluxerSansTC/FluxerSansTC-Light.008.woff2": { + "sha256": "6b44ec46c65de501029deae10afa9bc90832061dd3edc75e87383bdf18a9d4f7", + "bytes": 74856 + }, + "files/FluxerSansTC/FluxerSansTC-Light.009.woff2": { + "sha256": "728220ff94f4b3249db82a75792efd2c637b544563151499e0856c28abd7d83e", + "bytes": 66104 + }, + "files/FluxerSansTC/FluxerSansTC-Light.010.woff2": { + "sha256": "69543d8887092fe42a5ad195030d257df05e561c4747e902a307cd4df72bdcc8", + "bytes": 65824 + }, + "files/FluxerSansTC/FluxerSansTC-Light.011.woff2": { + "sha256": "b92d7aa8217f779f0e161a7e56e50ca01e5c57efa7acccb1e31761f09c27f24c", + "bytes": 73136 + }, + "files/FluxerSansTC/FluxerSansTC-Light.012.woff2": { + "sha256": "8e3215b5e02eb2c4940ec3d8344d66b2a2eca9a5a556035b81678a33cb8d5683", + "bytes": 79424 + }, + "files/FluxerSansTC/FluxerSansTC-Light.013.woff2": { + "sha256": "3fe12a35c62ddc9ef9ca43c995b5608021fcec0d539f3eff84cb109295edd095", + "bytes": 61288 + }, + "files/FluxerSansTC/FluxerSansTC-Light.014.woff2": { + "sha256": "c25160f91e8bacd14f0a27a4465cc25ad3f74594a8db11ed23ffb6da9f3d9411", + "bytes": 71648 + }, + "files/FluxerSansTC/FluxerSansTC-Light.015.woff2": { + "sha256": "16603bbc9b363b11534084491976b153482b10315d983c2197279bcb67efc278", + "bytes": 75076 + }, + "files/FluxerSansTC/FluxerSansTC-Light.016.woff2": { + "sha256": "6547b830560fbb6bb29a6ce3f00b229cb187d7f26b2631d8aa82fee2a1cfe2fe", + "bytes": 75496 + }, + "files/FluxerSansTC/FluxerSansTC-Light.017.woff2": { + "sha256": "7b2f2077efceda7bcd94ee68f7e5744bef62fe2f070c48f4850e38ad44eef132", + "bytes": 89028 + }, + "files/FluxerSansTC/FluxerSansTC-Light.018.woff2": { + "sha256": "498589fde2c606c6414def9689872ae9e780774232a8eb689f49501b77b1247e", + "bytes": 75696 + }, + "files/FluxerSansTC/FluxerSansTC-Light.019.woff2": { + "sha256": "45a6d4aa3a9c7a257b94f022ea91580c5e23e1554b2a0a16e03facc0ae5e0335", + "bytes": 76716 + }, + "files/FluxerSansTC/FluxerSansTC-Light.020.woff2": { + "sha256": "478e3d4d9add13d886f30ab1c52c10116fbe7c07b8b150e5d8429fae7ca2ca23", + "bytes": 70176 + }, + "files/FluxerSansTC/FluxerSansTC-Light.021.woff2": { + "sha256": "2718bbf70b8765d8ea19d7d493aff4716395f7f1001a6a825da3c0e57199513a", + "bytes": 74840 + }, + "files/FluxerSansTC/FluxerSansTC-Light.022.woff2": { + "sha256": "28f621ad3620d758053c5a001444db91027bf43e409f0aba61521a22109e337c", + "bytes": 89552 + }, + "files/FluxerSansTC/FluxerSansTC-Light.023.woff2": { + "sha256": "28c821f32b11d6e1d007f67061fc8d6af5676d4d5c4f01558c0132e153f21ffc", + "bytes": 74692 + }, + "files/FluxerSansTC/FluxerSansTC-Light.024.woff2": { + "sha256": "9fd7d464a1b37894da31562db2c87394415dc155b3699c51bfb4729bf2f874fc", + "bytes": 65800 + }, + "files/FluxerSansTC/FluxerSansTC-Light.025.woff2": { + "sha256": "c4d1df63eefad77bc1c78046537c82457ef992d995369351efbdd261d506123b", + "bytes": 80848 + }, + "files/FluxerSansTC/FluxerSansTC-Light.026.woff2": { + "sha256": "3e56913c8980891e361cfd8beac35e1932fba55e2dd91f2c80e185b9b3a4eaf0", + "bytes": 77532 + }, + "files/FluxerSansTC/FluxerSansTC-Light.027.woff2": { + "sha256": "a097270fe745d6c8f35f9fd484bb4e671286ca356156c3bc278292beb502199b", + "bytes": 75208 + }, + "files/FluxerSansTC/FluxerSansTC-Light.028.woff2": { + "sha256": "bfbe051e75bb01bc74ae6e1895359753d09041b999836ac461809d09547b2e6c", + "bytes": 80816 + }, + "files/FluxerSansTC/FluxerSansTC-Light.029.woff2": { + "sha256": "e8b7b2fe2f301dca106e7d0f57ada425d7c234e780962ce305d4fa906dfaa1ef", + "bytes": 74324 + }, + "files/FluxerSansTC/FluxerSansTC-Light.030.woff2": { + "sha256": "ff75c71353c672536a330a5130d872ddd7eb2bcafa674ff410ab69e0418717cd", + "bytes": 76472 + }, + "files/FluxerSansTC/FluxerSansTC-Light.031.woff2": { + "sha256": "67f46e9f7936b4593e059109998634b1f1fdf93cb479195173045d2558bb510b", + "bytes": 84092 + }, + "files/FluxerSansTC/FluxerSansTC-Light.032.woff2": { + "sha256": "ac7d128a09afd059eb9850e49cf6d722f9924a905479e4e60cd90643dfeb7130", + "bytes": 86632 + }, + "files/FluxerSansTC/FluxerSansTC-Light.033.woff2": { + "sha256": "fb7463d02c6899447a8da6bc592bdf1b9645bc0b665aeca4a1c3e6e2d39cf4c7", + "bytes": 94936 + }, + "files/FluxerSansTC/FluxerSansTC-Light.034.woff2": { + "sha256": "e627f96e0275be605edb75559e7a99369ff205826fb1fcfce69d42633da9c98f", + "bytes": 92824 + }, + "files/FluxerSansTC/FluxerSansTC-Light.035.woff2": { + "sha256": "ce92c9f9b63ca42e9a8c4c170a4b8b629ca6e4721be8bb1d225a7907ade68078", + "bytes": 71960 + }, + "files/FluxerSansTC/FluxerSansTC-Light.036.woff2": { + "sha256": "8a8d48daf05894251807e60b4947088f097bf17f407601c01e3f2e114916db95", + "bytes": 78860 + }, + "files/FluxerSansTC/FluxerSansTC-Light.037.woff2": { + "sha256": "30d22377a167307275ce418f77ede213afcd042586d3b533276b23336547e98f", + "bytes": 84268 + }, + "files/FluxerSansTC/FluxerSansTC-Light.038.woff2": { + "sha256": "dd20411baa3f4d5571ee285ae4d26392eadfb8b50d18c2849b2c2027f50a1bc7", + "bytes": 75652 + }, + "files/FluxerSansTC/FluxerSansTC-Light.039.woff2": { + "sha256": "e519b9b57689ed8323fe65a406af4854beffa5fc4dc0c48c246b5c5fefe708d3", + "bytes": 81128 + }, + "files/FluxerSansTC/FluxerSansTC-Light.040.woff2": { + "sha256": "311d5a9ae45627742f523ce86ddb168c3d8795c1ce98b822386b68cb2f533155", + "bytes": 77360 + }, + "files/FluxerSansTC/FluxerSansTC-Light.041.woff2": { + "sha256": "1efe328602f668f28bc1eb424b05ac3f7671973a56917e79df94c4804b00317f", + "bytes": 80440 + }, + "files/FluxerSansTC/FluxerSansTC-Light.042.woff2": { + "sha256": "78e2c5dc5724001fd09d5393a3f86ffa54ba52fd116194603194cae1859e14e1", + "bytes": 76376 + }, + "files/FluxerSansTC/FluxerSansTC-Light.043.woff2": { + "sha256": "5a3db3f48fba8d36e2784108acb947707ba84d8c5402113a9f66340f50fc78d8", + "bytes": 65168 + }, + "files/FluxerSansTC/FluxerSansTC-Light.044.woff2": { + "sha256": "7c9ec1e0cc22606e2d4318b6b15d4e47abe0a68387437c20d899636352d8bd9b", + "bytes": 53108 + }, + "files/FluxerSansTC/FluxerSansTC-Light.045.woff2": { + "sha256": "7eb6e2b351ddfa28d9ebc5efe4abe3243fab8ceae25c48eff3a81295a9a67275", + "bytes": 31424 + }, + "files/FluxerSansTC/FluxerSansTC-Light.046.woff2": { + "sha256": "5b39ad77821c48e5a4d46d3b144c5e7b6b2d629a3fb14f25da1047b7ec963b2c", + "bytes": 86700 + }, + "files/FluxerSansTC/FluxerSansTC-Light.047.woff2": { + "sha256": "4e9b2a4b60c7456d40f8e2f5b7dac926480a3f758117d00bcc67a95d799fc140", + "bytes": 93208 + }, + "files/FluxerSansTC/FluxerSansTC-Light.048.woff2": { + "sha256": "14a3b52d789dbffc22e81a6e712d8e5d1b79698e1be78a9dfdecfc8084a472eb", + "bytes": 99624 + }, + "files/FluxerSansTC/FluxerSansTC-Light.049.woff2": { + "sha256": "bcd40d19cbe74f87dfa1a3d6d0e716c2f329033a55b9e627a9a633741354c2d1", + "bytes": 7520 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.000.woff2": { + "sha256": "1521d573330b77c0e6cc9f501451ea37c4dd0df57b2c5fea970a69a0ead70fe9", + "bytes": 48348 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.001.woff2": { + "sha256": "d0cff5dc3fea123c3f59834e28879ce326654576b3b563b6cb5871c91a84fd48", + "bytes": 37428 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.002.woff2": { + "sha256": "2f0a9751d08bc474d076cb45bf427d2e25154eb6192c6647981eb4ac23473d6f", + "bytes": 4464 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.003.woff2": { + "sha256": "2c51a9e87f3456d44aa1aa48793080358eb6e431ade7be4c3490b5300872c643", + "bytes": 96184 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.004.woff2": { + "sha256": "f26ced4b00b4eb6e5b461232bfdd15305486092b4a350bd0d4039a3164312d0e", + "bytes": 51144 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.005.woff2": { + "sha256": "409d38cce033c69e27a838b4c3f6fff6ec788eb662027b3c2fb9945aaa459559", + "bytes": 65476 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.006.woff2": { + "sha256": "739a5cbcd9766c9dcff3eeb7d3ec384a377bf09bc438a3cac9f5e2caed860d0a", + "bytes": 55708 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.007.woff2": { + "sha256": "2630fffb14f0603c58226d3ad7d05688195d6d589e96df531ab7d0fd32bf701c", + "bytes": 68764 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.008.woff2": { + "sha256": "61e7fbfcee5fff8f574d068866698f98b54008d3a69837feba9bb534c1915c57", + "bytes": 74192 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.009.woff2": { + "sha256": "e8c5f666c3f95552e21cd5b789a7685d20c8308cef50e51eb3c746f046661cdc", + "bytes": 66512 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.010.woff2": { + "sha256": "09f51474c2bfa1488397445ab4682d5a8a5662d839dfd4cf77f2dd2fc9a43909", + "bytes": 65704 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.011.woff2": { + "sha256": "802e4f1b3b40c48dd54b0ccdd575c086269a9c30b6e9ff7f1447952c634a5778", + "bytes": 72992 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.012.woff2": { + "sha256": "682832119a48d8607f6c36c372bbfdd45c546ecf114089dd504410df92d0133a", + "bytes": 79968 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.013.woff2": { + "sha256": "d1fc26bde74487a14413f5baf5510233635c06938a0fe101a0e65359ed0d44f8", + "bytes": 61296 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.014.woff2": { + "sha256": "82d088fff2a5e1dfd11c069b3634552e0ae27bdd839745b0aaafb542d5beb921", + "bytes": 71768 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.015.woff2": { + "sha256": "d4d31d7c17e4b9fb21d98afbbd68bf067c989138ce16599c44b181f00ce4126d", + "bytes": 74916 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.016.woff2": { + "sha256": "daf708c4d0c4ce0f1a8bf2807817d8a974ca219bde5736ea1e838094887818e0", + "bytes": 75720 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.017.woff2": { + "sha256": "e52ff27ec8450f44950d35f95f2baed81482533afd3547e90dc72501e43d8e62", + "bytes": 88456 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.018.woff2": { + "sha256": "24110696c839305ad82a89a327ab345aa0d27b2382e74d607a9e933b3c9268a7", + "bytes": 76000 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.019.woff2": { + "sha256": "d2b70766cfbca7575830e673b53f5c3545a9db0cbb7da005ae570283cedbddd7", + "bytes": 76812 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.020.woff2": { + "sha256": "155915a10103ba336e3aaed3aa0783d5c24f69c6d180689787c03372fb7f2568", + "bytes": 70024 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.021.woff2": { + "sha256": "149f56e41aa665c690082bc09e3fad4f84c169e5a6257113008bd4120980bbd3", + "bytes": 74972 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.022.woff2": { + "sha256": "336fb4addcc0af7f90b0add962ff0b28dfea65c84615c3e75c097e168bacc4ed", + "bytes": 88388 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.023.woff2": { + "sha256": "0418f13d6d865d4b545a26d65e387702b744434da02ce5ce6c824ff6f7c0a051", + "bytes": 74624 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.024.woff2": { + "sha256": "17de56663f74d900dd28ebecf9c0af313fa6ba41699656fb8eec25fadbba3539", + "bytes": 66040 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.025.woff2": { + "sha256": "1ac1aa35da96b4561f82e6305c37d8fd99d123082a8492eae91f5965afae603f", + "bytes": 81384 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.026.woff2": { + "sha256": "ac591567fd8d69f789b1df25bc3b895b0d51ef63c273db5c6dfd303ce9cf5ab2", + "bytes": 77832 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.027.woff2": { + "sha256": "ead9e13f42138d572f490116a568b5b41ed42b87aaee7d04424f35439914c81a", + "bytes": 74880 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.028.woff2": { + "sha256": "7a736d63d7489bbd35087b24cfda9636f34a0b100b79fa626ec3397dfdb77dad", + "bytes": 81032 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.029.woff2": { + "sha256": "0575f93d1befd161f06861fb3ee6651fa9fcd03d2bd05536cbe5b72b32274018", + "bytes": 73360 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.030.woff2": { + "sha256": "c74afa72451a7453b674fe0291648c4be90ebd0dc56e555ca7800ba39f162af8", + "bytes": 76396 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.031.woff2": { + "sha256": "53a0704a021774046ff230db7448c34abd9bedd576af0bf20e4cc4cca09c501d", + "bytes": 84108 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.032.woff2": { + "sha256": "00688d7d190be44d21339bf22bbd19ca8d1e039888367c39f0280054d5ee5412", + "bytes": 86504 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.033.woff2": { + "sha256": "9ab6d8518c6771341dbff4da0f86f4813b7390ae8cd1c324db5ec809d68c348b", + "bytes": 94816 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.034.woff2": { + "sha256": "cb73de07d9f4c07c6c2cf449c296ff112c30f0c57af5cb0dd38b2e93613ddb44", + "bytes": 92096 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.035.woff2": { + "sha256": "f8219ddf89543a2b1e09c1ee4a95803c99c3f61cf02c9534393c4504da04819c", + "bytes": 72276 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.036.woff2": { + "sha256": "afc03d0c30d0ce98ebcbb17d46a451b80462bfbfd7c1321ec7dd35247ca0595d", + "bytes": 78968 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.037.woff2": { + "sha256": "15c283f9e5245701181cf20e37b908ed62b72c1e23afbbb4b7e2a1de53f9cd09", + "bytes": 84532 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.038.woff2": { + "sha256": "bf5b04da8fec1ddf7205ef4748656c939e0c06d68b4c2d7c279dce46ddacf1a6", + "bytes": 75928 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.039.woff2": { + "sha256": "bf8ca9cd997cc5205cb8a09a71da813f8bb2747a68bf0b6ae94d22d4a955371b", + "bytes": 81404 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.040.woff2": { + "sha256": "3c4e732572dab03c95a84ffdb1726d3ba98901a66a629f40ab9d86af28c84a9f", + "bytes": 77364 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.041.woff2": { + "sha256": "b6dc8a0bc8da70b7de257b5000b8cd3dffc6218b47a9077d3cf3d6b717966eef", + "bytes": 80508 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.042.woff2": { + "sha256": "aa9fce37ae367808312f88a4193d457ebc7cd87457ed18ac07d10229cf393637", + "bytes": 76516 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.043.woff2": { + "sha256": "9fba8fab1972f65385a02592d20468404711eb23b41a10212afd931fe4b7493d", + "bytes": 65720 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.044.woff2": { + "sha256": "b62c412294b1d0e05bcce614f56ed818e1273362c7b036bb61c3792976486081", + "bytes": 49780 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.045.woff2": { + "sha256": "35e41227f01df76fdea7869c93675b29c47b5745e41a85ba1524e4b8db01ec08", + "bytes": 30692 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.046.woff2": { + "sha256": "4a73077bb0856b3187a84a862eaaa8fd0e9594b403ec8c20ecc1b9d0a02e08a9", + "bytes": 86772 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.047.woff2": { + "sha256": "45cb492283697bfe72dec4411217ad1f9c0546609afb7da04d318335d55c3db7", + "bytes": 93688 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.048.woff2": { + "sha256": "577e202a961294bbacbd21c18c743f80c5f80c8a8286e43ea65b6cffb5e0e982", + "bytes": 99432 + }, + "files/FluxerSansTC/FluxerSansTC-Regular.049.woff2": { + "sha256": "6dd007059451db1333f0efdcffcb0a48f07aa659858354ac250a43c90c8bc5a8", + "bytes": 7536 + }, + "files/FluxerSansTC/FluxerSansTC-Text.000.woff2": { + "sha256": "fbb597058707a6c742defdbb8ac9a751f184d102559229e67509556b8dd12c2c", + "bytes": 51548 + }, + "files/FluxerSansTC/FluxerSansTC-Text.001.woff2": { + "sha256": "9aab851605f54350e717805e80810c64787d3b3c7f376bc7930ab8112ac236b7", + "bytes": 43344 + }, + "files/FluxerSansTC/FluxerSansTC-Text.002.woff2": { + "sha256": "2a6439303b1b166f32ace3f40dcb6f70a86280e2e8098654f9991a2753b7da0b", + "bytes": 4488 + }, + "files/FluxerSansTC/FluxerSansTC-Text.003.woff2": { + "sha256": "e3dc48291fa7f1eb14e70bc4348ad88556d4047261505276d48292c6eb33ca53", + "bytes": 97996 + }, + "files/FluxerSansTC/FluxerSansTC-Text.004.woff2": { + "sha256": "ddc65d61dd454954799ba2728960dfa935541b66cd9815800ead5c9d547a30a0", + "bytes": 52312 + }, + "files/FluxerSansTC/FluxerSansTC-Text.005.woff2": { + "sha256": "0965a6b75ff1c102e1d927c16b632023c024970ef643f6a30fca7179a0035115", + "bytes": 66508 + }, + "files/FluxerSansTC/FluxerSansTC-Text.006.woff2": { + "sha256": "217456b2028fd66c1b29a8a779f5b356223eef64ac028e6f6314c73e9c51ac3e", + "bytes": 56520 + }, + "files/FluxerSansTC/FluxerSansTC-Text.007.woff2": { + "sha256": "bbc9d2f35d5577f76d7c7d92da92a321f0c6665ef4d39bc3fd9c1f79d4b338f1", + "bytes": 69856 + }, + "files/FluxerSansTC/FluxerSansTC-Text.008.woff2": { + "sha256": "058924170c730e034d0707ef27688c7cafb93f089387103bd2fd3b1da5b3ec27", + "bytes": 76748 + }, + "files/FluxerSansTC/FluxerSansTC-Text.009.woff2": { + "sha256": "a4f38d5098a1c809ec7d64d8706e9ca9ae3401d36068d897c9049cf253cde229", + "bytes": 67560 + }, + "files/FluxerSansTC/FluxerSansTC-Text.010.woff2": { + "sha256": "90d249048b6217ac330d8378abd637955e73cc192894e650f7b96bf1ff060d27", + "bytes": 66932 + }, + "files/FluxerSansTC/FluxerSansTC-Text.011.woff2": { + "sha256": "7d18d1a3582d26909728fedf7e5908a8864f7a0a15cf89687bd95272f1021d0f", + "bytes": 74688 + }, + "files/FluxerSansTC/FluxerSansTC-Text.012.woff2": { + "sha256": "62b1ecd21b4be2c61d264849cbe4ec52b199ce6097d03c234b019ea7e4e1027f", + "bytes": 80944 + }, + "files/FluxerSansTC/FluxerSansTC-Text.013.woff2": { + "sha256": "51765c8f43532395a20148cab1ebd83b2e0ee8923f3f79b69173b1701cc1fb72", + "bytes": 62460 + }, + "files/FluxerSansTC/FluxerSansTC-Text.014.woff2": { + "sha256": "2211c4e90b1c527d9e46e5c5c718ad0bcf9a7f299eb0633d7d3d4e42b4c73014", + "bytes": 73392 + }, + "files/FluxerSansTC/FluxerSansTC-Text.015.woff2": { + "sha256": "5f4217f6782aea91845d74db997f6e939e14d2c8dac5afa95c7db9cd4ceb929a", + "bytes": 76680 + }, + "files/FluxerSansTC/FluxerSansTC-Text.016.woff2": { + "sha256": "4bbfbc342bb6a5f0ef28ee3d56d7c6b29cab49701131bc1d6a465bfcbb960f71", + "bytes": 76892 + }, + "files/FluxerSansTC/FluxerSansTC-Text.017.woff2": { + "sha256": "77cca949c8191113eb90358cd3fbe575a642972fb8e73dbf5efc60845dc9830d", + "bytes": 90956 + }, + "files/FluxerSansTC/FluxerSansTC-Text.018.woff2": { + "sha256": "1425a0bb2c2c631d50d950ad8e834b4263041f722ef00e35b0b1f2373c01ff97", + "bytes": 77332 + }, + "files/FluxerSansTC/FluxerSansTC-Text.019.woff2": { + "sha256": "62ee888f924fcab6df2aabb1e2d284a15a43c32f9e2f3c65dc4ded96dbb31a65", + "bytes": 78224 + }, + "files/FluxerSansTC/FluxerSansTC-Text.020.woff2": { + "sha256": "aac63caa3d5ae9d6d45cbd01ed49110a7ab78d66d721f51582b360acc8764681", + "bytes": 71044 + }, + "files/FluxerSansTC/FluxerSansTC-Text.021.woff2": { + "sha256": "c3268c10736ba3d833cf31e666a6c6edaa436424317f4e389f516c3c55a10e1a", + "bytes": 77152 + }, + "files/FluxerSansTC/FluxerSansTC-Text.022.woff2": { + "sha256": "3f3ae09faef14efee7189be84091bbfadd03514efbc1cbc22f7202b4d919a4fd", + "bytes": 92084 + }, + "files/FluxerSansTC/FluxerSansTC-Text.023.woff2": { + "sha256": "a9c928dc9f62c4ca4f099da34104e0e6a292b3055dc5123d6202136f1e85467a", + "bytes": 76624 + }, + "files/FluxerSansTC/FluxerSansTC-Text.024.woff2": { + "sha256": "fccece79f2ecfbde3c025b203fe084097648fd134600d0311feed182fc6c40dd", + "bytes": 67640 + }, + "files/FluxerSansTC/FluxerSansTC-Text.025.woff2": { + "sha256": "d82c20610a6eedb8ba80d03c41106a163d32a2f8f4bee89196d6bd30f12126c5", + "bytes": 83104 + }, + "files/FluxerSansTC/FluxerSansTC-Text.026.woff2": { + "sha256": "b0ee5f32fe39761562878ad47b59c33c96a1053ca7d873fcfceb4a665c861972", + "bytes": 79424 + }, + "files/FluxerSansTC/FluxerSansTC-Text.027.woff2": { + "sha256": "eec7fda590d3995b2623e95676fedee9e146ca84a33c9d6ce647a7a51b49fe36", + "bytes": 76384 + }, + "files/FluxerSansTC/FluxerSansTC-Text.028.woff2": { + "sha256": "8d70e5323d50fd5aa653e2a5da4ee2d57d5ceff2851299300da091f77d581131", + "bytes": 82524 + }, + "files/FluxerSansTC/FluxerSansTC-Text.029.woff2": { + "sha256": "294fa52d0f7f2691c9dccf1efbee873d32e31e82c90c4de949e0d158ed3c3109", + "bytes": 75444 + }, + "files/FluxerSansTC/FluxerSansTC-Text.030.woff2": { + "sha256": "05083d49d471d57b79601856eecf30eaf55e5ec5eb46ef87ebdf3e41ad4489f0", + "bytes": 79924 + }, + "files/FluxerSansTC/FluxerSansTC-Text.031.woff2": { + "sha256": "85044ec7580460518ac52cc301781470234cecbbcc17ac343309ba524b6d9b82", + "bytes": 86476 + }, + "files/FluxerSansTC/FluxerSansTC-Text.032.woff2": { + "sha256": "4a2b09986f1b87d99d9842d68d59a320eef0bb45907ec02e17553d2853e7b64d", + "bytes": 88376 + }, + "files/FluxerSansTC/FluxerSansTC-Text.033.woff2": { + "sha256": "d4ee0c7934ce5a1601858a87fdafc99657a4083b37927c33de367b9dccf4ef49", + "bytes": 97156 + }, + "files/FluxerSansTC/FluxerSansTC-Text.034.woff2": { + "sha256": "006d9ef836df8de935189ff72a3962db522e0f25368a36fd38f836b9e0b6ec3e", + "bytes": 96196 + }, + "files/FluxerSansTC/FluxerSansTC-Text.035.woff2": { + "sha256": "b4faaf3ab142a8c2669b3fbd801d0e2bb3fb7ae94edd5ef5062036ec087b8c55", + "bytes": 73644 + }, + "files/FluxerSansTC/FluxerSansTC-Text.036.woff2": { + "sha256": "2f9a60800625a114c5135010d35a9a5f9bc3fa550cce810a43b750eece669c6f", + "bytes": 80592 + }, + "files/FluxerSansTC/FluxerSansTC-Text.037.woff2": { + "sha256": "6cebca84c05818e6c81417754a1458c9c222ba9b6c893ba1b348ba0347dee2b0", + "bytes": 86168 + }, + "files/FluxerSansTC/FluxerSansTC-Text.038.woff2": { + "sha256": "57b20f87500718b186c119b02ea72a4be7745ebe32842512070065b5cfd4e44e", + "bytes": 77648 + }, + "files/FluxerSansTC/FluxerSansTC-Text.039.woff2": { + "sha256": "2dec5b391091e21f27029ee97e068284eba9b7d314458f29d8122f68d3200b62", + "bytes": 82972 + }, + "files/FluxerSansTC/FluxerSansTC-Text.040.woff2": { + "sha256": "31e118cc76c7188db0f6966a9e22f1e7f632c35553413ea7f787a59d14a78702", + "bytes": 78824 + }, + "files/FluxerSansTC/FluxerSansTC-Text.041.woff2": { + "sha256": "22c5e673a273643d5cdf6ebca628f9b981f3ba1dbb82c23e54564fb0f9a4df8b", + "bytes": 81896 + }, + "files/FluxerSansTC/FluxerSansTC-Text.042.woff2": { + "sha256": "bc3a12d47a43aec4171af95c27d4ed1433ac82befc8b677c82a4aa14fdf6b70a", + "bytes": 77856 + }, + "files/FluxerSansTC/FluxerSansTC-Text.043.woff2": { + "sha256": "5b1cfe4d045d79a6f62f403323302451184c225c0073ba989a298869e716bbdf", + "bytes": 66376 + }, + "files/FluxerSansTC/FluxerSansTC-Text.044.woff2": { + "sha256": "f0457545cf718b864a01c68405a0583246fc9d97917b75fc26d558f1c754ecf5", + "bytes": 55772 + }, + "files/FluxerSansTC/FluxerSansTC-Text.045.woff2": { + "sha256": "f35a25fcf93a01fdcc0dcda2aea8446060b6e300bbff5160a64c541ec1f4da2f", + "bytes": 31556 + }, + "files/FluxerSansTC/FluxerSansTC-Text.046.woff2": { + "sha256": "28e9d9c2bc13e37f134b0650be6ab9d662a0e362b4d3511d9dd8d8314d52df65", + "bytes": 88856 + }, + "files/FluxerSansTC/FluxerSansTC-Text.047.woff2": { + "sha256": "7a9f5ffd895d8202a71e1b1367744df5b561033d57e5cf7ec448bf12bd4bb687", + "bytes": 95356 + }, + "files/FluxerSansTC/FluxerSansTC-Text.048.woff2": { + "sha256": "aef39cfaaf895226943342b678b6e0c9a3d90dfc4558bcd5acc81efda7b5b7df", + "bytes": 101276 + }, + "files/FluxerSansTC/FluxerSansTC-Text.049.woff2": { + "sha256": "423328b9d74fcb9960670b56085eaf0abf17a0635fe555d65c5b656767c85fea", + "bytes": 7652 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.000.woff2": { + "sha256": "459f30cfe9b98d9cc3e42768d58a3f4ea15f2fe12a7469a1f5a118ac269f57d3", + "bytes": 50504 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.001.woff2": { + "sha256": "a2c6176d607040d6719283c4ce32e52e7e4c11fdaf6f7ec744e8724ede3844d1", + "bytes": 40908 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.002.woff2": { + "sha256": "6a9438bc2950de4defe6772360404f9c5143954d720bb8898c654c8339c1cca5", + "bytes": 4460 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.003.woff2": { + "sha256": "486b9d3d6346ab05d513653833732d70326e47ede7f789eccbdb8e86c7dcb9a0", + "bytes": 98832 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.004.woff2": { + "sha256": "843ff0d41f5e3fd55465e3e7e1326899dc95663e088c610ad7017ad6363af80b", + "bytes": 52284 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.005.woff2": { + "sha256": "a8736fc98e24a53f29c030993d2b7988b1f20be7ac22b18b3d755240bca42db1", + "bytes": 66812 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.006.woff2": { + "sha256": "0a06121bb26a11909aec899a19bba6d76271cd8cc4f9aa31c82fc3c662126794", + "bytes": 56736 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.007.woff2": { + "sha256": "744cafb79040e1d51911a8180f3928c359a0dbfb641cafe30326f524702c786c", + "bytes": 70240 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.008.woff2": { + "sha256": "b3aef702a23914fbaa4c77a08e52bc89071cf81be1b9942b2b5a5231638130d5", + "bytes": 77468 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.009.woff2": { + "sha256": "463f9dc43d56b6a9e502283036b8689205e7f3e6bf6f3312207a9b9bce0142bb", + "bytes": 67884 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.010.woff2": { + "sha256": "1dfd9bfaef1546d43aca3b729899465e5ff5e291013f152286d75081f2daa2b9", + "bytes": 67192 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.011.woff2": { + "sha256": "cb21550ffc70b8841eed57437f9521ba49bbdf48f663902ff73bd3225f47669e", + "bytes": 75308 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.012.woff2": { + "sha256": "990d4ef807802d5461c3e485e8fb2ca28bbb32978bc51c9dbcc597fbf50c78a5", + "bytes": 81064 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.013.woff2": { + "sha256": "94c91174ef50c1cc322f031b740027409b59c93a367d741bed06b7cfd6ee574a", + "bytes": 62692 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.014.woff2": { + "sha256": "6e10e255c6f698655a8b010ae7bd119967c608fa54c065ef4333e3d87b09c839", + "bytes": 73584 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.015.woff2": { + "sha256": "090f2abdabef611b0fb145ca301b7bd04a9c440a59dcccac7ece94dca6ac770e", + "bytes": 77136 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.016.woff2": { + "sha256": "714f8118d1dc5aae571e1f27bb7d67688d06c3c5eb3c0c9e2869e216b1be02da", + "bytes": 77248 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.017.woff2": { + "sha256": "c6043625ff9a558687f1f83e1a59ed6c8975aea32597afb02ac87af780e2cef9", + "bytes": 91856 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.018.woff2": { + "sha256": "d0d8bbad20060a41174cbcadc63b16655e11a6fac493906887e86c5fb7e00a37", + "bytes": 77748 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.019.woff2": { + "sha256": "fc4673a0f8a4570e8eb591b695fea424162f63087880677de723faa642d740d8", + "bytes": 78892 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.020.woff2": { + "sha256": "dc308311c8546c5ea99d0e8c1dac8bbc5ed284dce675a24fc63f3b40ff98ed1c", + "bytes": 71452 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.021.woff2": { + "sha256": "63d53c5b6a089cac4bd92d7c8578c138ec68e61fb551418a14c6b2fd9e05e052", + "bytes": 78176 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.022.woff2": { + "sha256": "2c4174915b752e6485f9af915b347191044a71f1e3ae5ed3556140cdfcce856f", + "bytes": 92612 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.023.woff2": { + "sha256": "fd41a1fb76d2c1650f3b52e7097329832df69f28a64fa9963a575ac6447da474", + "bytes": 76804 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.024.woff2": { + "sha256": "1ea508777aba5c732ffeb7503aafbe5ebe107d77f8fe161d36e5f39851e3e653", + "bytes": 67704 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.025.woff2": { + "sha256": "884112c449b9ad8ada2df41254fff7c6ba712c7864acbe76d6207a6cf6a6f4e0", + "bytes": 84372 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.026.woff2": { + "sha256": "bd505f77746938c8b58477184529bda4540d97c0cd2c3df40f3cfdd557b1a1c4", + "bytes": 80012 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.027.woff2": { + "sha256": "482130a589b0ef58edf35c10be47808d78ea022f77cbb66bba2c19a6e1e82b29", + "bytes": 76924 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.028.woff2": { + "sha256": "e21f35ddd9b9c8b81881e058bda26701dc7436ec84b523393da385eef754aefb", + "bytes": 82900 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.029.woff2": { + "sha256": "62423d2ab8bacc2dd83fc8c29d5fbe23efdf92a8b7ac5bf925dafdcb0254d2f9", + "bytes": 75772 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.030.woff2": { + "sha256": "0661a62d07e4cea37529d5b5148b4928b8d2f17c77f666d85a3b573c64e65b4a", + "bytes": 80700 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.031.woff2": { + "sha256": "a4e339462d8a271636e4f498bf91a1f9bcd72c8f4aaa517d70765bbc02130565", + "bytes": 87300 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.032.woff2": { + "sha256": "ae986f17e4cd79775a55546f62ce151dbaf789f0a8c193860162931245c484a0", + "bytes": 89420 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.033.woff2": { + "sha256": "c7985da54220faf86ad962a70c3c7e9ebc87465b45fa401d6ba4294eecefbca2", + "bytes": 97872 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.034.woff2": { + "sha256": "ef5f6288121ac773cd632ea54c270995aeb83e6d657bc50e72dfaa33698ace53", + "bytes": 97336 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.035.woff2": { + "sha256": "fe68129ad66491d3f5d26f0878624bd8eaadf6255a42079c377daa78eed035e2", + "bytes": 74016 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.036.woff2": { + "sha256": "3b3fc9806aa80d4f85fbaf2ad11d62df2cd08b59174f2a49f9b2d2d78f66cf21", + "bytes": 81268 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.037.woff2": { + "sha256": "2b2e90265f580007655f2910d0a81be63572342f3f60f922275424ca83ae9beb", + "bytes": 87056 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.038.woff2": { + "sha256": "4193cc3c8a685c6ef9b1a281ee65fc05eaf318ca4e3cc7511cb598b10aaabb60", + "bytes": 77996 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.039.woff2": { + "sha256": "24372bd1d06fa0b8898fcf8d11075f08607ac5d48644ad4e5375153e0ac32e6c", + "bytes": 83720 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.040.woff2": { + "sha256": "6744622a270461a81a1ee71a1c3eb68e52b8bfd487207496e81ace49fc0901ea", + "bytes": 79460 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.041.woff2": { + "sha256": "6e53cecd0ca10755e4bf56d9188c821dcf1b050f2df147efcae4c39c4c7fa184", + "bytes": 82516 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.042.woff2": { + "sha256": "8c8b13c90ba30d58dca3da72a25ff2970c5975453d56d83d59e701caa400681e", + "bytes": 78480 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.043.woff2": { + "sha256": "e685986e9006960fc6d8fd0df3243e8282d1381313a1849c7546511fed20d3e8", + "bytes": 66620 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.044.woff2": { + "sha256": "33c3aac75ce5ed465e01815c748a7c1e8d751ff795cb310a1bbdc2441b2836e1", + "bytes": 54096 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.045.woff2": { + "sha256": "c62eb32b3a108b2fc2e6e5f84d998c5c6c0d2c41cb1dc017e17e6370ecf53be5", + "bytes": 31516 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.046.woff2": { + "sha256": "65ab2eafce4126bc088d2b067f69a58f690cae7288d039056518142db8c04edb", + "bytes": 89436 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.047.woff2": { + "sha256": "9357fd7658e8271910b96ba91a481933ea95c2e9263d76b39faab76236b5067b", + "bytes": 96024 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.048.woff2": { + "sha256": "5169c441b714edf9be1e9ddb20874bd06753cc6ebbab8088bd7ca7b8daa5885d", + "bytes": 102720 + }, + "files/FluxerSansTC/FluxerSansTC-Medium.049.woff2": { + "sha256": "859a042ba72035e694b603a15add08313c712e3b64e8cca94e4a66f8d8542296", + "bytes": 7564 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.000.woff2": { + "sha256": "c4b320bd60fbbce46cb7927cbe55a963f3f94fa0b94194fd69d2db7b8b246513", + "bytes": 50556 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.001.woff2": { + "sha256": "4b608da188df1b72698dd5a9bf6bf88bf7d49b8dd19ddfabe59a5d987e9746f5", + "bytes": 40960 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.002.woff2": { + "sha256": "104fc94d7afca1c95091906e6d17086e74070096e8167057216e8599ee2b6f45", + "bytes": 4472 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.003.woff2": { + "sha256": "4bd3886db1e1d1dcd00777c784a7ee49b2a819b2dffb2b4f64a965e897254f8e", + "bytes": 99672 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.004.woff2": { + "sha256": "67a91af31e2f8066344219dcf1e89ac96598379a4ab703127c824e2d0c4c0b5e", + "bytes": 52904 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.005.woff2": { + "sha256": "1c49d1a18d9ea28e2f11a64098423961459655ae3086d65fb8be45da3e287754", + "bytes": 67380 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.006.woff2": { + "sha256": "b55404d92b02baccd77e14963596d026168bae11ed20b8e19470ac32cb940f9a", + "bytes": 57152 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.007.woff2": { + "sha256": "f5a6c68a018d3d92e373bbae384ab74e2bac7a5010e61942301121a6b8fd0b6e", + "bytes": 70940 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.008.woff2": { + "sha256": "ada8c93057d4179b0420192303de952961d7b12afbb7ebf710ef167cc520e77e", + "bytes": 77900 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.009.woff2": { + "sha256": "81e08f81a25f8106ba1746ae37d91e401425dfc97d9f1cc535b2613c13e093c8", + "bytes": 68288 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.010.woff2": { + "sha256": "04d275e92fd10216c3fca09fc1e2d1fe9619348037e36f700d009505e24f2e2c", + "bytes": 67868 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.011.woff2": { + "sha256": "e470f87fce270a8582cdf9deb2c2b5fe9bad8f160f60e48ac66c879089a369f6", + "bytes": 76348 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.012.woff2": { + "sha256": "ebb7fb3b1f56e828b8f3cd6c11512843b2fe5bb4a8bef54616723bf73155016d", + "bytes": 81444 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.013.woff2": { + "sha256": "45ca325d401ee9ba34442a32e74b7214fcdc2343e25365c6cb823abc01c0162d", + "bytes": 63364 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.014.woff2": { + "sha256": "275318b4f624b97afbb1a8ec52469cfc3b6b1b59d3f2b548e97dad48ca81b650", + "bytes": 74288 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.015.woff2": { + "sha256": "1272cc38a3e43705c1de4c55aa02b7b5a7a9dbb777df560c2a4a48e5825bd216", + "bytes": 77752 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.016.woff2": { + "sha256": "7474710732aa9eb5eef20eb56b13ba504a6cce327d3a0287bff588132bb357ce", + "bytes": 78536 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.017.woff2": { + "sha256": "3e47a088d3c5ff12555753e4db7f6e80bf5d7197fbc06b67faaae52840702701", + "bytes": 92856 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.018.woff2": { + "sha256": "42261787eb625df32df6a7c80ea5207d6f0f4a8b9efb51bb2a9c568a52842865", + "bytes": 78464 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.019.woff2": { + "sha256": "40c0816fd361e50b7740861902aa0ee1e62b8d143d010cbb9367f324ccb69f41", + "bytes": 79464 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.020.woff2": { + "sha256": "5d77b55c990bb8f9a618a9a5e30a1ecd2a2ffa47f6af2fe36aceb8771634f4d8", + "bytes": 71976 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.021.woff2": { + "sha256": "86f44edb7f2e4f2b3518aa48441f87de670f05fd556eaa2c44269322a4436ea3", + "bytes": 79508 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.022.woff2": { + "sha256": "5be8b90851e9693131b9635d2867af5b38211b47ce54b4cfb393e10eab56b725", + "bytes": 94636 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.023.woff2": { + "sha256": "1f927a9f61ff138752faad0ea73a47474713617e5e3f115468a678387a821b81", + "bytes": 77740 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.024.woff2": { + "sha256": "0a04f10ead8c9c46a48b457f85b2c30a23fd648121974bb10ace0d207128e492", + "bytes": 68304 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.025.woff2": { + "sha256": "f915da26c5ce65492184ba3163f1715eadb638f59a8ef04d8b33535a80bb124c", + "bytes": 85364 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.026.woff2": { + "sha256": "1b083129a6621904e8bf41103c857a7b11c73caada5ead3ed9ecc03d78c8d782", + "bytes": 80568 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.027.woff2": { + "sha256": "d1c2957fe7065cb51e3bfa15b448a72085ce41386320dfed8ebe4bbe64baf10b", + "bytes": 77948 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.028.woff2": { + "sha256": "2215a90de31ad8a79dbfecf9f6c1192098fc440683434ecd1c4bca2cb18a0799", + "bytes": 83508 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.029.woff2": { + "sha256": "dda4cac50a0997694db6cfc20728724e927c064ded64a47f59c3bbdeb359b16e", + "bytes": 76520 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.030.woff2": { + "sha256": "da0e92b8a270829a462a3aa247d5b1826cb4f2f6276428c96b77a0a6e51db5f1", + "bytes": 81448 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.031.woff2": { + "sha256": "4e6a3834109f9c21be2176b3a18da806e1d2047c8595fd8503d0eb9b385186dd", + "bytes": 87928 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.032.woff2": { + "sha256": "39a1a41d41d89433744fd530504dd82d5b46e62647bd2575c8fd939173dc9a0c", + "bytes": 90624 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.033.woff2": { + "sha256": "2bc02baaf1e13ba1e9c638785605e8abec218411b34419b8fc173fdcf668d638", + "bytes": 98320 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.034.woff2": { + "sha256": "119ab539a6a8c152923bdc2ae0d6bc117ba78d6614b17b9f0a64777129309549", + "bytes": 98464 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.035.woff2": { + "sha256": "aa177c3831167e072d709ef769c93da57fc7b3a2e6cec6529bc09474eecc8bca", + "bytes": 74764 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.036.woff2": { + "sha256": "fd40d2a68265d0eef5831f1ff093f8e1fcde90c733893bf9e1850e604502a03c", + "bytes": 82432 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.037.woff2": { + "sha256": "893b2ac14fdce681fd1fd4db039ea92acae78ce4c1616e776b96b5d6b87e4523", + "bytes": 87760 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.038.woff2": { + "sha256": "565492d605005d4da7512e9943c0d898498d00cedd1f3166d9b3e8de2b4bd95b", + "bytes": 78808 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.039.woff2": { + "sha256": "678bd0433f6df4837e5d8f9361c25eabd04a6a8ca51512a5c7cc48231a7c45ed", + "bytes": 84624 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.040.woff2": { + "sha256": "debde6b3c8d289f77d7c6d83ef029b080bb72719a16f1fb09626fbfd3241e497", + "bytes": 80212 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.041.woff2": { + "sha256": "b41128e713af0aabc124a825015c55355c0bd80fc529ec1414294d9d96f6efdf", + "bytes": 83276 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.042.woff2": { + "sha256": "97cd10ea93f27adde7e3c9ba2ceb0e844fb72eee0fbbf2c8b3b696f10f6e4a4b", + "bytes": 79188 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.043.woff2": { + "sha256": "a144f3acb488105977340e5f07e2a214ae6a0aad1a922db5adf89cf4bc540112", + "bytes": 67276 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.044.woff2": { + "sha256": "59f8b4e17c8f612897928daa3cacb48bfadf991f58a6bb1232704ca56bf6a82f", + "bytes": 54316 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.045.woff2": { + "sha256": "abd19ce8d145806456fea6db8af5b2ab2347f7472c4e482aedcbbfe0e9c137a0", + "bytes": 31404 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.046.woff2": { + "sha256": "31f7973da9e7747de296bf6ec5b9356bf49a8293cfb5fdde81ae056f733a6506", + "bytes": 90412 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.047.woff2": { + "sha256": "7754ba7262d08e82f4f64384b1d159dcd7940975f59c4dff24a6780ea5dc5db8", + "bytes": 97212 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.048.woff2": { + "sha256": "4bbd5a039595d3dc36b57db28e6dc8187cb60cbef1d99868ebc1fd7a038ce12d", + "bytes": 103804 + }, + "files/FluxerSansTC/FluxerSansTC-SemiBold.049.woff2": { + "sha256": "f60ed7a52cf0ac2406ca48304e5d1942b97ea41193b16a96b3f6f5afb9ed073e", + "bytes": 7612 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.000.woff2": { + "sha256": "673c56c0652e5c6ef76eeda4e4843b435100c9bf48b71abce1deb8777fed7a35", + "bytes": 47516 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.001.woff2": { + "sha256": "abfe6f873599d4b419ff868597f50b43f9ce14e828b08646bffe48c757658019", + "bytes": 39720 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.002.woff2": { + "sha256": "c0acec1048b46d0312aef4f0a0bca38cde38cef2758e34327dbf8db4c7c50eab", + "bytes": 4456 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.003.woff2": { + "sha256": "e0b735f1a1846ba07e231194abda4b00736ad9e824a9e764c0eea58fdbd8ff81", + "bytes": 99804 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.004.woff2": { + "sha256": "35f149b8fec13672cb3cee641b0c8161d64b6c8155b656dc8de84ca372bd80b9", + "bytes": 52764 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.005.woff2": { + "sha256": "836ce9af0f4afaa2145a9c97c79237895d17ee69436303096c3b570e613fc8fa", + "bytes": 67092 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.006.woff2": { + "sha256": "aa2eafb84cefa660a629c7032e22543a1e55d34a30933bfd573a5fbc04cd2d9e", + "bytes": 57220 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.007.woff2": { + "sha256": "c37c443e8b1bfc9a389ddddffb70cb326662cc3f26bb0d415412636d14244322", + "bytes": 71084 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.008.woff2": { + "sha256": "d12539e23a86f70f54742d5453680302d50e356a9ed57a0ea810ada608c33c4d", + "bytes": 76920 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.009.woff2": { + "sha256": "3fc8f7f1e1d4fac17632d579daac34fa321475c4cab0dd405b1809678d48d1b7", + "bytes": 68116 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.010.woff2": { + "sha256": "0c1176d829053cecf0d82751ae6ba1c8c29b41ba36beacf3bc4f2fb0826af42b", + "bytes": 67308 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.011.woff2": { + "sha256": "f71958fc1bff2b8f6714f0743d92cf3b34914d53dbd096829e2b181af81ee336", + "bytes": 76288 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.012.woff2": { + "sha256": "319d7feb43a7d696d345f31308614be62d3ef4d28b23308051dddb882d14cf7a", + "bytes": 81100 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.013.woff2": { + "sha256": "efc704db97b62ee40e76ac9f1709fb8a15abc9524bf5b523956fff7c88224af9", + "bytes": 63228 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.014.woff2": { + "sha256": "058f3c8f16d5e3512cfd3040ce5d4230d1f67f528f62fdc944acd2c4bbfb13dc", + "bytes": 73584 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.015.woff2": { + "sha256": "42efcec37c59917dd688e920d5488b32a1be6a41fec5cd98148e4dd772d8b017", + "bytes": 77496 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.016.woff2": { + "sha256": "12545a4117e627b82318388e59b5bf67a9a3f311083c95c647f9195f044dbc4b", + "bytes": 77780 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.017.woff2": { + "sha256": "2f5f1c3cf9dd0cff77629031b6322743e3720e785c480740f55c0d97986f1260", + "bytes": 91652 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.018.woff2": { + "sha256": "6c47594571ceea5d95fc93397dbb7440e179dd2d88bb309ad0b27e8b47802657", + "bytes": 78096 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.019.woff2": { + "sha256": "f766292540a1f845301ec9943781779b4d0319cdfcc178dd009d7f130bb53c7f", + "bytes": 78288 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.020.woff2": { + "sha256": "da7dac49bab6ae33d29f55d447b24da78154244a9d19dba5330b89f8743570f4", + "bytes": 71568 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.021.woff2": { + "sha256": "6f11b7f024f63675b54e3b46b3c78ccf3c9720a4756aaacc9ad3ad012de48133", + "bytes": 78728 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.022.woff2": { + "sha256": "99bfec3fddee195338378dd508437a2cd6d1f94391ec1b53ca4c0dc4e024eaf8", + "bytes": 93076 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.023.woff2": { + "sha256": "e2322bdc60e93ab47db65a7f1f606f95c8675cd4aaf3d8ef7507af3a9e93cdc7", + "bytes": 77388 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.024.woff2": { + "sha256": "bce05fc5428520e73b55dacb78883e9c6eaae540789ff04b7680a5525690f5c0", + "bytes": 67816 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.025.woff2": { + "sha256": "c81ff0b3664922b5d71149c3386222447cce55313fa7ced6692f76357ef39d22", + "bytes": 84452 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.026.woff2": { + "sha256": "ff09fde2979dd2a357ab8c8cf1790ad6a4b6084cb2cc77b4272cc7d57aa01499", + "bytes": 79868 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.027.woff2": { + "sha256": "d050c7d5a89030b6e543915a981220859ecb71d2db93de6a27cad1510c28f2a2", + "bytes": 77640 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.028.woff2": { + "sha256": "287d9652e22a0dfe12bf0d8000d3a1add07aadfbd1597b517a0fd8fb344b214a", + "bytes": 82500 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.029.woff2": { + "sha256": "65a0351b81be0e879d808ffc851b6dc42acad2f7bc381f4ee4ed0412342cf6ca", + "bytes": 73916 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.030.woff2": { + "sha256": "2aab8f6086cf085c16af88bded2f97aa80794de3a6f45b22330ba7ab43e71735", + "bytes": 79804 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.031.woff2": { + "sha256": "af7e80b93c324171e31c132bd38d2856f388c90c08bdb2d547f38ec50515a801", + "bytes": 87128 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.032.woff2": { + "sha256": "a6aebe64b7afb305c17194c147eb81394573c759da2c634efc20140bf997baac", + "bytes": 89148 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.033.woff2": { + "sha256": "f5ecb211c8f8618c3e01734fb3cbf7b6acf3d0dccf1f9fb05fd567bb6681a627", + "bytes": 95592 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.034.woff2": { + "sha256": "75320ff44e94a5b941f7b42a5af5779a347e8b33e335326b5f79c83a11c7a3cf", + "bytes": 96280 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.035.woff2": { + "sha256": "7848cd5c53de4a7064b10718a4698b456a94ac61384f11674765cf241efc611e", + "bytes": 74772 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.036.woff2": { + "sha256": "90ed531dbd037ea9e0db7ff4d7b48484c9f9ae3f77e57951a56d0bc62873b12e", + "bytes": 82224 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.037.woff2": { + "sha256": "e8d8dfaa87aad156c571160c5b4603810c950167b281656fba345753a46e76c8", + "bytes": 87028 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.038.woff2": { + "sha256": "12575e133df2351edb4dc7454ad9e0ab9caa8425cd1800144390982bfed7a04f", + "bytes": 78632 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.039.woff2": { + "sha256": "5bca6cd8cf116f47d9912d8d38d7a92f68c27b2de8b20153fd7c779c97b4d62f", + "bytes": 84200 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.040.woff2": { + "sha256": "ae1ad1287f687587435c8c7b14025f84e47d5cf1bfa5eaf75ae00a83995f3aa5", + "bytes": 80116 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.041.woff2": { + "sha256": "2dd44486b05d34afd26bac12014c7b6e05da1b03ae7cc2de8a334d104fa0cf37", + "bytes": 83192 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.042.woff2": { + "sha256": "fdb43d57f4a4c3538797b48962cf002a5e68b63dba20e6143bbc0963e101a8c6", + "bytes": 79280 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.043.woff2": { + "sha256": "29721732eaa6034b50566b13f51c83b593a69ade6cdc1c98063055be2c7470b0", + "bytes": 67536 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.044.woff2": { + "sha256": "c39bd9c8df8489adc30e0bcd235b63af50129b125c48deec268630ea1eae26ce", + "bytes": 53352 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.045.woff2": { + "sha256": "92934da78332a18ef6247310f0ddc2ef4a70de5c872f1b254a256ef70c70f885", + "bytes": 30332 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.046.woff2": { + "sha256": "c74264c04012a4897840ba5e3d42b7b602bc9c4b441acfeb4adf1116546a86ec", + "bytes": 90216 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.047.woff2": { + "sha256": "503af595771a2b3243b7693258715d9b682e5558b7bc7d184e5b025c2b4ef71c", + "bytes": 96892 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.048.woff2": { + "sha256": "ccaccf78809aaa7f793f0b2f8e4bec5fcc04c0f0b184c85534780c9415ba885c", + "bytes": 102856 + }, + "files/FluxerSansTC/FluxerSansTC-Bold.049.woff2": { + "sha256": "2397cd485d732f63a04e7584a6d06088e7ce09f4be93a733198815ed3807335f", + "bytes": 7644 + }, + "files/FluxerSansKR/FluxerSansKR-Thin.000.woff2": { + "sha256": "2e0e49f52c85f21f09f99199ae4842a018d00a0cc9fe445bbf0c8f66e1ed8af4", + "bytes": 40520 + }, + "files/FluxerSansKR/FluxerSansKR-Thin.001.woff2": { + "sha256": "b5491d6437c63235d5302ece5ab07ecf035588cca4bf0bd3588c8af0887c95e9", + "bytes": 41552 + }, + "files/FluxerSansKR/FluxerSansKR-Thin.002.woff2": { + "sha256": "ae181c8cc3e5f6a35a47239fb6e640bc8aa4f19149be992815edc97d31160943", + "bytes": 35828 + }, + "files/FluxerSansKR/FluxerSansKR-Thin.003.woff2": { + "sha256": "8579619e205a2366d9acc9e51d88abd386c21aa3b45fda1996a484796aa65b18", + "bytes": 42072 + }, + "files/FluxerSansKR/FluxerSansKR-Thin.004.woff2": { + "sha256": "8d3df69721c10a0e9ab486d00e52aedc649810a2570e789d63e912c7c11744a9", + "bytes": 43648 + }, + "files/FluxerSansKR/FluxerSansKR-Thin.005.woff2": { + "sha256": "269b308166fdbb8175754b10b20f748360154c9b88044b41fcebb7198377798d", + "bytes": 45852 + }, + "files/FluxerSansKR/FluxerSansKR-Thin.006.woff2": { + "sha256": "19d42e33bda00437adc3bea5eb2f1ddb36819c38bbc6758da8c1c3222f0eecba", + "bytes": 48364 + }, + "files/FluxerSansKR/FluxerSansKR-Thin.007.woff2": { + "sha256": "c8b5ce2b75e6dee1d1e14ae721c1dc877c06a98fafeb5bee97881c050f0efbb3", + "bytes": 45464 + }, + "files/FluxerSansKR/FluxerSansKR-Thin.008.woff2": { + "sha256": "161907fe0408c156743d17ce85cb964c2ce53a2b9cf7158f41e05010198fc43b", + "bytes": 46932 + }, + "files/FluxerSansKR/FluxerSansKR-Thin.009.woff2": { + "sha256": "211e14785603c5e21cda944778a46aa317994d9e5c35adf9ce11493f870bf737", + "bytes": 10072 + }, + "files/FluxerSansKR/FluxerSansKR-ExtraLight.000.woff2": { + "sha256": "14f544ada0f4824597667599d0aa1453a2090a8c684b9e05691a27a5a7a30135", + "bytes": 41912 + }, + "files/FluxerSansKR/FluxerSansKR-ExtraLight.001.woff2": { + "sha256": "d51e231edb6d68057d0e5bddbfb254e77445d5c25ec21849f51d96d9eaaabc76", + "bytes": 52176 + }, + "files/FluxerSansKR/FluxerSansKR-ExtraLight.002.woff2": { + "sha256": "ebbb6e8522be0ecb70b9d308177fbf6bf969ed757d7e2201b67451172660558d", + "bytes": 46840 + }, + "files/FluxerSansKR/FluxerSansKR-ExtraLight.003.woff2": { + "sha256": "6412ecbdf9234e8835d42543553f30668608e35362a3a4be0c64ec0559a963f8", + "bytes": 51840 + }, + "files/FluxerSansKR/FluxerSansKR-ExtraLight.004.woff2": { + "sha256": "6049991d1d26a808c5f8c7c68c7d2c76035869cb96005f6541e897048e3aa3d0", + "bytes": 55136 + }, + "files/FluxerSansKR/FluxerSansKR-ExtraLight.005.woff2": { + "sha256": "255b0446ea2999bb179b447fb36533479ceb8b47248eafdc1d4f8a3a7cdcddb8", + "bytes": 59684 + }, + "files/FluxerSansKR/FluxerSansKR-ExtraLight.006.woff2": { + "sha256": "7bc804fbd0c67c29c4f343cf8950038434fe9fb254e1f6b21aecf30f3b59e936", + "bytes": 62464 + }, + "files/FluxerSansKR/FluxerSansKR-ExtraLight.007.woff2": { + "sha256": "c3e5be29cdffc557e6a39e2ac904dd6c18cf5de8eb9b87ca7763b76fcbe76a66", + "bytes": 57076 + }, + "files/FluxerSansKR/FluxerSansKR-ExtraLight.008.woff2": { + "sha256": "e265f75a344d9d310029e117dee61559cf1164de440cc32ce6e82aded1550d4d", + "bytes": 58312 + }, + "files/FluxerSansKR/FluxerSansKR-ExtraLight.009.woff2": { + "sha256": "71672f532fb035907e34db86ad4846dd2aba90c0d173e145b12b44b31e869d0b", + "bytes": 10004 + }, + "files/FluxerSansKR/FluxerSansKR-Light.000.woff2": { + "sha256": "132428bdb0f7cc463933bd43729277015f21e87fd2a14a71c00f6da53c792764", + "bytes": 41908 + }, + "files/FluxerSansKR/FluxerSansKR-Light.001.woff2": { + "sha256": "a77681b3fe7fda85b9c6f6c047d06c6a9796d8ff94f8ffc6404068365c31a83b", + "bytes": 54504 + }, + "files/FluxerSansKR/FluxerSansKR-Light.002.woff2": { + "sha256": "0fa5c5a48a1541c2fb31d3f7906fbdcd1d04025544a134608f409b58f28cbe23", + "bytes": 49444 + }, + "files/FluxerSansKR/FluxerSansKR-Light.003.woff2": { + "sha256": "4a450e1e07f5ad5a5e8fafa125a2a80b5e289b638f7e6d0bad648e3685d8e079", + "bytes": 54132 + }, + "files/FluxerSansKR/FluxerSansKR-Light.004.woff2": { + "sha256": "911d91f77d5b3eac0ce41b062b1f5cc5003b8aff89b39198c1fa11300305bb05", + "bytes": 58020 + }, + "files/FluxerSansKR/FluxerSansKR-Light.005.woff2": { + "sha256": "0ad9831b7f4b4969162f71dd8c70c5f0ae6930046047ef295db85a6151ad74a6", + "bytes": 63088 + }, + "files/FluxerSansKR/FluxerSansKR-Light.006.woff2": { + "sha256": "b19025f5d547f6cc9bf3ca10da72743e2d4fe90ff3c53c260a1c295a3768e656", + "bytes": 65724 + }, + "files/FluxerSansKR/FluxerSansKR-Light.007.woff2": { + "sha256": "6ae5aca98a7cb074352a3d84ed2c5d5d86d6adebe98a01ce993fdd5d19211670", + "bytes": 60012 + }, + "files/FluxerSansKR/FluxerSansKR-Light.008.woff2": { + "sha256": "6838c84141a0879539e82e0b055310bf241b071dc993fbd64749c229a5bf01d9", + "bytes": 61908 + }, + "files/FluxerSansKR/FluxerSansKR-Light.009.woff2": { + "sha256": "cd9b9ac784f98243601695aeca1a49c8ac7802ec83f5443180b07d52cf8fe92d", + "bytes": 10000 + }, + "files/FluxerSansKR/FluxerSansKR-Regular.000.woff2": { + "sha256": "94f10f5517a990fb0ef03460414997f9fa270a26044dd06ccfc78c8402579b27", + "bytes": 40444 + }, + "files/FluxerSansKR/FluxerSansKR-Regular.001.woff2": { + "sha256": "64ed3c4b9d3d6c1eee2e87dbd2ebd552282c6b4b541fe33a0448e07a9973b07c", + "bytes": 55212 + }, + "files/FluxerSansKR/FluxerSansKR-Regular.002.woff2": { + "sha256": "b590a47b68a1c616c9ba211bb2c4129f475e18ab47a51b0628c831917f27f59b", + "bytes": 50212 + }, + "files/FluxerSansKR/FluxerSansKR-Regular.003.woff2": { + "sha256": "f632557e5c9beac092a7e6c766a52cde1d5502258c037b75bb12b206f6aa19b5", + "bytes": 55176 + }, + "files/FluxerSansKR/FluxerSansKR-Regular.004.woff2": { + "sha256": "8904c3ccf906ea73ceda6b742ddf841a80a3d032ae0f1d4ffa5a25598059a383", + "bytes": 58772 + }, + "files/FluxerSansKR/FluxerSansKR-Regular.005.woff2": { + "sha256": "636d3e157926315dcc0f8a16ee74498651faa52f03660f19d1b9d58e0dc71a36", + "bytes": 63928 + }, + "files/FluxerSansKR/FluxerSansKR-Regular.006.woff2": { + "sha256": "33cd0e14be4659d1a29123730807e87dac43c49f418a8d244b9fc11293618525", + "bytes": 67172 + }, + "files/FluxerSansKR/FluxerSansKR-Regular.007.woff2": { + "sha256": "e4ed4ebe7efd8962e3e2da1af0a06c1815cc66d28afd10c9faede27c26b9b28d", + "bytes": 61500 + }, + "files/FluxerSansKR/FluxerSansKR-Regular.008.woff2": { + "sha256": "a74d43cb69b2577356fcfdec91aa97ff78f6c109efbabecfb4ef08fe9ecc4b6c", + "bytes": 63284 + }, + "files/FluxerSansKR/FluxerSansKR-Regular.009.woff2": { + "sha256": "fdc9f0481c255e6c247910d214dca29369df59a730c184afd1dd5f97adf625f6", + "bytes": 9976 + }, + "files/FluxerSansKR/FluxerSansKR-Text.000.woff2": { + "sha256": "dbe925e1e4e1165a0c99fd1622b34d32707ec3ab1a178096333528c0eaffab4d", + "bytes": 41940 + }, + "files/FluxerSansKR/FluxerSansKR-Text.001.woff2": { + "sha256": "5f7e6c2d7540ee257ec6dccc849531527dc7c8228c6ba722cfc82a386b9a2e20", + "bytes": 55128 + }, + "files/FluxerSansKR/FluxerSansKR-Text.002.woff2": { + "sha256": "163d899efe47da893fc2630634fbe2d86b2af7d2fefa94565dc9837d1c197098", + "bytes": 49988 + }, + "files/FluxerSansKR/FluxerSansKR-Text.003.woff2": { + "sha256": "8b5a35a31fe7442d3994c876136fc0f4419278c7aaa8dcddf7555100a0321c0b", + "bytes": 54736 + }, + "files/FluxerSansKR/FluxerSansKR-Text.004.woff2": { + "sha256": "5137c9d32824eb343982e4a5116c9ddf5df8f69450bbbda18c4dfdbfb6fdb1a9", + "bytes": 58360 + }, + "files/FluxerSansKR/FluxerSansKR-Text.005.woff2": { + "sha256": "725a313715f72f5c33898eb2e6c6e7c229e2b88e38feaacd044d25e82ca00a0f", + "bytes": 63840 + }, + "files/FluxerSansKR/FluxerSansKR-Text.006.woff2": { + "sha256": "7edda6bd066f1144eac604208d26868d34fc9dc34574439d325fe364237c6472", + "bytes": 66984 + }, + "files/FluxerSansKR/FluxerSansKR-Text.007.woff2": { + "sha256": "e90b445b146da0125711b60bd23c771beeb8c7f55700eaa62fb942df6a34a9f5", + "bytes": 61624 + }, + "files/FluxerSansKR/FluxerSansKR-Text.008.woff2": { + "sha256": "7c51b7b1fc0c99f2396c3cbc4d8f788230082f3c33e73afc98ab5cfdbe9ecebf", + "bytes": 63188 + }, + "files/FluxerSansKR/FluxerSansKR-Text.009.woff2": { + "sha256": "59d1024d72dc4a8398bbf662849514b4b44f8b67fbbf1e3440b14681eab81cb7", + "bytes": 10064 + }, + "files/FluxerSansKR/FluxerSansKR-Medium.000.woff2": { + "sha256": "d7b73a7f8a6d8425542efa3b201451b12eb51600d705d2315eba42c02a6c464e", + "bytes": 42016 + }, + "files/FluxerSansKR/FluxerSansKR-Medium.001.woff2": { + "sha256": "6eba8a4855a4fbebdf43df857ece62d9b43754ac13efc8278bbd606cbe97ec64", + "bytes": 54944 + }, + "files/FluxerSansKR/FluxerSansKR-Medium.002.woff2": { + "sha256": "cf8ab108bc2598586dc985a47320f6da41045146243e4a02f7dc4e7767cdf61d", + "bytes": 50204 + }, + "files/FluxerSansKR/FluxerSansKR-Medium.003.woff2": { + "sha256": "45e58fb55aa3f965a22c953654c190fe0d836cf8c803e511a1edd3d8803cd2a5", + "bytes": 54708 + }, + "files/FluxerSansKR/FluxerSansKR-Medium.004.woff2": { + "sha256": "91778e1ad0546b8860fa9e31a7c1dd2ab59d84f31377d9b88f863fe8b7b2e50c", + "bytes": 58340 + }, + "files/FluxerSansKR/FluxerSansKR-Medium.005.woff2": { + "sha256": "36c16f6582203c774d5deef319b2cabcbc8cd76696adae99ae523de919599d0f", + "bytes": 64120 + }, + "files/FluxerSansKR/FluxerSansKR-Medium.006.woff2": { + "sha256": "12519dd30075b77ade308b225bbb728ba14048d009a3f2a7d79e1b6719387766", + "bytes": 66844 + }, + "files/FluxerSansKR/FluxerSansKR-Medium.007.woff2": { + "sha256": "d5e34ea5592033176e6e180fef76d8fbc0cd880e79208e4e0c7ffe852cf53463", + "bytes": 61624 + }, + "files/FluxerSansKR/FluxerSansKR-Medium.008.woff2": { + "sha256": "4fe557715b1a6f98a122ce11a95ca787113fd1c473a32e4c02109ae90a010cd2", + "bytes": 63244 + }, + "files/FluxerSansKR/FluxerSansKR-Medium.009.woff2": { + "sha256": "2960364e1033a45cf66ee86c4d76322f80a8bc2faa80381b20c4ec14ab23b26e", + "bytes": 10048 + }, + "files/FluxerSansKR/FluxerSansKR-SemiBold.000.woff2": { + "sha256": "8c02e7737cf56655003e69d808741041f04906abee9ae171d9b5f7e46f9a401a", + "bytes": 41480 + }, + "files/FluxerSansKR/FluxerSansKR-SemiBold.001.woff2": { + "sha256": "28a068b8c4af27ec2587e3d07fbf87c9a5716f1e7c24df8b1e67058029c9c4cc", + "bytes": 55200 + }, + "files/FluxerSansKR/FluxerSansKR-SemiBold.002.woff2": { + "sha256": "09dd3d2b5118affb4c6e2113a5a5eb27627605154fe7414b2ed55401a8947339", + "bytes": 49764 + }, + "files/FluxerSansKR/FluxerSansKR-SemiBold.003.woff2": { + "sha256": "75c5749f3dbd50e249c7a4e765fd407ac488e71e7ac9177526e01a72480e5099", + "bytes": 54888 + }, + "files/FluxerSansKR/FluxerSansKR-SemiBold.004.woff2": { + "sha256": "a8c0eacb4f41d33b5ff19e0183ed98a244d6e5ebb7ac57a24f962290963e058b", + "bytes": 58376 + }, + "files/FluxerSansKR/FluxerSansKR-SemiBold.005.woff2": { + "sha256": "3280d14e3bae39e58c4d0132ee72c4f0283895ec9536817cc472a8ca9a043aaa", + "bytes": 63948 + }, + "files/FluxerSansKR/FluxerSansKR-SemiBold.006.woff2": { + "sha256": "ddaeae3e9169cf6cbb16a5cfae93f7b6aba151c546498c40f38b6eaec2ed1c2e", + "bytes": 66032 + }, + "files/FluxerSansKR/FluxerSansKR-SemiBold.007.woff2": { + "sha256": "73d155278b9dcc17e89dd1713d66601c18849d28f4365352d8a21f2897e43578", + "bytes": 61684 + }, + "files/FluxerSansKR/FluxerSansKR-SemiBold.008.woff2": { + "sha256": "9bd1d611835171128f0180db2825d46a9641b456c7203f0e19470c2b28cc2b01", + "bytes": 62252 + }, + "files/FluxerSansKR/FluxerSansKR-SemiBold.009.woff2": { + "sha256": "0c13259294423be08d87975187eab7d9502d7f67ee19829c88580f0fa45c849d", + "bytes": 10216 + }, + "files/FluxerSansKR/FluxerSansKR-Bold.000.woff2": { + "sha256": "d8d523d06224d5cd5cc5d8d487a3e4db2291c7412aae342ac6ae654d80dbcc46", + "bytes": 39808 + }, + "files/FluxerSansKR/FluxerSansKR-Bold.001.woff2": { + "sha256": "516b440c3f22bed03892010f91a17e8761eec1f36ee4ee524ccf5d0c32def837", + "bytes": 46648 + }, + "files/FluxerSansKR/FluxerSansKR-Bold.002.woff2": { + "sha256": "bfe3633dd54bc3efa36c0dc0cb40efa53b608dc7454b7a26a5b58dc6a2385900", + "bytes": 42020 + }, + "files/FluxerSansKR/FluxerSansKR-Bold.003.woff2": { + "sha256": "5441036058e72319a91baad2339ce82855f6c71ef0780abbd374007f32191565", + "bytes": 46600 + }, + "files/FluxerSansKR/FluxerSansKR-Bold.004.woff2": { + "sha256": "e3df280fdada9b5e1ba6c6eb17eb63ce74eea1fc6d5183e6502d937c638d0440", + "bytes": 48256 + }, + "files/FluxerSansKR/FluxerSansKR-Bold.005.woff2": { + "sha256": "c432b6c94089766d2b062985f1d802540cac8c8de87483dff4f8a496c54e71db", + "bytes": 53108 + }, + "files/FluxerSansKR/FluxerSansKR-Bold.006.woff2": { + "sha256": "41d3de74cb2dc6b8109103d3f5cef6ac4f62934d02f54b0625d0621fd5164345", + "bytes": 53604 + }, + "files/FluxerSansKR/FluxerSansKR-Bold.007.woff2": { + "sha256": "1ad095974ddc1cbef0686bdddcf362b8de729b7dc7d57f0266a06bbb57c585f6", + "bytes": 52660 + }, + "files/FluxerSansKR/FluxerSansKR-Bold.008.woff2": { + "sha256": "acee97a8ff82d83a611772e5e732e5fd04bc43a020dcba57b6e8c0b40db36303", + "bytes": 51804 + }, + "files/FluxerSansKR/FluxerSansKR-Bold.009.woff2": { + "sha256": "5f072ab83fb8550c1761d55bace9ffbdd069d4dff48d6f47f637df5076edbefe", + "bytes": 9960 + } + } +} diff --git a/tools/fonts/measure_chunking.py b/tools/fonts/measure_chunking.py new file mode 100644 index 000000000..609e06ec9 --- /dev/null +++ b/tools/fonts/measure_chunking.py @@ -0,0 +1,281 @@ +#!/usr/bin/env python3 +# SPDX-License-Identifier: AGPL-3.0-or-later + +from __future__ import annotations + +import argparse +import gzip +import json +import sys +from pathlib import Path + +import brotli + +sys.path.insert(0, str(Path(__file__).resolve().parent)) + +import build_fonts as bf # noqa: E402 + +CACHE = bf.TOOL_ROOT / ".cache" +SFNT_CACHE = CACHE / "measure" + +CORPUS: dict[str, dict[str, str]] = { + "FluxerSansSC": { + "one glyph (文)": "文", + "display name": "小明", + "three display names": "小明 李伟 王芳", + "README sentence": "这是简体中文的示例文本", + "chat message": "我们今天下午三点开个会吧,主要讨论新版本的发布计划和测试进度。", + "chat paragraph": ( + "我们今天下午三点开个会吧,主要讨论新版本的发布计划和测试进度。" + "如果有问题,可以随时在这个频道里留言,我会尽快回复大家。谢谢!" + ), + "UI labels": ( + "设置 通知 频道 消息 好友 语音 视频 屏幕共享 服务器 成员 权限 角色 邀请 退出 " + "静音 耳机 麦克风 摄像头 主题 语言 隐私 安全 账号 个人资料 状态 在线 离线 忙碌 勿扰" + ), + }, + "FluxerSansTC": { + "one glyph (文)": "文", + "display name": "小明", + "three display names": "小明 李偉 王芳", + "README sentence": "這是繁體中文的示例文本", + "chat message": "我們今天下午三點開個會吧,主要討論新版本的發佈計畫和測試進度。", + "chat paragraph": ( + "我們今天下午三點開個會吧,主要討論新版本的發佈計畫和測試進度。" + "如果有問題,可以隨時在這個頻道裡留言,我會盡快回覆大家。謝謝!" + ), + "UI labels": ( + "設定 通知 頻道 訊息 好友 語音 視訊 螢幕分享 伺服器 成員 權限 角色 邀請 離開 " + "靜音 耳機 麥克風 攝影機 主題 語言 隱私 安全 帳號 個人資料 狀態 線上 離線 忙碌 勿擾" + ), + }, + "FluxerSansJP": { + "one glyph (語)": "語", + "display name": "田中太郎", + "three display names": "田中太郎 佐藤花子 鈴木一郎", + "README sentence": "これは日本語のサンプルテキストです", + "chat message": "今日の午後三時から会議をしましょう。新しいバージョンの計画を話し合います。", + "chat paragraph": ( + "今日の午後三時から会議をしましょう。主に新しいバージョンのリリース計画と" + "テストの進捗について話し合います。質問があれば、いつでもこのチャンネルに" + "書き込んでください。なるべく早く返信します。よろしくお願いします。" + ), + "UI labels": ( + "設定 通知 チャンネル メッセージ フレンド ボイス ビデオ 画面共有 サーバー メンバー " + "権限 ロール 招待 退出 ミュート ヘッドセット マイク カメラ テーマ 言語 " + "プライバシー セキュリティ アカウント プロフィール ステータス オンライン オフライン 取り込み中 応答不可" + ), + }, + "FluxerSansKR": { + "one syllable (한)": "한", + "display name": "김민준", + "three display names": "김민준 이서연 박지훈", + "README sentence": "이것은 한국어 샘플 텍스트입니다", + "chat message": "오늘 오후 세 시에 회의를 합시다. 새 버전의 출시 계획을 이야기합니다.", + "chat paragraph": ( + "오늘 오후 세 시에 회의를 합시다. 주로 새 버전의 출시 계획과 테스트 진행 상황에 " + "대해 이야기할 예정입니다. 질문이 있으면 언제든지 이 채널에 남겨 주세요. " + "최대한 빨리 답장하겠습니다. 감사합니다." + ), + "UI labels": ( + "설정 알림 채널 메시지 친구 음성 영상 화면 공유 서버 멤버 권한 역할 초대 나가기 " + "음소거 헤드셋 마이크 카메라 테마 언어 개인정보 보안 계정 프로필 상태 온라인 오프라인 방해 금지" + ), + }, +} + +CJK_FAMILIES = tuple(CORPUS) + + +def renamed_reference(family: bf.Family, roots: dict[str, Path]) -> bytes: + """The renamed Regular SFNT, cached: the WOFF2 round-trip costs ~60 s a face.""" + SFNT_CACHE.mkdir(parents=True, exist_ok=True) + cached = SFNT_CACHE / f"{family.prefix}-Regular.sfnt" + if cached.is_file(): + return cached.read_bytes() + src = roots[family.source] / family.src_subdir / f"{family.prefix}-Regular.woff2" + print(f" renaming {family.prefix}-Regular (~60 s, cached afterwards)", flush=True) + sfnt = bf.renamed_sfnt(src, family.gasp) + cached.write_bytes(sfnt) + return sfnt + + +def glyph_id_order(sfnt: bytes) -> list[int]: + """This face's codepoints in glyph ID order (its inherited CID tiering).""" + import io + + font = bf.TTFont(io.BytesIO(sfnt), lazy=True) + try: + cmap = font.getBestCmap() + order = font.getGlyphOrder() + rank = {name: index for index, name in enumerate(order)} + return [cp for _, cp in sorted((rank[name], cp) for cp, name in cmap.items())] + finally: + font.close() + + +def plan_freq000( + sfnt: bytes, codepoints: set[int], budget: int, head: int +) -> list[tuple[int, ...]]: + """Chunk 000 = the `head` lowest-glyph-ID codepoints; the rest in block order.""" + ordered = [cp for cp in glyph_id_order(sfnt) if cp in codepoints] + common = ordered[:head] + if not common: + raise SystemExit("empty head chunk") + rest = codepoints - set(common) + tail = bf.plan_chunks(rest, budget) if rest else [] + return [tuple(sorted(common)), *tail] + + +def stylesheet_bytes(family: bf.Family, plan: list[tuple[int, ...]]) -> dict[str, int]: + """Render the real stylesheet for this plan and compress it as the app would. + + Chunk-major, every weight, `render_face_rule` verbatim — so the raw/gzip/ + brotli numbers are the ones a browser would actually download, not an + estimate of the `unicode-range` text alone. + """ + rules = [bf.SPDX_CSS_HEADER, bf.GENERATED_CSS_HEADER, ""] + for index, chunk in enumerate(plan): + rendered_range = bf.format_unicode_range(list(chunk)) + for weight in family.weights: + rules.append( + bf.render_face_rule( + family, + { + "weight": weight, + "path": f"{family.out_dir}/{family.prefix}-{weight}.{index:03d}.woff2", + "unicodeRange": rendered_range, + }, + ) + ) + text = ("\n".join([*rules, ""])).encode() + return { + "raw": len(text), + "gzip": len(gzip.compress(text, 9, mtime=0)), + "brotli": len(brotli.compress(text, quality=11)), + } + + +def build_plan(family: bf.Family, sfnt: bytes, plan: list[tuple[int, ...]]) -> list[dict]: + """Really subset and really encode every chunk, so the bytes are measured.""" + chunks = [] + for index, requested in enumerate(plan): + produced = bf.subset_face(sfnt, tuple(requested)) + chunks.append({"index": index, "codepoints": set(requested), "bytes": len(produced)}) + print(f" chunk {index:03d}: {len(requested)} cp -> {len(produced)} B", flush=True) + return chunks + + +def fetched(chunks: list[dict], text: str) -> tuple[int, int]: + """Bytes and chunk count a browser fetches to render `text` from this family. + + A chunk is fetched when its `unicode-range` intersects the text — which is + exactly the browser's rule, and the reason spaces matter: U+0020 lives in the + punctuation chunk, so any sentence containing one pays for it. + """ + wanted = set(ord(c) for c in text) + total = 0 + count = 0 + for chunk in chunks: + if chunk["codepoints"] & wanted: + total += chunk["bytes"] + count += 1 + return total, count + + +def measure_family(family: bf.Family, roots: dict[str, Path], strategies: list[str]) -> dict: + sfnt = renamed_reference(family, roots) + union: set[int] = set() + for name in family.source_files(): + union |= bf.face_cmap(roots[family.source] / family.src_subdir / name) + budget, note = bf.calibrate_chunk_size(sfnt, sorted(union), bf.CHUNK_TARGET_BYTES) + print(f"\n{family.out_dir}: {len(union)} codepoints, {note}") + + result: dict[str, dict] = {} + for strategy in strategies: + if strategy == "block": + plan = bf.plan_chunks(union, budget) + elif strategy.startswith("freq"): + plan = plan_freq000(sfnt, union, budget, int(strategy[4:])) + else: + raise SystemExit(f"unknown strategy {strategy!r}") + print(f" {strategy}: {len(plan)} chunks", flush=True) + chunks = build_plan(family, sfnt, plan) + result[strategy] = { + "chunks": len(plan), + "css": stylesheet_bytes(family, plan), + "full": sum(c["bytes"] for c in chunks), + "scenarios": { + label: fetched(chunks, text) for label, text in CORPUS[family.out_dir].items() + }, + } + return result + + +def report(family_id: str, data: dict[str, dict]) -> None: + strategies = list(data) + base = strategies[0] + print(f"\n=== {family_id} ===") + header = f"{'scenario':<24}" + "".join(f"{s:>22}" for s in strategies) + print(header) + print("-" * len(header)) + for label in CORPUS[family_id]: + row = f"{label:<24}" + base_bytes = data[base]["scenarios"][label][0] + for strategy in strategies: + got, count = data[strategy]["scenarios"][label] + ratio = f" ({base_bytes / got:.2f}x)" if strategy != base and got else "" + row += f"{f'{got:,} B/{count}c{ratio}':>22}" + print(row) + for key, label in (("full", "full coverage"), ("chunks", "chunk count")): + row = f"{label:<24}" + for strategy in strategies: + value = data[strategy][key] + row += f"{f'{value:,}':>22}" + print(row) + for field in ("raw", "gzip", "brotli"): + row = f"{f'stylesheet {field}':<24}" + for strategy in strategies: + value = data[strategy]["css"][field] + row += f"{f'{value:,} B':>22}" + print(row) + + +def main() -> int: + parser = argparse.ArgumentParser(description="Measure CJK chunking strategies.") + parser.add_argument("--family", action="append", choices=CJK_FAMILIES) + parser.add_argument("--strategies", default="block,freq1500,freq3000,freq6000") + parser.add_argument("--json", type=Path, help="also write the raw numbers here") + args = parser.parse_args() + + families = [bf.FAMILY_BY_DIR[f] for f in (args.family or CJK_FAMILIES)] + strategies = [s.strip() for s in args.strategies.split(",") if s.strip()] + roots = bf.resolve_sources(CACHE, tuple(families)) + + everything: dict[str, dict] = {} + for family in families: + everything[family.out_dir] = measure_family(family, roots, strategies) + report(family.out_dir, everything[family.out_dir]) + + if args.json: + args.json.write_text( + json.dumps( + { + fam: { + s: { + **{k: v for k, v in d.items() if k != "scenarios"}, + "scenarios": {k: list(v) for k, v in d["scenarios"].items()}, + } + for s, d in strategies_data.items() + } + for fam, strategies_data in everything.items() + }, + indent="\t", + ) + + "\n" + ) + return 0 + + +if __name__ == "__main__": + raise SystemExit(main()) diff --git a/tools/fonts/requirements.txt b/tools/fonts/requirements.txt new file mode 100644 index 000000000..7fb6f33d5 --- /dev/null +++ b/tools/fonts/requirements.txt @@ -0,0 +1,3 @@ +# SPDX-License-Identifier: AGPL-3.0-or-later +fonttools==4.60.2 +brotli==1.2.0