diff --git a/.circleci/config.yml b/.circleci/config.yml index 1662eb9..601d568 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,11 +1,56 @@ version: 2 jobs: - deploy-to-dev: + build-package: + working_directory: /tmp/repo + docker: + - image: monosolutions/iitesting + steps: + - checkout + - run: npm install + - run: + name: Build Artifact + command: | + mkdir ./artifact + DEPLOYABLE="${CIRCLE_PROJECT_REPONAME}-${CIRCLE_SHA1}.tar.gz" + cp -rf * ./artifact/ + pushd ./artifact + echo "Taring ${DEPLOYABLE}" + tar -zcvf $DEPLOYABLE * + popd + - persist_to_workspace: + root: /tmp/repo + paths: + - artifact + upload-package: + environment: + ENVIRONMENT: "dev" + REGION: "eu-central-1" + working_directory: /tmp/repo + docker: + - image: monosolutions/awscli:latest + steps: + - attach_workspace: + at: /tmp/repo + - run: + name: Upload Artifact Dev + command: | + aws configure set aws_access_key_id "${AWS_DEV_ACCESS_KEY}" + aws configure set aws_secret_access_key "${AWS_DEV_SECRET_KEY}" + BUCKET="mono-deployment-${ENVIRONMENT}" + DEPLOYABLE="${CIRCLE_PROJECT_REPONAME}-${CIRCLE_SHA1}.tar.gz" + { + aws s3api create-bucket --bucket "${BUCKET}" + } || { + echo "Bucket is here" + } + aws s3 cp "/tmp/repo/artifact/${DEPLOYABLE}" "s3://${BUCKET}/tileserver-gl/${DEPLOYABLE}" +deploy-to-dev: docker: - image: monosolutions/terraform:1.0.4 working_directory: /tmp/repo environment: REGION: "eu-central-1" + ENVIRONMENT: "dev" steps: - checkout - run: @@ -17,6 +62,8 @@ jobs: wget https://github.com/gruntwork-io/terragrunt/releases/download/v0.14.10/terragrunt_linux_amd64 -O terragrunt chmod a+x terragrunt mv terragrunt /bin/ + sed -i -e "s/repo_version =/repo_version = \"${CIRCLE_SHA1}\"/g" \ + "${REGION}/${ENVIRONMENT}/tileserver/terraform.tfvars" - run: name: Deploy tileserver to fra dev command: | @@ -25,4 +72,15 @@ workflows: version: 2 deploy: jobs: - - deploy-to-dev + - build-package: + filters: + branches: + only: + - master + - MODE-11365 + - upload-package: + requires: + - build-package + - deploy-to-dev: + requires: + - upload-package diff --git a/configuration/nginx.conf b/configuration/nginx.conf new file mode 100644 index 0000000..cde1e36 --- /dev/null +++ b/configuration/nginx.conf @@ -0,0 +1,50 @@ +user nginx; +worker_processes 1; +error_log /var/log/nginx/error.log warn; +pid /var/run/nginx.pid; +events { + worker_connections 1024; +} +http { + include /etc/nginx/mime.types; + default_type application/octet-stream; + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + access_log /var/log/nginx/access.log main; + proxy_cache_path /etc/nginx/cache levels=1:2 keys_zone=STATIC:100m inactive=24h max_size=30g; + sendfile on; + tcp_nopush on; + tcp_nodelay on; + keepalive_timeout 65; + types_hash_max_size 2048; + server { + listen 80 default_server; + listen [::]:80 default_server; + server_name _; + location / { + proxy_set_header Host $http_host; + proxy_set_header X-Forwarded-Proto 'https'; + proxy_pass http://localhost:8080; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_cache STATIC; + proxy_cache_valid 200 1d; + proxy_cache_key "$scheme$host$request_uri$cookie_user"; + if ($request_uri ~ ^(.*)[_](.*)$) { + add_header 'Access-Control-Allow-Origin' '*'; + return 301 https://$host$1-$2; + } + if ($request_uri ~ ^(.*)mono-blw(.*)$) { + add_header 'Access-Control-Allow-Origin' '*'; + return 301 https://$host$1mono-blue-water$2; + } + } + } + server { + listen 81; + location / { return 400; } + location = /__isAlive.html { + return 209; + } + } +} diff --git a/deployment/eu-central-1/dev/tileserver/terraform.tfvars b/deployment/eu-central-1/dev/tileserver/terraform.tfvars index 41b0561..eb6cffc 100644 --- a/deployment/eu-central-1/dev/tileserver/terraform.tfvars +++ b/deployment/eu-central-1/dev/tileserver/terraform.tfvars @@ -16,3 +16,4 @@ mono_efs_remote_state = "dev/mono-efs/terraform.tfstate" mono_region = "fra" version = "2.1" state_bucket = "tg-state-eu-central-1" +repo_version = \ No newline at end of file diff --git a/deployment/eu-central-1/prod/tileserver/terraform.tfvars b/deployment/eu-central-1/prod/tileserver/terraform.tfvars index f9f6642..52eead2 100644 --- a/deployment/eu-central-1/prod/tileserver/terraform.tfvars +++ b/deployment/eu-central-1/prod/tileserver/terraform.tfvars @@ -16,3 +16,4 @@ mono_efs_remote_state = "prod/mono-efs/terraform.tfstate" mono_region = "fra" version = "2.0" state_bucket = "tg-state-eu-central-1" +repo_version = \ No newline at end of file diff --git a/deployment/modules/tileserver/data.tf b/deployment/modules/tileserver/data.tf index 09a2f9e..c3efbb1 100644 --- a/deployment/modules/tileserver/data.tf +++ b/deployment/modules/tileserver/data.tf @@ -8,10 +8,15 @@ data "aws_ami" "amazon_linux" { filter { name = "name" - values = ["mono-tileserver-ami *"] + values = ["ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-*"] } - owners = ["self"] + filter { + name = "virtualization-type" + values = ["hvm"] + } + + owners = ["099720109477"] # Canonical } data "terraform_remote_state" "mono_vpc" { @@ -31,6 +36,9 @@ data "template_file" "shell-script" { template = "${file("files/user-data.sh")}" vars { efs_dns_name = "${data.terraform_remote_state.mono_efs.efs_dns_name}" + region = "${var.region}" + mono_region = "${var.mono_region}" + repo_version = "${var.repo_version}" } } diff --git a/deployment/modules/tileserver/files/user-data.sh b/deployment/modules/tileserver/files/user-data.sh index 660db7a..06852d7 100644 --- a/deployment/modules/tileserver/files/user-data.sh +++ b/deployment/modules/tileserver/files/user-data.sh @@ -1,6 +1,61 @@ #!/bin/bash set -x #shellcheck disable=SC2154,SC2086,SC2035 +REGION=${region} +ENVIRONMENT=${evironment} +MONO_REGION=${mono_region} +REPO_VERSION=${repo_version} +DEPLOYABLE="tileserver-gl-$REPO_VERSION.tar.gz" +FULL_BUCKET_URI="s3://$BUCKET/tileserver-gl/$DEPLOYABLE" +# Setup dependencies +sudo rm /var/lib/dpkg/lock +curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - +sudo apt install -y apt-transport-https \ +curl unzip build-essential python libcairo2-dev \ +libgles2-mesa-dev libgbm-dev libllvm3.9 libprotobuf-dev \ +libxxf86vm-dev libjpeg-dev xvfb nginx git nodejs nfs-common \ +heat-cfntools software-properties-common cloud-init + +# Setup environment +sudo tee -a /etc/environment << EOL +REGION=$REGION +ENVIRONMENT=$ENVIRONMENT +MONO_REGION=$MONO_REGION +EOL +sudo rm /etc/apt/sources.list.d/microsoft.list +sudo groupadd nginx +sudo useradd nginx -g nginx +sudo mkdir -p /usr/src/app/. \ +/data/mbtiles/. \ +/tmp/uncompressed/. + +sudo chown -R ubuntu:ubuntu /usr/src/app/. +# Setup project +{ + aws s3 cp "FULL_BUCKET_URI" /tmp/tileserver-gl.tar.gz + tar xzf /tmp/tileserver-gl.tar.gz -C /tmp/uncompressed/ + # Setup map files + sudo mv /tmp/uncompressed/map_files/* /data/. + sudo chown -R ubuntu:ubuntu /data/. + # Setup app + mv /tmp/uncompressed/* /usr/src/app/. + # Setup nginx + sudo mv /tmp/uncompressed/configuration/nginx.conf /etc/nginx/. + # cd /usr/src/app/. && npm install +} || { + echo "" + echo "Failed to setup project!" + echo "Tried fetching FULL_BUCKET_URI: $FULL_BUCKET_URI" + echo "" + echo "Tried modifying the following directories:" + echo "/data/." + echo "/usr/src/app/." + echo "/etc/nginx" + echo "" +} +# git clone https://github.com/klokantech/tileserver-gl.git /home/ubuntu/tileserver-gl + +# Configure service sudo sed -i -e 's/node \/usr\/src\/app\/ -p 80 "$@" \&/node \/usr\/src\/app\/ -p 8080 "$@" -c config.json \&/g' /usr/src/app/run.sh { sudo mount -t nfs4 -o nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2,noresvport "${efs_dns_name}:/mbtiles/" /data/mbtiles diff --git a/deployment/modules/tileserver/policies/policies.json b/deployment/modules/tileserver/policies/policies.json index 423d5d4..e29ba1f 100644 --- a/deployment/modules/tileserver/policies/policies.json +++ b/deployment/modules/tileserver/policies/policies.json @@ -40,6 +40,18 @@ "Effect": "Allow", "Action": "logs:*", "Resource": "*" + }, + { + "Sid": "", + "Effect": "Allow", + "Action": [ + "s3:GetObject", + "s3:ListBucket" + ], + "Resource": [ + "arn:aws:s3:::mono-deployment-dev", + "arn:aws:s3:::mono-deployment-dev/tileserver-gl/*" + ] } ] } \ No newline at end of file diff --git a/deployment/modules/tileserver/variables.tf b/deployment/modules/tileserver/variables.tf index 29a7c27..abbdadd 100644 --- a/deployment/modules/tileserver/variables.tf +++ b/deployment/modules/tileserver/variables.tf @@ -22,7 +22,7 @@ variable "version" { variable "mono_region" { type = "string" - description = "Dns zone id" + description = "fra/yyz" } variable "mono_vpc_remote_state" { @@ -48,4 +48,9 @@ variable "mono_keypair_remote_state" { variable "mono_alb_remote_state" { type = "string" description = "Remote state for mono_alb" +} + +variable "repo_version" { + type = "string" + description = "Version of repo to fetch and setup from S3" } \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/0-255.pbf b/map_files/glyphs/Open Sans Bold/0-255.pbf new file mode 100755 index 0000000..1fc6982 Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/0-255.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/1024-1279.pbf b/map_files/glyphs/Open Sans Bold/1024-1279.pbf new file mode 100755 index 0000000..d8da0a0 Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/1024-1279.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/10240-10495.pbf b/map_files/glyphs/Open Sans Bold/10240-10495.pbf new file mode 100755 index 0000000..df0710c --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/10240-10495.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 10240-10495 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/10496-10751.pbf b/map_files/glyphs/Open Sans Bold/10496-10751.pbf new file mode 100755 index 0000000..1cb283d --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/10496-10751.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 10496-10751 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/10752-11007.pbf b/map_files/glyphs/Open Sans Bold/10752-11007.pbf new file mode 100755 index 0000000..b68a1b8 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/10752-11007.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 10752-11007 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/11008-11263.pbf b/map_files/glyphs/Open Sans Bold/11008-11263.pbf new file mode 100755 index 0000000..29c873e --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/11008-11263.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 11008-11263 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/11264-11519.pbf b/map_files/glyphs/Open Sans Bold/11264-11519.pbf new file mode 100755 index 0000000..7cb66cf --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/11264-11519.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 11264-11519 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/11520-11775.pbf b/map_files/glyphs/Open Sans Bold/11520-11775.pbf new file mode 100755 index 0000000..7542dac --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/11520-11775.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 11520-11775 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/11776-12031.pbf b/map_files/glyphs/Open Sans Bold/11776-12031.pbf new file mode 100755 index 0000000..5f97787 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/11776-12031.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 11776-12031 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/12032-12287.pbf b/map_files/glyphs/Open Sans Bold/12032-12287.pbf new file mode 100755 index 0000000..4a17fd9 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/12032-12287.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 12032-12287 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/12288-12543.pbf b/map_files/glyphs/Open Sans Bold/12288-12543.pbf new file mode 100755 index 0000000..38432f0 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/12288-12543.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 12288-12543 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/12544-12799.pbf b/map_files/glyphs/Open Sans Bold/12544-12799.pbf new file mode 100755 index 0000000..dbf9c64 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/12544-12799.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 12544-12799 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/1280-1535.pbf b/map_files/glyphs/Open Sans Bold/1280-1535.pbf new file mode 100755 index 0000000..194a0fd Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/1280-1535.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/12800-13055.pbf b/map_files/glyphs/Open Sans Bold/12800-13055.pbf new file mode 100755 index 0000000..2fecdc4 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/12800-13055.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 12800-13055 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/13056-13311.pbf b/map_files/glyphs/Open Sans Bold/13056-13311.pbf new file mode 100755 index 0000000..f8869e1 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/13056-13311.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 13056-13311 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/13312-13567.pbf b/map_files/glyphs/Open Sans Bold/13312-13567.pbf new file mode 100755 index 0000000..ffa4e33 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/13312-13567.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 13312-13567 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/13568-13823.pbf b/map_files/glyphs/Open Sans Bold/13568-13823.pbf new file mode 100755 index 0000000..ce57c71 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/13568-13823.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 13568-13823 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/13824-14079.pbf b/map_files/glyphs/Open Sans Bold/13824-14079.pbf new file mode 100755 index 0000000..5547f67 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/13824-14079.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 13824-14079 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/14080-14335.pbf b/map_files/glyphs/Open Sans Bold/14080-14335.pbf new file mode 100755 index 0000000..bad2fef --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/14080-14335.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 14080-14335 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/14336-14591.pbf b/map_files/glyphs/Open Sans Bold/14336-14591.pbf new file mode 100755 index 0000000..6ca5764 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/14336-14591.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 14336-14591 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/14592-14847.pbf b/map_files/glyphs/Open Sans Bold/14592-14847.pbf new file mode 100755 index 0000000..7f0cafc --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/14592-14847.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 14592-14847 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/14848-15103.pbf b/map_files/glyphs/Open Sans Bold/14848-15103.pbf new file mode 100755 index 0000000..c97f142 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/14848-15103.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 14848-15103 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/15104-15359.pbf b/map_files/glyphs/Open Sans Bold/15104-15359.pbf new file mode 100755 index 0000000..1de79e1 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/15104-15359.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 15104-15359 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/1536-1791.pbf b/map_files/glyphs/Open Sans Bold/1536-1791.pbf new file mode 100755 index 0000000..550e856 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/1536-1791.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 1536-1791 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/15360-15615.pbf b/map_files/glyphs/Open Sans Bold/15360-15615.pbf new file mode 100755 index 0000000..79098cd --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/15360-15615.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 15360-15615 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/15616-15871.pbf b/map_files/glyphs/Open Sans Bold/15616-15871.pbf new file mode 100755 index 0000000..62cde4f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/15616-15871.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 15616-15871 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/15872-16127.pbf b/map_files/glyphs/Open Sans Bold/15872-16127.pbf new file mode 100755 index 0000000..2680e2d --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/15872-16127.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 15872-16127 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/16128-16383.pbf b/map_files/glyphs/Open Sans Bold/16128-16383.pbf new file mode 100755 index 0000000..b14e4a7 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/16128-16383.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 16128-16383 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/16384-16639.pbf b/map_files/glyphs/Open Sans Bold/16384-16639.pbf new file mode 100755 index 0000000..e4dc794 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/16384-16639.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 16384-16639 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/16640-16895.pbf b/map_files/glyphs/Open Sans Bold/16640-16895.pbf new file mode 100755 index 0000000..616d091 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/16640-16895.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 16640-16895 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/16896-17151.pbf b/map_files/glyphs/Open Sans Bold/16896-17151.pbf new file mode 100755 index 0000000..0cc3fef --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/16896-17151.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 16896-17151 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/17152-17407.pbf b/map_files/glyphs/Open Sans Bold/17152-17407.pbf new file mode 100755 index 0000000..cbf96f9 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/17152-17407.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 17152-17407 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/17408-17663.pbf b/map_files/glyphs/Open Sans Bold/17408-17663.pbf new file mode 100755 index 0000000..89c8ce4 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/17408-17663.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 17408-17663 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/17664-17919.pbf b/map_files/glyphs/Open Sans Bold/17664-17919.pbf new file mode 100755 index 0000000..6f08b1b --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/17664-17919.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 17664-17919 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/1792-2047.pbf b/map_files/glyphs/Open Sans Bold/1792-2047.pbf new file mode 100755 index 0000000..e11a6c3 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/1792-2047.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 1792-2047 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/17920-18175.pbf b/map_files/glyphs/Open Sans Bold/17920-18175.pbf new file mode 100755 index 0000000..2ee249c --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/17920-18175.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 17920-18175 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/18176-18431.pbf b/map_files/glyphs/Open Sans Bold/18176-18431.pbf new file mode 100755 index 0000000..d3cbd85 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/18176-18431.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 18176-18431 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/18432-18687.pbf b/map_files/glyphs/Open Sans Bold/18432-18687.pbf new file mode 100755 index 0000000..e78457d --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/18432-18687.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 18432-18687 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/18688-18943.pbf b/map_files/glyphs/Open Sans Bold/18688-18943.pbf new file mode 100755 index 0000000..df4c48f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/18688-18943.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 18688-18943 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/18944-19199.pbf b/map_files/glyphs/Open Sans Bold/18944-19199.pbf new file mode 100755 index 0000000..1478a4e --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/18944-19199.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 18944-19199 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/19200-19455.pbf b/map_files/glyphs/Open Sans Bold/19200-19455.pbf new file mode 100755 index 0000000..0d5c6ea --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/19200-19455.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 19200-19455 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/19456-19711.pbf b/map_files/glyphs/Open Sans Bold/19456-19711.pbf new file mode 100755 index 0000000..ba8fc6b --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/19456-19711.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 19456-19711 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/19712-19967.pbf b/map_files/glyphs/Open Sans Bold/19712-19967.pbf new file mode 100755 index 0000000..39ff69f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/19712-19967.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 19712-19967 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/19968-20223.pbf b/map_files/glyphs/Open Sans Bold/19968-20223.pbf new file mode 100755 index 0000000..b87cfc0 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/19968-20223.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 19968-20223 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/20224-20479.pbf b/map_files/glyphs/Open Sans Bold/20224-20479.pbf new file mode 100755 index 0000000..df7378a --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/20224-20479.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 20224-20479 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/2048-2303.pbf b/map_files/glyphs/Open Sans Bold/2048-2303.pbf new file mode 100755 index 0000000..720301e --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/2048-2303.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 2048-2303 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/20480-20735.pbf b/map_files/glyphs/Open Sans Bold/20480-20735.pbf new file mode 100755 index 0000000..251c690 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/20480-20735.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 20480-20735 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/20736-20991.pbf b/map_files/glyphs/Open Sans Bold/20736-20991.pbf new file mode 100755 index 0000000..6b4fd0b --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/20736-20991.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 20736-20991 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/20992-21247.pbf b/map_files/glyphs/Open Sans Bold/20992-21247.pbf new file mode 100755 index 0000000..041acf6 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/20992-21247.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 20992-21247 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/21248-21503.pbf b/map_files/glyphs/Open Sans Bold/21248-21503.pbf new file mode 100755 index 0000000..5a1e2ae --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/21248-21503.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 21248-21503 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/21504-21759.pbf b/map_files/glyphs/Open Sans Bold/21504-21759.pbf new file mode 100755 index 0000000..7cdb38f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/21504-21759.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 21504-21759 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/21760-22015.pbf b/map_files/glyphs/Open Sans Bold/21760-22015.pbf new file mode 100755 index 0000000..209725e --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/21760-22015.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 21760-22015 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/22016-22271.pbf b/map_files/glyphs/Open Sans Bold/22016-22271.pbf new file mode 100755 index 0000000..6123f21 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/22016-22271.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 22016-22271 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/22272-22527.pbf b/map_files/glyphs/Open Sans Bold/22272-22527.pbf new file mode 100755 index 0000000..5fddc4b --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/22272-22527.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 22272-22527 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/22528-22783.pbf b/map_files/glyphs/Open Sans Bold/22528-22783.pbf new file mode 100755 index 0000000..956b64e --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/22528-22783.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 22528-22783 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/22784-23039.pbf b/map_files/glyphs/Open Sans Bold/22784-23039.pbf new file mode 100755 index 0000000..b6c45aa --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/22784-23039.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 22784-23039 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/2304-2559.pbf b/map_files/glyphs/Open Sans Bold/2304-2559.pbf new file mode 100755 index 0000000..c36bebf --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/2304-2559.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 2304-2559 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/23040-23295.pbf b/map_files/glyphs/Open Sans Bold/23040-23295.pbf new file mode 100755 index 0000000..44a5b5f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/23040-23295.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 23040-23295 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/23296-23551.pbf b/map_files/glyphs/Open Sans Bold/23296-23551.pbf new file mode 100755 index 0000000..36fbc3f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/23296-23551.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 23296-23551 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/23552-23807.pbf b/map_files/glyphs/Open Sans Bold/23552-23807.pbf new file mode 100755 index 0000000..066bb38 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/23552-23807.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 23552-23807 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/23808-24063.pbf b/map_files/glyphs/Open Sans Bold/23808-24063.pbf new file mode 100755 index 0000000..cdb91f2 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/23808-24063.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 23808-24063 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/24064-24319.pbf b/map_files/glyphs/Open Sans Bold/24064-24319.pbf new file mode 100755 index 0000000..4a2e222 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/24064-24319.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 24064-24319 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/24320-24575.pbf b/map_files/glyphs/Open Sans Bold/24320-24575.pbf new file mode 100755 index 0000000..2c5bfed --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/24320-24575.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 24320-24575 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/24576-24831.pbf b/map_files/glyphs/Open Sans Bold/24576-24831.pbf new file mode 100755 index 0000000..185e182 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/24576-24831.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 24576-24831 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/24832-25087.pbf b/map_files/glyphs/Open Sans Bold/24832-25087.pbf new file mode 100755 index 0000000..b7b1658 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/24832-25087.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 24832-25087 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/25088-25343.pbf b/map_files/glyphs/Open Sans Bold/25088-25343.pbf new file mode 100755 index 0000000..a14e27a --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/25088-25343.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 25088-25343 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/25344-25599.pbf b/map_files/glyphs/Open Sans Bold/25344-25599.pbf new file mode 100755 index 0000000..71c6c29 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/25344-25599.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 25344-25599 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/256-511.pbf b/map_files/glyphs/Open Sans Bold/256-511.pbf new file mode 100755 index 0000000..b8e30c7 Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/256-511.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/2560-2815.pbf b/map_files/glyphs/Open Sans Bold/2560-2815.pbf new file mode 100755 index 0000000..08fa9a1 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/2560-2815.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 2560-2815 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/25600-25855.pbf b/map_files/glyphs/Open Sans Bold/25600-25855.pbf new file mode 100755 index 0000000..bd93cc6 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/25600-25855.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 25600-25855 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/25856-26111.pbf b/map_files/glyphs/Open Sans Bold/25856-26111.pbf new file mode 100755 index 0000000..9246962 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/25856-26111.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 25856-26111 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/26112-26367.pbf b/map_files/glyphs/Open Sans Bold/26112-26367.pbf new file mode 100755 index 0000000..7daf60a --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/26112-26367.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 26112-26367 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/26368-26623.pbf b/map_files/glyphs/Open Sans Bold/26368-26623.pbf new file mode 100755 index 0000000..90da742 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/26368-26623.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 26368-26623 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/26624-26879.pbf b/map_files/glyphs/Open Sans Bold/26624-26879.pbf new file mode 100755 index 0000000..cc4f064 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/26624-26879.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 26624-26879 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/26880-27135.pbf b/map_files/glyphs/Open Sans Bold/26880-27135.pbf new file mode 100755 index 0000000..b105329 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/26880-27135.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 26880-27135 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/27136-27391.pbf b/map_files/glyphs/Open Sans Bold/27136-27391.pbf new file mode 100755 index 0000000..7e8508a --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/27136-27391.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 27136-27391 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/27392-27647.pbf b/map_files/glyphs/Open Sans Bold/27392-27647.pbf new file mode 100755 index 0000000..82edfb1 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/27392-27647.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 27392-27647 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/27648-27903.pbf b/map_files/glyphs/Open Sans Bold/27648-27903.pbf new file mode 100755 index 0000000..edbad09 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/27648-27903.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 27648-27903 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/27904-28159.pbf b/map_files/glyphs/Open Sans Bold/27904-28159.pbf new file mode 100755 index 0000000..8c91baa --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/27904-28159.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 27904-28159 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/2816-3071.pbf b/map_files/glyphs/Open Sans Bold/2816-3071.pbf new file mode 100755 index 0000000..48ee1d1 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/2816-3071.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 2816-3071 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/28160-28415.pbf b/map_files/glyphs/Open Sans Bold/28160-28415.pbf new file mode 100755 index 0000000..02923d8 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/28160-28415.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 28160-28415 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/28416-28671.pbf b/map_files/glyphs/Open Sans Bold/28416-28671.pbf new file mode 100755 index 0000000..c58e635 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/28416-28671.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 28416-28671 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/28672-28927.pbf b/map_files/glyphs/Open Sans Bold/28672-28927.pbf new file mode 100755 index 0000000..b20dfdb --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/28672-28927.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 28672-28927 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/28928-29183.pbf b/map_files/glyphs/Open Sans Bold/28928-29183.pbf new file mode 100755 index 0000000..ed3825f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/28928-29183.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 28928-29183 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/29184-29439.pbf b/map_files/glyphs/Open Sans Bold/29184-29439.pbf new file mode 100755 index 0000000..f18c1f8 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/29184-29439.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 29184-29439 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/29440-29695.pbf b/map_files/glyphs/Open Sans Bold/29440-29695.pbf new file mode 100755 index 0000000..f29a759 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/29440-29695.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 29440-29695 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/29696-29951.pbf b/map_files/glyphs/Open Sans Bold/29696-29951.pbf new file mode 100755 index 0000000..0859096 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/29696-29951.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 29696-29951 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/29952-30207.pbf b/map_files/glyphs/Open Sans Bold/29952-30207.pbf new file mode 100755 index 0000000..db88e38 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/29952-30207.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 29952-30207 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/30208-30463.pbf b/map_files/glyphs/Open Sans Bold/30208-30463.pbf new file mode 100755 index 0000000..c551a92 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/30208-30463.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 30208-30463 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/30464-30719.pbf b/map_files/glyphs/Open Sans Bold/30464-30719.pbf new file mode 100755 index 0000000..ebe3c01 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/30464-30719.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 30464-30719 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/3072-3327.pbf b/map_files/glyphs/Open Sans Bold/3072-3327.pbf new file mode 100755 index 0000000..01cecf5 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/3072-3327.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 3072-3327 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/30720-30975.pbf b/map_files/glyphs/Open Sans Bold/30720-30975.pbf new file mode 100755 index 0000000..4f33fcf --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/30720-30975.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 30720-30975 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/30976-31231.pbf b/map_files/glyphs/Open Sans Bold/30976-31231.pbf new file mode 100755 index 0000000..bf727e3 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/30976-31231.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 30976-31231 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/31232-31487.pbf b/map_files/glyphs/Open Sans Bold/31232-31487.pbf new file mode 100755 index 0000000..ad5cb5f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/31232-31487.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 31232-31487 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/31488-31743.pbf b/map_files/glyphs/Open Sans Bold/31488-31743.pbf new file mode 100755 index 0000000..bfca71c --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/31488-31743.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 31488-31743 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/31744-31999.pbf b/map_files/glyphs/Open Sans Bold/31744-31999.pbf new file mode 100755 index 0000000..aa33448 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/31744-31999.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 31744-31999 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/32000-32255.pbf b/map_files/glyphs/Open Sans Bold/32000-32255.pbf new file mode 100755 index 0000000..4828167 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/32000-32255.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 32000-32255 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/32256-32511.pbf b/map_files/glyphs/Open Sans Bold/32256-32511.pbf new file mode 100755 index 0000000..861ea6c --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/32256-32511.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 32256-32511 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/32512-32767.pbf b/map_files/glyphs/Open Sans Bold/32512-32767.pbf new file mode 100755 index 0000000..f96635c --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/32512-32767.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 32512-32767 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/32768-33023.pbf b/map_files/glyphs/Open Sans Bold/32768-33023.pbf new file mode 100755 index 0000000..f1d0168 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/32768-33023.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 32768-33023 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/33024-33279.pbf b/map_files/glyphs/Open Sans Bold/33024-33279.pbf new file mode 100755 index 0000000..e38c367 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/33024-33279.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 33024-33279 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/3328-3583.pbf b/map_files/glyphs/Open Sans Bold/3328-3583.pbf new file mode 100755 index 0000000..e3aacc8 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/3328-3583.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 3328-3583 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/33280-33535.pbf b/map_files/glyphs/Open Sans Bold/33280-33535.pbf new file mode 100755 index 0000000..def76ae --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/33280-33535.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 33280-33535 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/33536-33791.pbf b/map_files/glyphs/Open Sans Bold/33536-33791.pbf new file mode 100755 index 0000000..5996b77 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/33536-33791.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 33536-33791 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/33792-34047.pbf b/map_files/glyphs/Open Sans Bold/33792-34047.pbf new file mode 100755 index 0000000..764b7df --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/33792-34047.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 33792-34047 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/34048-34303.pbf b/map_files/glyphs/Open Sans Bold/34048-34303.pbf new file mode 100755 index 0000000..b9aefc4 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/34048-34303.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 34048-34303 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/34304-34559.pbf b/map_files/glyphs/Open Sans Bold/34304-34559.pbf new file mode 100755 index 0000000..0bdecd5 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/34304-34559.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 34304-34559 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/34560-34815.pbf b/map_files/glyphs/Open Sans Bold/34560-34815.pbf new file mode 100755 index 0000000..8f4d4c8 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/34560-34815.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 34560-34815 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/34816-35071.pbf b/map_files/glyphs/Open Sans Bold/34816-35071.pbf new file mode 100755 index 0000000..baa720c --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/34816-35071.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 34816-35071 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/35072-35327.pbf b/map_files/glyphs/Open Sans Bold/35072-35327.pbf new file mode 100755 index 0000000..d3a6f73 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/35072-35327.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 35072-35327 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/35328-35583.pbf b/map_files/glyphs/Open Sans Bold/35328-35583.pbf new file mode 100755 index 0000000..08701ea --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/35328-35583.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 35328-35583 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/35584-35839.pbf b/map_files/glyphs/Open Sans Bold/35584-35839.pbf new file mode 100755 index 0000000..caed4ac --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/35584-35839.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 35584-35839 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/3584-3839.pbf b/map_files/glyphs/Open Sans Bold/3584-3839.pbf new file mode 100755 index 0000000..44107bc --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/3584-3839.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 3584-3839 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/35840-36095.pbf b/map_files/glyphs/Open Sans Bold/35840-36095.pbf new file mode 100755 index 0000000..7ddd1ac --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/35840-36095.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 35840-36095 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/36096-36351.pbf b/map_files/glyphs/Open Sans Bold/36096-36351.pbf new file mode 100755 index 0000000..18a2953 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/36096-36351.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 36096-36351 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/36352-36607.pbf b/map_files/glyphs/Open Sans Bold/36352-36607.pbf new file mode 100755 index 0000000..a3f9408 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/36352-36607.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 36352-36607 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/36608-36863.pbf b/map_files/glyphs/Open Sans Bold/36608-36863.pbf new file mode 100755 index 0000000..78804aa --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/36608-36863.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 36608-36863 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/36864-37119.pbf b/map_files/glyphs/Open Sans Bold/36864-37119.pbf new file mode 100755 index 0000000..4b61f69 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/36864-37119.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 36864-37119 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/37120-37375.pbf b/map_files/glyphs/Open Sans Bold/37120-37375.pbf new file mode 100755 index 0000000..a96c241 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/37120-37375.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 37120-37375 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/37376-37631.pbf b/map_files/glyphs/Open Sans Bold/37376-37631.pbf new file mode 100755 index 0000000..50cec59 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/37376-37631.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 37376-37631 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/37632-37887.pbf b/map_files/glyphs/Open Sans Bold/37632-37887.pbf new file mode 100755 index 0000000..34600fc --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/37632-37887.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 37632-37887 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/37888-38143.pbf b/map_files/glyphs/Open Sans Bold/37888-38143.pbf new file mode 100755 index 0000000..96fb107 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/37888-38143.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 37888-38143 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/38144-38399.pbf b/map_files/glyphs/Open Sans Bold/38144-38399.pbf new file mode 100755 index 0000000..3573fee --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/38144-38399.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 38144-38399 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/3840-4095.pbf b/map_files/glyphs/Open Sans Bold/3840-4095.pbf new file mode 100755 index 0000000..f641248 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/3840-4095.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 3840-4095 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/38400-38655.pbf b/map_files/glyphs/Open Sans Bold/38400-38655.pbf new file mode 100755 index 0000000..9f24c32 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/38400-38655.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 38400-38655 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/38656-38911.pbf b/map_files/glyphs/Open Sans Bold/38656-38911.pbf new file mode 100755 index 0000000..274b113 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/38656-38911.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 38656-38911 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/38912-39167.pbf b/map_files/glyphs/Open Sans Bold/38912-39167.pbf new file mode 100755 index 0000000..4d523cb --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/38912-39167.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 38912-39167 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/39168-39423.pbf b/map_files/glyphs/Open Sans Bold/39168-39423.pbf new file mode 100755 index 0000000..881664b --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/39168-39423.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 39168-39423 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/39424-39679.pbf b/map_files/glyphs/Open Sans Bold/39424-39679.pbf new file mode 100755 index 0000000..2528cb3 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/39424-39679.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 39424-39679 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/39680-39935.pbf b/map_files/glyphs/Open Sans Bold/39680-39935.pbf new file mode 100755 index 0000000..adc2013 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/39680-39935.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 39680-39935 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/39936-40191.pbf b/map_files/glyphs/Open Sans Bold/39936-40191.pbf new file mode 100755 index 0000000..af77673 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/39936-40191.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 39936-40191 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/40192-40447.pbf b/map_files/glyphs/Open Sans Bold/40192-40447.pbf new file mode 100755 index 0000000..43695ab --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/40192-40447.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 40192-40447 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/40448-40703.pbf b/map_files/glyphs/Open Sans Bold/40448-40703.pbf new file mode 100755 index 0000000..e69f06b --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/40448-40703.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 40448-40703 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/40704-40959.pbf b/map_files/glyphs/Open Sans Bold/40704-40959.pbf new file mode 100755 index 0000000..e34fa67 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/40704-40959.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 40704-40959 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/4096-4351.pbf b/map_files/glyphs/Open Sans Bold/4096-4351.pbf new file mode 100755 index 0000000..90bd6a8 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/4096-4351.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 4096-4351 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/40960-41215.pbf b/map_files/glyphs/Open Sans Bold/40960-41215.pbf new file mode 100755 index 0000000..2276a8f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/40960-41215.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 40960-41215 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/41216-41471.pbf b/map_files/glyphs/Open Sans Bold/41216-41471.pbf new file mode 100755 index 0000000..f3543af --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/41216-41471.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 41216-41471 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/41472-41727.pbf b/map_files/glyphs/Open Sans Bold/41472-41727.pbf new file mode 100755 index 0000000..81caba9 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/41472-41727.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 41472-41727 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/41728-41983.pbf b/map_files/glyphs/Open Sans Bold/41728-41983.pbf new file mode 100755 index 0000000..c7726b0 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/41728-41983.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 41728-41983 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/41984-42239.pbf b/map_files/glyphs/Open Sans Bold/41984-42239.pbf new file mode 100755 index 0000000..7a610fe --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/41984-42239.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 41984-42239 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/42240-42495.pbf b/map_files/glyphs/Open Sans Bold/42240-42495.pbf new file mode 100755 index 0000000..715a38f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/42240-42495.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 42240-42495 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/42496-42751.pbf b/map_files/glyphs/Open Sans Bold/42496-42751.pbf new file mode 100755 index 0000000..5193a4b --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/42496-42751.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 42496-42751 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/42752-43007.pbf b/map_files/glyphs/Open Sans Bold/42752-43007.pbf new file mode 100755 index 0000000..b21238a --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/42752-43007.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 42752-43007 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/43008-43263.pbf b/map_files/glyphs/Open Sans Bold/43008-43263.pbf new file mode 100755 index 0000000..175a84f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/43008-43263.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 43008-43263 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/43264-43519.pbf b/map_files/glyphs/Open Sans Bold/43264-43519.pbf new file mode 100755 index 0000000..2ae3c04 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/43264-43519.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 43264-43519 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/4352-4607.pbf b/map_files/glyphs/Open Sans Bold/4352-4607.pbf new file mode 100755 index 0000000..af21cc4 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/4352-4607.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 4352-4607 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/43520-43775.pbf b/map_files/glyphs/Open Sans Bold/43520-43775.pbf new file mode 100755 index 0000000..cda44b5 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/43520-43775.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 43520-43775 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/43776-44031.pbf b/map_files/glyphs/Open Sans Bold/43776-44031.pbf new file mode 100755 index 0000000..714067a --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/43776-44031.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 43776-44031 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/44032-44287.pbf b/map_files/glyphs/Open Sans Bold/44032-44287.pbf new file mode 100755 index 0000000..7fbdc08 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/44032-44287.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 44032-44287 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/44288-44543.pbf b/map_files/glyphs/Open Sans Bold/44288-44543.pbf new file mode 100755 index 0000000..10ed196 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/44288-44543.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 44288-44543 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/44544-44799.pbf b/map_files/glyphs/Open Sans Bold/44544-44799.pbf new file mode 100755 index 0000000..7a16cfc --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/44544-44799.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 44544-44799 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/44800-45055.pbf b/map_files/glyphs/Open Sans Bold/44800-45055.pbf new file mode 100755 index 0000000..e7a3098 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/44800-45055.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 44800-45055 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/45056-45311.pbf b/map_files/glyphs/Open Sans Bold/45056-45311.pbf new file mode 100755 index 0000000..3583cf7 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/45056-45311.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 45056-45311 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/45312-45567.pbf b/map_files/glyphs/Open Sans Bold/45312-45567.pbf new file mode 100755 index 0000000..6dad09e --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/45312-45567.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 45312-45567 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/45568-45823.pbf b/map_files/glyphs/Open Sans Bold/45568-45823.pbf new file mode 100755 index 0000000..965ec7f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/45568-45823.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 45568-45823 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/45824-46079.pbf b/map_files/glyphs/Open Sans Bold/45824-46079.pbf new file mode 100755 index 0000000..60dc1dd --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/45824-46079.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 45824-46079 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/4608-4863.pbf b/map_files/glyphs/Open Sans Bold/4608-4863.pbf new file mode 100755 index 0000000..17930d5 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/4608-4863.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 4608-4863 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/46080-46335.pbf b/map_files/glyphs/Open Sans Bold/46080-46335.pbf new file mode 100755 index 0000000..fef7602 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/46080-46335.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 46080-46335 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/46336-46591.pbf b/map_files/glyphs/Open Sans Bold/46336-46591.pbf new file mode 100755 index 0000000..c990537 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/46336-46591.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 46336-46591 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/46592-46847.pbf b/map_files/glyphs/Open Sans Bold/46592-46847.pbf new file mode 100755 index 0000000..c8a10d4 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/46592-46847.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 46592-46847 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/46848-47103.pbf b/map_files/glyphs/Open Sans Bold/46848-47103.pbf new file mode 100755 index 0000000..da3f72b --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/46848-47103.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 46848-47103 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/47104-47359.pbf b/map_files/glyphs/Open Sans Bold/47104-47359.pbf new file mode 100755 index 0000000..3630c34 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/47104-47359.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 47104-47359 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/47360-47615.pbf b/map_files/glyphs/Open Sans Bold/47360-47615.pbf new file mode 100755 index 0000000..c3eeaa7 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/47360-47615.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 47360-47615 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/47616-47871.pbf b/map_files/glyphs/Open Sans Bold/47616-47871.pbf new file mode 100755 index 0000000..7435f49 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/47616-47871.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 47616-47871 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/47872-48127.pbf b/map_files/glyphs/Open Sans Bold/47872-48127.pbf new file mode 100755 index 0000000..8d2a466 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/47872-48127.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 47872-48127 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/48128-48383.pbf b/map_files/glyphs/Open Sans Bold/48128-48383.pbf new file mode 100755 index 0000000..412bf0d --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/48128-48383.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 48128-48383 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/48384-48639.pbf b/map_files/glyphs/Open Sans Bold/48384-48639.pbf new file mode 100755 index 0000000..6822d99 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/48384-48639.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 48384-48639 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/4864-5119.pbf b/map_files/glyphs/Open Sans Bold/4864-5119.pbf new file mode 100755 index 0000000..47a70d8 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/4864-5119.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 4864-5119 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/48640-48895.pbf b/map_files/glyphs/Open Sans Bold/48640-48895.pbf new file mode 100755 index 0000000..d14badd --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/48640-48895.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 48640-48895 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/48896-49151.pbf b/map_files/glyphs/Open Sans Bold/48896-49151.pbf new file mode 100755 index 0000000..c25205b --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/48896-49151.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 48896-49151 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/49152-49407.pbf b/map_files/glyphs/Open Sans Bold/49152-49407.pbf new file mode 100755 index 0000000..24c80e6 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/49152-49407.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 49152-49407 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/49408-49663.pbf b/map_files/glyphs/Open Sans Bold/49408-49663.pbf new file mode 100755 index 0000000..83e6dde --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/49408-49663.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 49408-49663 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/49664-49919.pbf b/map_files/glyphs/Open Sans Bold/49664-49919.pbf new file mode 100755 index 0000000..9f2d34d --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/49664-49919.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 49664-49919 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/49920-50175.pbf b/map_files/glyphs/Open Sans Bold/49920-50175.pbf new file mode 100755 index 0000000..64f0589 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/49920-50175.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 49920-50175 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/50176-50431.pbf b/map_files/glyphs/Open Sans Bold/50176-50431.pbf new file mode 100755 index 0000000..4751659 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/50176-50431.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 50176-50431 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/50432-50687.pbf b/map_files/glyphs/Open Sans Bold/50432-50687.pbf new file mode 100755 index 0000000..9c14b41 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/50432-50687.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 50432-50687 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/50688-50943.pbf b/map_files/glyphs/Open Sans Bold/50688-50943.pbf new file mode 100755 index 0000000..a720302 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/50688-50943.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 50688-50943 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/50944-51199.pbf b/map_files/glyphs/Open Sans Bold/50944-51199.pbf new file mode 100755 index 0000000..3f5cbd2 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/50944-51199.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 50944-51199 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/512-767.pbf b/map_files/glyphs/Open Sans Bold/512-767.pbf new file mode 100755 index 0000000..d414194 Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/512-767.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/5120-5375.pbf b/map_files/glyphs/Open Sans Bold/5120-5375.pbf new file mode 100755 index 0000000..a24f67c --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/5120-5375.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 5120-5375 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/51200-51455.pbf b/map_files/glyphs/Open Sans Bold/51200-51455.pbf new file mode 100755 index 0000000..89bbdfa --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/51200-51455.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 51200-51455 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/51456-51711.pbf b/map_files/glyphs/Open Sans Bold/51456-51711.pbf new file mode 100755 index 0000000..a1198a9 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/51456-51711.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 51456-51711 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/51712-51967.pbf b/map_files/glyphs/Open Sans Bold/51712-51967.pbf new file mode 100755 index 0000000..de4adcf --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/51712-51967.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 51712-51967 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/51968-52223.pbf b/map_files/glyphs/Open Sans Bold/51968-52223.pbf new file mode 100755 index 0000000..7e8e042 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/51968-52223.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 51968-52223 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/52224-52479.pbf b/map_files/glyphs/Open Sans Bold/52224-52479.pbf new file mode 100755 index 0000000..fec226f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/52224-52479.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 52224-52479 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/52480-52735.pbf b/map_files/glyphs/Open Sans Bold/52480-52735.pbf new file mode 100755 index 0000000..9fe6d93 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/52480-52735.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 52480-52735 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/52736-52991.pbf b/map_files/glyphs/Open Sans Bold/52736-52991.pbf new file mode 100755 index 0000000..46fd3f5 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/52736-52991.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 52736-52991 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/52992-53247.pbf b/map_files/glyphs/Open Sans Bold/52992-53247.pbf new file mode 100755 index 0000000..2766975 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/52992-53247.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 52992-53247 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/53248-53503.pbf b/map_files/glyphs/Open Sans Bold/53248-53503.pbf new file mode 100755 index 0000000..8134ef5 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/53248-53503.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 53248-53503 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/53504-53759.pbf b/map_files/glyphs/Open Sans Bold/53504-53759.pbf new file mode 100755 index 0000000..88d772f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/53504-53759.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 53504-53759 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/5376-5631.pbf b/map_files/glyphs/Open Sans Bold/5376-5631.pbf new file mode 100755 index 0000000..fd00154 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/5376-5631.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 5376-5631 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/53760-54015.pbf b/map_files/glyphs/Open Sans Bold/53760-54015.pbf new file mode 100755 index 0000000..7e30952 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/53760-54015.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 53760-54015 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/54016-54271.pbf b/map_files/glyphs/Open Sans Bold/54016-54271.pbf new file mode 100755 index 0000000..d7e3649 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/54016-54271.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 54016-54271 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/54272-54527.pbf b/map_files/glyphs/Open Sans Bold/54272-54527.pbf new file mode 100755 index 0000000..22447a1 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/54272-54527.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 54272-54527 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/54528-54783.pbf b/map_files/glyphs/Open Sans Bold/54528-54783.pbf new file mode 100755 index 0000000..01b027c --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/54528-54783.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 54528-54783 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/54784-55039.pbf b/map_files/glyphs/Open Sans Bold/54784-55039.pbf new file mode 100755 index 0000000..df83689 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/54784-55039.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 54784-55039 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/55040-55295.pbf b/map_files/glyphs/Open Sans Bold/55040-55295.pbf new file mode 100755 index 0000000..f1e0c75 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/55040-55295.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 55040-55295 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/55296-55551.pbf b/map_files/glyphs/Open Sans Bold/55296-55551.pbf new file mode 100755 index 0000000..3cbbc41 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/55296-55551.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 55296-55551 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/55552-55807.pbf b/map_files/glyphs/Open Sans Bold/55552-55807.pbf new file mode 100755 index 0000000..e6d2ad0 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/55552-55807.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 55552-55807 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/55808-56063.pbf b/map_files/glyphs/Open Sans Bold/55808-56063.pbf new file mode 100755 index 0000000..afa5c6b --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/55808-56063.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 55808-56063 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/56064-56319.pbf b/map_files/glyphs/Open Sans Bold/56064-56319.pbf new file mode 100755 index 0000000..c079f15 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/56064-56319.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 56064-56319 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/5632-5887.pbf b/map_files/glyphs/Open Sans Bold/5632-5887.pbf new file mode 100755 index 0000000..266864f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/5632-5887.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 5632-5887 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/56320-56575.pbf b/map_files/glyphs/Open Sans Bold/56320-56575.pbf new file mode 100755 index 0000000..90f702b --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/56320-56575.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 56320-56575 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/56576-56831.pbf b/map_files/glyphs/Open Sans Bold/56576-56831.pbf new file mode 100755 index 0000000..bdc05f6 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/56576-56831.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 56576-56831 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/56832-57087.pbf b/map_files/glyphs/Open Sans Bold/56832-57087.pbf new file mode 100755 index 0000000..e7f25cf --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/56832-57087.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 56832-57087 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/57088-57343.pbf b/map_files/glyphs/Open Sans Bold/57088-57343.pbf new file mode 100755 index 0000000..98c45e5 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/57088-57343.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 57088-57343 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/57344-57599.pbf b/map_files/glyphs/Open Sans Bold/57344-57599.pbf new file mode 100755 index 0000000..0636393 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/57344-57599.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 57344-57599 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/57600-57855.pbf b/map_files/glyphs/Open Sans Bold/57600-57855.pbf new file mode 100755 index 0000000..7285d19 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/57600-57855.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 57600-57855 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/57856-58111.pbf b/map_files/glyphs/Open Sans Bold/57856-58111.pbf new file mode 100755 index 0000000..d4b059f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/57856-58111.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 57856-58111 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/58112-58367.pbf b/map_files/glyphs/Open Sans Bold/58112-58367.pbf new file mode 100755 index 0000000..d8f1e79 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/58112-58367.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 58112-58367 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/58368-58623.pbf b/map_files/glyphs/Open Sans Bold/58368-58623.pbf new file mode 100755 index 0000000..e7eca78 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/58368-58623.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 58368-58623 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/58624-58879.pbf b/map_files/glyphs/Open Sans Bold/58624-58879.pbf new file mode 100755 index 0000000..6045305 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/58624-58879.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 58624-58879 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/5888-6143.pbf b/map_files/glyphs/Open Sans Bold/5888-6143.pbf new file mode 100755 index 0000000..ef04a42 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/5888-6143.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 5888-6143 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/58880-59135.pbf b/map_files/glyphs/Open Sans Bold/58880-59135.pbf new file mode 100755 index 0000000..7c1fd9f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/58880-59135.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 58880-59135 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/59136-59391.pbf b/map_files/glyphs/Open Sans Bold/59136-59391.pbf new file mode 100755 index 0000000..8a60f9a --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/59136-59391.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 59136-59391 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/59392-59647.pbf b/map_files/glyphs/Open Sans Bold/59392-59647.pbf new file mode 100755 index 0000000..28d4226 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/59392-59647.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 59392-59647 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/59648-59903.pbf b/map_files/glyphs/Open Sans Bold/59648-59903.pbf new file mode 100755 index 0000000..d6c517c --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/59648-59903.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 59648-59903 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/59904-60159.pbf b/map_files/glyphs/Open Sans Bold/59904-60159.pbf new file mode 100755 index 0000000..055f95e --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/59904-60159.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 59904-60159 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/60160-60415.pbf b/map_files/glyphs/Open Sans Bold/60160-60415.pbf new file mode 100755 index 0000000..cca8fbc --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/60160-60415.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 60160-60415 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/60416-60671.pbf b/map_files/glyphs/Open Sans Bold/60416-60671.pbf new file mode 100755 index 0000000..c2d6056 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/60416-60671.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 60416-60671 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/60672-60927.pbf b/map_files/glyphs/Open Sans Bold/60672-60927.pbf new file mode 100755 index 0000000..6d4ed4c --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/60672-60927.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 60672-60927 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/60928-61183.pbf b/map_files/glyphs/Open Sans Bold/60928-61183.pbf new file mode 100755 index 0000000..ed9e58b --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/60928-61183.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 60928-61183 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/61184-61439.pbf b/map_files/glyphs/Open Sans Bold/61184-61439.pbf new file mode 100755 index 0000000..b3ef3df --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/61184-61439.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 61184-61439 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/6144-6399.pbf b/map_files/glyphs/Open Sans Bold/6144-6399.pbf new file mode 100755 index 0000000..7cd767e --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/6144-6399.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 6144-6399 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/61440-61695.pbf b/map_files/glyphs/Open Sans Bold/61440-61695.pbf new file mode 100755 index 0000000..d34556e --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/61440-61695.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 61440-61695 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/61696-61951.pbf b/map_files/glyphs/Open Sans Bold/61696-61951.pbf new file mode 100755 index 0000000..ae157ec --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/61696-61951.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 61696-61951 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/61952-62207.pbf b/map_files/glyphs/Open Sans Bold/61952-62207.pbf new file mode 100755 index 0000000..f706d57 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/61952-62207.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 61952-62207 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/62208-62463.pbf b/map_files/glyphs/Open Sans Bold/62208-62463.pbf new file mode 100755 index 0000000..dd41e45 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/62208-62463.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 62208-62463 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/62464-62719.pbf b/map_files/glyphs/Open Sans Bold/62464-62719.pbf new file mode 100755 index 0000000..0d474b4 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/62464-62719.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 62464-62719 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/62720-62975.pbf b/map_files/glyphs/Open Sans Bold/62720-62975.pbf new file mode 100755 index 0000000..6024056 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/62720-62975.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 62720-62975 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/62976-63231.pbf b/map_files/glyphs/Open Sans Bold/62976-63231.pbf new file mode 100755 index 0000000..d5926a7 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/62976-63231.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 62976-63231 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/63232-63487.pbf b/map_files/glyphs/Open Sans Bold/63232-63487.pbf new file mode 100755 index 0000000..8d1df78 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/63232-63487.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 63232-63487 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/63488-63743.pbf b/map_files/glyphs/Open Sans Bold/63488-63743.pbf new file mode 100755 index 0000000..2bb11df --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/63488-63743.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 63488-63743 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/63744-63999.pbf b/map_files/glyphs/Open Sans Bold/63744-63999.pbf new file mode 100755 index 0000000..49f5695 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/63744-63999.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 63744-63999 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/6400-6655.pbf b/map_files/glyphs/Open Sans Bold/6400-6655.pbf new file mode 100755 index 0000000..2ed4b66 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/6400-6655.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 6400-6655 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/64000-64255.pbf b/map_files/glyphs/Open Sans Bold/64000-64255.pbf new file mode 100755 index 0000000..c7690d3 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/64000-64255.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 64000-64255 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/64256-64511.pbf b/map_files/glyphs/Open Sans Bold/64256-64511.pbf new file mode 100755 index 0000000..f9df9d4 Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/64256-64511.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/64512-64767.pbf b/map_files/glyphs/Open Sans Bold/64512-64767.pbf new file mode 100755 index 0000000..eb724a9 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/64512-64767.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 64512-64767 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/64768-65023.pbf b/map_files/glyphs/Open Sans Bold/64768-65023.pbf new file mode 100755 index 0000000..977c6db --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/64768-65023.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 64768-65023 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/65024-65279.pbf b/map_files/glyphs/Open Sans Bold/65024-65279.pbf new file mode 100755 index 0000000..146f6de Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/65024-65279.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/65280-65533.pbf b/map_files/glyphs/Open Sans Bold/65280-65533.pbf new file mode 100755 index 0000000..0ed2468 Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/65280-65533.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/6656-6911.pbf b/map_files/glyphs/Open Sans Bold/6656-6911.pbf new file mode 100755 index 0000000..adc87a1 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/6656-6911.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 6656-6911 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/6912-7167.pbf b/map_files/glyphs/Open Sans Bold/6912-7167.pbf new file mode 100755 index 0000000..9a88167 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/6912-7167.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 6912-7167 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/7168-7423.pbf b/map_files/glyphs/Open Sans Bold/7168-7423.pbf new file mode 100755 index 0000000..a59652f --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/7168-7423.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 7168-7423 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/7424-7679.pbf b/map_files/glyphs/Open Sans Bold/7424-7679.pbf new file mode 100755 index 0000000..2ea1905 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/7424-7679.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 7424-7679 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/768-1023.pbf b/map_files/glyphs/Open Sans Bold/768-1023.pbf new file mode 100755 index 0000000..13e9a74 Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/768-1023.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/7680-7935.pbf b/map_files/glyphs/Open Sans Bold/7680-7935.pbf new file mode 100755 index 0000000..2700d55 Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/7680-7935.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/7936-8191.pbf b/map_files/glyphs/Open Sans Bold/7936-8191.pbf new file mode 100755 index 0000000..c8b7a06 Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/7936-8191.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/8192-8447.pbf b/map_files/glyphs/Open Sans Bold/8192-8447.pbf new file mode 100755 index 0000000..bde2ebb Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/8192-8447.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/8448-8703.pbf b/map_files/glyphs/Open Sans Bold/8448-8703.pbf new file mode 100755 index 0000000..0ddf32b Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/8448-8703.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/8704-8959.pbf b/map_files/glyphs/Open Sans Bold/8704-8959.pbf new file mode 100755 index 0000000..bf2264d Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/8704-8959.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/8960-9215.pbf b/map_files/glyphs/Open Sans Bold/8960-9215.pbf new file mode 100755 index 0000000..97aa889 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/8960-9215.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 8960-9215 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/9216-9471.pbf b/map_files/glyphs/Open Sans Bold/9216-9471.pbf new file mode 100755 index 0000000..0f02490 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/9216-9471.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 9216-9471 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/9472-9727.pbf b/map_files/glyphs/Open Sans Bold/9472-9727.pbf new file mode 100755 index 0000000..8518103 Binary files /dev/null and b/map_files/glyphs/Open Sans Bold/9472-9727.pbf differ diff --git a/map_files/glyphs/Open Sans Bold/9728-9983.pbf b/map_files/glyphs/Open Sans Bold/9728-9983.pbf new file mode 100755 index 0000000..c5d0032 --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/9728-9983.pbf @@ -0,0 +1,3 @@ + + +Open Sans Bold 9728-9983 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Bold/9984-10239.pbf b/map_files/glyphs/Open Sans Bold/9984-10239.pbf new file mode 100755 index 0000000..227e5af --- /dev/null +++ b/map_files/glyphs/Open Sans Bold/9984-10239.pbf @@ -0,0 +1,4 @@ + + +Open Sans Bold +9984-10239 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/0-255.pbf b/map_files/glyphs/Open Sans Italic/0-255.pbf new file mode 100755 index 0000000..5ef53ac Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/0-255.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/1024-1279.pbf b/map_files/glyphs/Open Sans Italic/1024-1279.pbf new file mode 100755 index 0000000..2705567 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/1024-1279.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/10240-10495.pbf b/map_files/glyphs/Open Sans Italic/10240-10495.pbf new file mode 100755 index 0000000..cf4bbd1 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/10240-10495.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 10240-10495 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/10496-10751.pbf b/map_files/glyphs/Open Sans Italic/10496-10751.pbf new file mode 100755 index 0000000..830c8ef --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/10496-10751.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 10496-10751 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/10752-11007.pbf b/map_files/glyphs/Open Sans Italic/10752-11007.pbf new file mode 100755 index 0000000..97055c9 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/10752-11007.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 10752-11007 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/11008-11263.pbf b/map_files/glyphs/Open Sans Italic/11008-11263.pbf new file mode 100755 index 0000000..e7aa16c --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/11008-11263.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 11008-11263 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/11264-11519.pbf b/map_files/glyphs/Open Sans Italic/11264-11519.pbf new file mode 100755 index 0000000..9d48f67 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/11264-11519.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 11264-11519 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/11520-11775.pbf b/map_files/glyphs/Open Sans Italic/11520-11775.pbf new file mode 100755 index 0000000..c0862f6 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/11520-11775.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 11520-11775 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/11776-12031.pbf b/map_files/glyphs/Open Sans Italic/11776-12031.pbf new file mode 100755 index 0000000..88ea4b9 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/11776-12031.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 11776-12031 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/12032-12287.pbf b/map_files/glyphs/Open Sans Italic/12032-12287.pbf new file mode 100755 index 0000000..feeff4f --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/12032-12287.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 12032-12287 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/12288-12543.pbf b/map_files/glyphs/Open Sans Italic/12288-12543.pbf new file mode 100755 index 0000000..521a159 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/12288-12543.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 12288-12543 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/12544-12799.pbf b/map_files/glyphs/Open Sans Italic/12544-12799.pbf new file mode 100755 index 0000000..c6dc094 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/12544-12799.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 12544-12799 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/1280-1535.pbf b/map_files/glyphs/Open Sans Italic/1280-1535.pbf new file mode 100755 index 0000000..509c8e8 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/1280-1535.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/12800-13055.pbf b/map_files/glyphs/Open Sans Italic/12800-13055.pbf new file mode 100755 index 0000000..8a3616c --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/12800-13055.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 12800-13055 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/13056-13311.pbf b/map_files/glyphs/Open Sans Italic/13056-13311.pbf new file mode 100755 index 0000000..3d4f0cb --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/13056-13311.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 13056-13311 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/13312-13567.pbf b/map_files/glyphs/Open Sans Italic/13312-13567.pbf new file mode 100755 index 0000000..2a38893 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/13312-13567.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 13312-13567 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/13568-13823.pbf b/map_files/glyphs/Open Sans Italic/13568-13823.pbf new file mode 100755 index 0000000..9ba8ab0 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/13568-13823.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 13568-13823 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/13824-14079.pbf b/map_files/glyphs/Open Sans Italic/13824-14079.pbf new file mode 100755 index 0000000..30a5859 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/13824-14079.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 13824-14079 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/14080-14335.pbf b/map_files/glyphs/Open Sans Italic/14080-14335.pbf new file mode 100755 index 0000000..e7560bd --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/14080-14335.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 14080-14335 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/14336-14591.pbf b/map_files/glyphs/Open Sans Italic/14336-14591.pbf new file mode 100755 index 0000000..3be0ff4 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/14336-14591.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 14336-14591 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/14592-14847.pbf b/map_files/glyphs/Open Sans Italic/14592-14847.pbf new file mode 100755 index 0000000..065b268 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/14592-14847.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 14592-14847 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/14848-15103.pbf b/map_files/glyphs/Open Sans Italic/14848-15103.pbf new file mode 100755 index 0000000..ac15e3f --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/14848-15103.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 14848-15103 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/15104-15359.pbf b/map_files/glyphs/Open Sans Italic/15104-15359.pbf new file mode 100755 index 0000000..fa68d95 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/15104-15359.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 15104-15359 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/1536-1791.pbf b/map_files/glyphs/Open Sans Italic/1536-1791.pbf new file mode 100755 index 0000000..63e88c5 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/1536-1791.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 1536-1791 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/15360-15615.pbf b/map_files/glyphs/Open Sans Italic/15360-15615.pbf new file mode 100755 index 0000000..4835dc1 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/15360-15615.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 15360-15615 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/15616-15871.pbf b/map_files/glyphs/Open Sans Italic/15616-15871.pbf new file mode 100755 index 0000000..b09d958 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/15616-15871.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 15616-15871 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/15872-16127.pbf b/map_files/glyphs/Open Sans Italic/15872-16127.pbf new file mode 100755 index 0000000..39a32f5 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/15872-16127.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 15872-16127 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/16128-16383.pbf b/map_files/glyphs/Open Sans Italic/16128-16383.pbf new file mode 100755 index 0000000..494d9f1 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/16128-16383.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 16128-16383 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/16384-16639.pbf b/map_files/glyphs/Open Sans Italic/16384-16639.pbf new file mode 100755 index 0000000..946e49a --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/16384-16639.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 16384-16639 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/16640-16895.pbf b/map_files/glyphs/Open Sans Italic/16640-16895.pbf new file mode 100755 index 0000000..acc4108 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/16640-16895.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 16640-16895 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/16896-17151.pbf b/map_files/glyphs/Open Sans Italic/16896-17151.pbf new file mode 100755 index 0000000..9ebe656 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/16896-17151.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 16896-17151 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/17152-17407.pbf b/map_files/glyphs/Open Sans Italic/17152-17407.pbf new file mode 100755 index 0000000..00b2193 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/17152-17407.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 17152-17407 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/17408-17663.pbf b/map_files/glyphs/Open Sans Italic/17408-17663.pbf new file mode 100755 index 0000000..d985dbb --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/17408-17663.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 17408-17663 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/17664-17919.pbf b/map_files/glyphs/Open Sans Italic/17664-17919.pbf new file mode 100755 index 0000000..90f5614 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/17664-17919.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 17664-17919 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/1792-2047.pbf b/map_files/glyphs/Open Sans Italic/1792-2047.pbf new file mode 100755 index 0000000..0f1eb0a --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/1792-2047.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 1792-2047 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/17920-18175.pbf b/map_files/glyphs/Open Sans Italic/17920-18175.pbf new file mode 100755 index 0000000..286fb85 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/17920-18175.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 17920-18175 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/18176-18431.pbf b/map_files/glyphs/Open Sans Italic/18176-18431.pbf new file mode 100755 index 0000000..75b0ee2 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/18176-18431.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 18176-18431 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/18432-18687.pbf b/map_files/glyphs/Open Sans Italic/18432-18687.pbf new file mode 100755 index 0000000..31a0ff5 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/18432-18687.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 18432-18687 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/18688-18943.pbf b/map_files/glyphs/Open Sans Italic/18688-18943.pbf new file mode 100755 index 0000000..6351986 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/18688-18943.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 18688-18943 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/18944-19199.pbf b/map_files/glyphs/Open Sans Italic/18944-19199.pbf new file mode 100755 index 0000000..a59ffd5 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/18944-19199.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 18944-19199 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/19200-19455.pbf b/map_files/glyphs/Open Sans Italic/19200-19455.pbf new file mode 100755 index 0000000..6947e73 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/19200-19455.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 19200-19455 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/19456-19711.pbf b/map_files/glyphs/Open Sans Italic/19456-19711.pbf new file mode 100755 index 0000000..1be52c6 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/19456-19711.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 19456-19711 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/19712-19967.pbf b/map_files/glyphs/Open Sans Italic/19712-19967.pbf new file mode 100755 index 0000000..c69a544 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/19712-19967.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 19712-19967 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/19968-20223.pbf b/map_files/glyphs/Open Sans Italic/19968-20223.pbf new file mode 100755 index 0000000..fbc71ea --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/19968-20223.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 19968-20223 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/20224-20479.pbf b/map_files/glyphs/Open Sans Italic/20224-20479.pbf new file mode 100755 index 0000000..522a5ec --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/20224-20479.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 20224-20479 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/2048-2303.pbf b/map_files/glyphs/Open Sans Italic/2048-2303.pbf new file mode 100755 index 0000000..34b3ce9 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/2048-2303.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 2048-2303 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/20480-20735.pbf b/map_files/glyphs/Open Sans Italic/20480-20735.pbf new file mode 100755 index 0000000..50d71fe --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/20480-20735.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 20480-20735 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/20736-20991.pbf b/map_files/glyphs/Open Sans Italic/20736-20991.pbf new file mode 100755 index 0000000..7eb76c2 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/20736-20991.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 20736-20991 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/20992-21247.pbf b/map_files/glyphs/Open Sans Italic/20992-21247.pbf new file mode 100755 index 0000000..b30afea --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/20992-21247.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 20992-21247 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/21248-21503.pbf b/map_files/glyphs/Open Sans Italic/21248-21503.pbf new file mode 100755 index 0000000..ac6de74 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/21248-21503.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 21248-21503 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/21504-21759.pbf b/map_files/glyphs/Open Sans Italic/21504-21759.pbf new file mode 100755 index 0000000..396df93 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/21504-21759.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 21504-21759 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/21760-22015.pbf b/map_files/glyphs/Open Sans Italic/21760-22015.pbf new file mode 100755 index 0000000..290698a --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/21760-22015.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 21760-22015 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/22016-22271.pbf b/map_files/glyphs/Open Sans Italic/22016-22271.pbf new file mode 100755 index 0000000..64a84b7 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/22016-22271.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 22016-22271 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/22272-22527.pbf b/map_files/glyphs/Open Sans Italic/22272-22527.pbf new file mode 100755 index 0000000..4dce00e --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/22272-22527.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 22272-22527 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/22528-22783.pbf b/map_files/glyphs/Open Sans Italic/22528-22783.pbf new file mode 100755 index 0000000..dba08a0 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/22528-22783.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 22528-22783 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/22784-23039.pbf b/map_files/glyphs/Open Sans Italic/22784-23039.pbf new file mode 100755 index 0000000..1a662d1 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/22784-23039.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 22784-23039 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/2304-2559.pbf b/map_files/glyphs/Open Sans Italic/2304-2559.pbf new file mode 100755 index 0000000..70eb8f0 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/2304-2559.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 2304-2559 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/23040-23295.pbf b/map_files/glyphs/Open Sans Italic/23040-23295.pbf new file mode 100755 index 0000000..579b827 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/23040-23295.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 23040-23295 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/23296-23551.pbf b/map_files/glyphs/Open Sans Italic/23296-23551.pbf new file mode 100755 index 0000000..11f416e --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/23296-23551.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 23296-23551 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/23552-23807.pbf b/map_files/glyphs/Open Sans Italic/23552-23807.pbf new file mode 100755 index 0000000..9e6b3c8 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/23552-23807.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 23552-23807 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/23808-24063.pbf b/map_files/glyphs/Open Sans Italic/23808-24063.pbf new file mode 100755 index 0000000..52fc762 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/23808-24063.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 23808-24063 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/24064-24319.pbf b/map_files/glyphs/Open Sans Italic/24064-24319.pbf new file mode 100755 index 0000000..a84c8a0 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/24064-24319.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 24064-24319 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/24320-24575.pbf b/map_files/glyphs/Open Sans Italic/24320-24575.pbf new file mode 100755 index 0000000..a509a7d --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/24320-24575.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 24320-24575 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/24576-24831.pbf b/map_files/glyphs/Open Sans Italic/24576-24831.pbf new file mode 100755 index 0000000..6cad18a --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/24576-24831.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 24576-24831 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/24832-25087.pbf b/map_files/glyphs/Open Sans Italic/24832-25087.pbf new file mode 100755 index 0000000..d718a5e --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/24832-25087.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 24832-25087 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/25088-25343.pbf b/map_files/glyphs/Open Sans Italic/25088-25343.pbf new file mode 100755 index 0000000..b7e6779 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/25088-25343.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 25088-25343 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/25344-25599.pbf b/map_files/glyphs/Open Sans Italic/25344-25599.pbf new file mode 100755 index 0000000..fd46712 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/25344-25599.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 25344-25599 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/256-511.pbf b/map_files/glyphs/Open Sans Italic/256-511.pbf new file mode 100755 index 0000000..2d23178 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/256-511.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/2560-2815.pbf b/map_files/glyphs/Open Sans Italic/2560-2815.pbf new file mode 100755 index 0000000..adfb426 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/2560-2815.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 2560-2815 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/25600-25855.pbf b/map_files/glyphs/Open Sans Italic/25600-25855.pbf new file mode 100755 index 0000000..0be4c41 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/25600-25855.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 25600-25855 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/25856-26111.pbf b/map_files/glyphs/Open Sans Italic/25856-26111.pbf new file mode 100755 index 0000000..62277c8 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/25856-26111.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 25856-26111 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/26112-26367.pbf b/map_files/glyphs/Open Sans Italic/26112-26367.pbf new file mode 100755 index 0000000..cf533d7 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/26112-26367.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 26112-26367 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/26368-26623.pbf b/map_files/glyphs/Open Sans Italic/26368-26623.pbf new file mode 100755 index 0000000..99a7140 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/26368-26623.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 26368-26623 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/26624-26879.pbf b/map_files/glyphs/Open Sans Italic/26624-26879.pbf new file mode 100755 index 0000000..f5809df --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/26624-26879.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 26624-26879 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/26880-27135.pbf b/map_files/glyphs/Open Sans Italic/26880-27135.pbf new file mode 100755 index 0000000..2a40d09 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/26880-27135.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 26880-27135 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/27136-27391.pbf b/map_files/glyphs/Open Sans Italic/27136-27391.pbf new file mode 100755 index 0000000..512b540 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/27136-27391.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 27136-27391 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/27392-27647.pbf b/map_files/glyphs/Open Sans Italic/27392-27647.pbf new file mode 100755 index 0000000..da1082d --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/27392-27647.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 27392-27647 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/27648-27903.pbf b/map_files/glyphs/Open Sans Italic/27648-27903.pbf new file mode 100755 index 0000000..3baef7d --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/27648-27903.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 27648-27903 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/27904-28159.pbf b/map_files/glyphs/Open Sans Italic/27904-28159.pbf new file mode 100755 index 0000000..c429894 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/27904-28159.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 27904-28159 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/2816-3071.pbf b/map_files/glyphs/Open Sans Italic/2816-3071.pbf new file mode 100755 index 0000000..17c4397 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/2816-3071.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 2816-3071 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/28160-28415.pbf b/map_files/glyphs/Open Sans Italic/28160-28415.pbf new file mode 100755 index 0000000..dd0fa28 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/28160-28415.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 28160-28415 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/28416-28671.pbf b/map_files/glyphs/Open Sans Italic/28416-28671.pbf new file mode 100755 index 0000000..96ead0c --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/28416-28671.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 28416-28671 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/28672-28927.pbf b/map_files/glyphs/Open Sans Italic/28672-28927.pbf new file mode 100755 index 0000000..874d872 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/28672-28927.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 28672-28927 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/28928-29183.pbf b/map_files/glyphs/Open Sans Italic/28928-29183.pbf new file mode 100755 index 0000000..d00bdf2 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/28928-29183.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 28928-29183 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/29184-29439.pbf b/map_files/glyphs/Open Sans Italic/29184-29439.pbf new file mode 100755 index 0000000..cbf863b --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/29184-29439.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 29184-29439 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/29440-29695.pbf b/map_files/glyphs/Open Sans Italic/29440-29695.pbf new file mode 100755 index 0000000..49c3a61 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/29440-29695.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 29440-29695 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/29696-29951.pbf b/map_files/glyphs/Open Sans Italic/29696-29951.pbf new file mode 100755 index 0000000..7edf0a8 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/29696-29951.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 29696-29951 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/29952-30207.pbf b/map_files/glyphs/Open Sans Italic/29952-30207.pbf new file mode 100755 index 0000000..ecd9f7b --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/29952-30207.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 29952-30207 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/30208-30463.pbf b/map_files/glyphs/Open Sans Italic/30208-30463.pbf new file mode 100755 index 0000000..cdabbeb --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/30208-30463.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 30208-30463 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/30464-30719.pbf b/map_files/glyphs/Open Sans Italic/30464-30719.pbf new file mode 100755 index 0000000..e595082 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/30464-30719.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 30464-30719 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/3072-3327.pbf b/map_files/glyphs/Open Sans Italic/3072-3327.pbf new file mode 100755 index 0000000..da75575 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/3072-3327.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 3072-3327 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/30720-30975.pbf b/map_files/glyphs/Open Sans Italic/30720-30975.pbf new file mode 100755 index 0000000..728c231 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/30720-30975.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 30720-30975 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/30976-31231.pbf b/map_files/glyphs/Open Sans Italic/30976-31231.pbf new file mode 100755 index 0000000..3edd61b --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/30976-31231.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 30976-31231 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/31232-31487.pbf b/map_files/glyphs/Open Sans Italic/31232-31487.pbf new file mode 100755 index 0000000..72698a7 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/31232-31487.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 31232-31487 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/31488-31743.pbf b/map_files/glyphs/Open Sans Italic/31488-31743.pbf new file mode 100755 index 0000000..a9c3145 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/31488-31743.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 31488-31743 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/31744-31999.pbf b/map_files/glyphs/Open Sans Italic/31744-31999.pbf new file mode 100755 index 0000000..326ab71 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/31744-31999.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 31744-31999 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/32000-32255.pbf b/map_files/glyphs/Open Sans Italic/32000-32255.pbf new file mode 100755 index 0000000..21733b0 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/32000-32255.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 32000-32255 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/32256-32511.pbf b/map_files/glyphs/Open Sans Italic/32256-32511.pbf new file mode 100755 index 0000000..45e4430 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/32256-32511.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 32256-32511 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/32512-32767.pbf b/map_files/glyphs/Open Sans Italic/32512-32767.pbf new file mode 100755 index 0000000..2ba36b6 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/32512-32767.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 32512-32767 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/32768-33023.pbf b/map_files/glyphs/Open Sans Italic/32768-33023.pbf new file mode 100755 index 0000000..68cabfd --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/32768-33023.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 32768-33023 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/33024-33279.pbf b/map_files/glyphs/Open Sans Italic/33024-33279.pbf new file mode 100755 index 0000000..3213dfd --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/33024-33279.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 33024-33279 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/3328-3583.pbf b/map_files/glyphs/Open Sans Italic/3328-3583.pbf new file mode 100755 index 0000000..f999389 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/3328-3583.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 3328-3583 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/33280-33535.pbf b/map_files/glyphs/Open Sans Italic/33280-33535.pbf new file mode 100755 index 0000000..90b8898 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/33280-33535.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 33280-33535 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/33536-33791.pbf b/map_files/glyphs/Open Sans Italic/33536-33791.pbf new file mode 100755 index 0000000..cfd710b --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/33536-33791.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 33536-33791 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/33792-34047.pbf b/map_files/glyphs/Open Sans Italic/33792-34047.pbf new file mode 100755 index 0000000..6180476 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/33792-34047.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 33792-34047 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/34048-34303.pbf b/map_files/glyphs/Open Sans Italic/34048-34303.pbf new file mode 100755 index 0000000..ec2049a --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/34048-34303.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 34048-34303 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/34304-34559.pbf b/map_files/glyphs/Open Sans Italic/34304-34559.pbf new file mode 100755 index 0000000..648a4b6 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/34304-34559.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 34304-34559 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/34560-34815.pbf b/map_files/glyphs/Open Sans Italic/34560-34815.pbf new file mode 100755 index 0000000..8a9dede --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/34560-34815.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 34560-34815 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/34816-35071.pbf b/map_files/glyphs/Open Sans Italic/34816-35071.pbf new file mode 100755 index 0000000..ed99aef --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/34816-35071.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 34816-35071 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/35072-35327.pbf b/map_files/glyphs/Open Sans Italic/35072-35327.pbf new file mode 100755 index 0000000..a0cf02a --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/35072-35327.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 35072-35327 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/35328-35583.pbf b/map_files/glyphs/Open Sans Italic/35328-35583.pbf new file mode 100755 index 0000000..5bbd58c --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/35328-35583.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 35328-35583 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/35584-35839.pbf b/map_files/glyphs/Open Sans Italic/35584-35839.pbf new file mode 100755 index 0000000..0c047ec --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/35584-35839.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 35584-35839 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/3584-3839.pbf b/map_files/glyphs/Open Sans Italic/3584-3839.pbf new file mode 100755 index 0000000..591ab9f --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/3584-3839.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 3584-3839 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/35840-36095.pbf b/map_files/glyphs/Open Sans Italic/35840-36095.pbf new file mode 100755 index 0000000..00c776a --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/35840-36095.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 35840-36095 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/36096-36351.pbf b/map_files/glyphs/Open Sans Italic/36096-36351.pbf new file mode 100755 index 0000000..b95d604 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/36096-36351.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 36096-36351 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/36352-36607.pbf b/map_files/glyphs/Open Sans Italic/36352-36607.pbf new file mode 100755 index 0000000..2e2ce7f --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/36352-36607.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 36352-36607 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/36608-36863.pbf b/map_files/glyphs/Open Sans Italic/36608-36863.pbf new file mode 100755 index 0000000..f8948a4 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/36608-36863.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 36608-36863 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/36864-37119.pbf b/map_files/glyphs/Open Sans Italic/36864-37119.pbf new file mode 100755 index 0000000..19984f1 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/36864-37119.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 36864-37119 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/37120-37375.pbf b/map_files/glyphs/Open Sans Italic/37120-37375.pbf new file mode 100755 index 0000000..35a8c15 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/37120-37375.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 37120-37375 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/37376-37631.pbf b/map_files/glyphs/Open Sans Italic/37376-37631.pbf new file mode 100755 index 0000000..25ef07d --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/37376-37631.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 37376-37631 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/37632-37887.pbf b/map_files/glyphs/Open Sans Italic/37632-37887.pbf new file mode 100755 index 0000000..974b5b5 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/37632-37887.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 37632-37887 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/37888-38143.pbf b/map_files/glyphs/Open Sans Italic/37888-38143.pbf new file mode 100755 index 0000000..048418e --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/37888-38143.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 37888-38143 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/38144-38399.pbf b/map_files/glyphs/Open Sans Italic/38144-38399.pbf new file mode 100755 index 0000000..c5272a4 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/38144-38399.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 38144-38399 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/3840-4095.pbf b/map_files/glyphs/Open Sans Italic/3840-4095.pbf new file mode 100755 index 0000000..7f69577 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/3840-4095.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 3840-4095 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/38400-38655.pbf b/map_files/glyphs/Open Sans Italic/38400-38655.pbf new file mode 100755 index 0000000..69e3a8d --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/38400-38655.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 38400-38655 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/38656-38911.pbf b/map_files/glyphs/Open Sans Italic/38656-38911.pbf new file mode 100755 index 0000000..56d422b --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/38656-38911.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 38656-38911 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/38912-39167.pbf b/map_files/glyphs/Open Sans Italic/38912-39167.pbf new file mode 100755 index 0000000..ac52506 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/38912-39167.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 38912-39167 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/39168-39423.pbf b/map_files/glyphs/Open Sans Italic/39168-39423.pbf new file mode 100755 index 0000000..99941bf --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/39168-39423.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 39168-39423 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/39424-39679.pbf b/map_files/glyphs/Open Sans Italic/39424-39679.pbf new file mode 100755 index 0000000..8879307 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/39424-39679.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 39424-39679 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/39680-39935.pbf b/map_files/glyphs/Open Sans Italic/39680-39935.pbf new file mode 100755 index 0000000..a9c879d --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/39680-39935.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 39680-39935 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/39936-40191.pbf b/map_files/glyphs/Open Sans Italic/39936-40191.pbf new file mode 100755 index 0000000..63aa20c --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/39936-40191.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 39936-40191 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/40192-40447.pbf b/map_files/glyphs/Open Sans Italic/40192-40447.pbf new file mode 100755 index 0000000..59e480f --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/40192-40447.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 40192-40447 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/40448-40703.pbf b/map_files/glyphs/Open Sans Italic/40448-40703.pbf new file mode 100755 index 0000000..8dc820a --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/40448-40703.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 40448-40703 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/40704-40959.pbf b/map_files/glyphs/Open Sans Italic/40704-40959.pbf new file mode 100755 index 0000000..19cf702 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/40704-40959.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 40704-40959 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/4096-4351.pbf b/map_files/glyphs/Open Sans Italic/4096-4351.pbf new file mode 100755 index 0000000..78e1c82 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/4096-4351.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 4096-4351 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/40960-41215.pbf b/map_files/glyphs/Open Sans Italic/40960-41215.pbf new file mode 100755 index 0000000..e0d8fee --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/40960-41215.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 40960-41215 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/41216-41471.pbf b/map_files/glyphs/Open Sans Italic/41216-41471.pbf new file mode 100755 index 0000000..56adaa7 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/41216-41471.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 41216-41471 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/41472-41727.pbf b/map_files/glyphs/Open Sans Italic/41472-41727.pbf new file mode 100755 index 0000000..29bee6a --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/41472-41727.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 41472-41727 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/41728-41983.pbf b/map_files/glyphs/Open Sans Italic/41728-41983.pbf new file mode 100755 index 0000000..4d9f501 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/41728-41983.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 41728-41983 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/41984-42239.pbf b/map_files/glyphs/Open Sans Italic/41984-42239.pbf new file mode 100755 index 0000000..f0baaf0 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/41984-42239.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 41984-42239 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/42240-42495.pbf b/map_files/glyphs/Open Sans Italic/42240-42495.pbf new file mode 100755 index 0000000..2add832 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/42240-42495.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 42240-42495 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/42496-42751.pbf b/map_files/glyphs/Open Sans Italic/42496-42751.pbf new file mode 100755 index 0000000..cdc5cf0 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/42496-42751.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 42496-42751 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/42752-43007.pbf b/map_files/glyphs/Open Sans Italic/42752-43007.pbf new file mode 100755 index 0000000..58eb3a0 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/42752-43007.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 42752-43007 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/43008-43263.pbf b/map_files/glyphs/Open Sans Italic/43008-43263.pbf new file mode 100755 index 0000000..703f323 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/43008-43263.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 43008-43263 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/43264-43519.pbf b/map_files/glyphs/Open Sans Italic/43264-43519.pbf new file mode 100755 index 0000000..7faf8ad --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/43264-43519.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 43264-43519 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/4352-4607.pbf b/map_files/glyphs/Open Sans Italic/4352-4607.pbf new file mode 100755 index 0000000..32c83e4 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/4352-4607.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 4352-4607 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/43520-43775.pbf b/map_files/glyphs/Open Sans Italic/43520-43775.pbf new file mode 100755 index 0000000..50c03f8 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/43520-43775.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 43520-43775 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/43776-44031.pbf b/map_files/glyphs/Open Sans Italic/43776-44031.pbf new file mode 100755 index 0000000..b83d817 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/43776-44031.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 43776-44031 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/44032-44287.pbf b/map_files/glyphs/Open Sans Italic/44032-44287.pbf new file mode 100755 index 0000000..b6aaaff --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/44032-44287.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 44032-44287 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/44288-44543.pbf b/map_files/glyphs/Open Sans Italic/44288-44543.pbf new file mode 100755 index 0000000..8836e84 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/44288-44543.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 44288-44543 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/44544-44799.pbf b/map_files/glyphs/Open Sans Italic/44544-44799.pbf new file mode 100755 index 0000000..38b6f31 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/44544-44799.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 44544-44799 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/44800-45055.pbf b/map_files/glyphs/Open Sans Italic/44800-45055.pbf new file mode 100755 index 0000000..69681dc --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/44800-45055.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 44800-45055 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/45056-45311.pbf b/map_files/glyphs/Open Sans Italic/45056-45311.pbf new file mode 100755 index 0000000..f9ea8c2 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/45056-45311.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 45056-45311 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/45312-45567.pbf b/map_files/glyphs/Open Sans Italic/45312-45567.pbf new file mode 100755 index 0000000..8dbd98d --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/45312-45567.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 45312-45567 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/45568-45823.pbf b/map_files/glyphs/Open Sans Italic/45568-45823.pbf new file mode 100755 index 0000000..87b6224 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/45568-45823.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 45568-45823 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/45824-46079.pbf b/map_files/glyphs/Open Sans Italic/45824-46079.pbf new file mode 100755 index 0000000..075be45 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/45824-46079.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 45824-46079 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/4608-4863.pbf b/map_files/glyphs/Open Sans Italic/4608-4863.pbf new file mode 100755 index 0000000..e7ff25d --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/4608-4863.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 4608-4863 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/46080-46335.pbf b/map_files/glyphs/Open Sans Italic/46080-46335.pbf new file mode 100755 index 0000000..df064f5 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/46080-46335.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 46080-46335 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/46336-46591.pbf b/map_files/glyphs/Open Sans Italic/46336-46591.pbf new file mode 100755 index 0000000..362dbb3 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/46336-46591.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 46336-46591 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/46592-46847.pbf b/map_files/glyphs/Open Sans Italic/46592-46847.pbf new file mode 100755 index 0000000..64e63f4 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/46592-46847.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 46592-46847 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/46848-47103.pbf b/map_files/glyphs/Open Sans Italic/46848-47103.pbf new file mode 100755 index 0000000..ec3a6b1 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/46848-47103.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 46848-47103 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/47104-47359.pbf b/map_files/glyphs/Open Sans Italic/47104-47359.pbf new file mode 100755 index 0000000..7e5d2dc --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/47104-47359.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 47104-47359 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/47360-47615.pbf b/map_files/glyphs/Open Sans Italic/47360-47615.pbf new file mode 100755 index 0000000..f25f1b1 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/47360-47615.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 47360-47615 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/47616-47871.pbf b/map_files/glyphs/Open Sans Italic/47616-47871.pbf new file mode 100755 index 0000000..f57d584 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/47616-47871.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 47616-47871 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/47872-48127.pbf b/map_files/glyphs/Open Sans Italic/47872-48127.pbf new file mode 100755 index 0000000..1f2dc87 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/47872-48127.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 47872-48127 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/48128-48383.pbf b/map_files/glyphs/Open Sans Italic/48128-48383.pbf new file mode 100755 index 0000000..5ccb7a7 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/48128-48383.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 48128-48383 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/48384-48639.pbf b/map_files/glyphs/Open Sans Italic/48384-48639.pbf new file mode 100755 index 0000000..1a73356 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/48384-48639.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 48384-48639 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/4864-5119.pbf b/map_files/glyphs/Open Sans Italic/4864-5119.pbf new file mode 100755 index 0000000..bb47e90 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/4864-5119.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 4864-5119 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/48640-48895.pbf b/map_files/glyphs/Open Sans Italic/48640-48895.pbf new file mode 100755 index 0000000..ef87f49 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/48640-48895.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 48640-48895 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/48896-49151.pbf b/map_files/glyphs/Open Sans Italic/48896-49151.pbf new file mode 100755 index 0000000..76f715b --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/48896-49151.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 48896-49151 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/49152-49407.pbf b/map_files/glyphs/Open Sans Italic/49152-49407.pbf new file mode 100755 index 0000000..f544329 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/49152-49407.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 49152-49407 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/49408-49663.pbf b/map_files/glyphs/Open Sans Italic/49408-49663.pbf new file mode 100755 index 0000000..f7397bb --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/49408-49663.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 49408-49663 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/49664-49919.pbf b/map_files/glyphs/Open Sans Italic/49664-49919.pbf new file mode 100755 index 0000000..97b2ded --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/49664-49919.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 49664-49919 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/49920-50175.pbf b/map_files/glyphs/Open Sans Italic/49920-50175.pbf new file mode 100755 index 0000000..ff92a5a --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/49920-50175.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 49920-50175 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/50176-50431.pbf b/map_files/glyphs/Open Sans Italic/50176-50431.pbf new file mode 100755 index 0000000..fb70c2a --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/50176-50431.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 50176-50431 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/50432-50687.pbf b/map_files/glyphs/Open Sans Italic/50432-50687.pbf new file mode 100755 index 0000000..8d0f5c8 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/50432-50687.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 50432-50687 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/50688-50943.pbf b/map_files/glyphs/Open Sans Italic/50688-50943.pbf new file mode 100755 index 0000000..6316da3 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/50688-50943.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 50688-50943 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/50944-51199.pbf b/map_files/glyphs/Open Sans Italic/50944-51199.pbf new file mode 100755 index 0000000..5848de1 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/50944-51199.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 50944-51199 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/512-767.pbf b/map_files/glyphs/Open Sans Italic/512-767.pbf new file mode 100755 index 0000000..4197894 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/512-767.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/5120-5375.pbf b/map_files/glyphs/Open Sans Italic/5120-5375.pbf new file mode 100755 index 0000000..39bbb6a --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/5120-5375.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 5120-5375 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/51200-51455.pbf b/map_files/glyphs/Open Sans Italic/51200-51455.pbf new file mode 100755 index 0000000..8a496aa --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/51200-51455.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 51200-51455 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/51456-51711.pbf b/map_files/glyphs/Open Sans Italic/51456-51711.pbf new file mode 100755 index 0000000..dc655d7 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/51456-51711.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 51456-51711 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/51712-51967.pbf b/map_files/glyphs/Open Sans Italic/51712-51967.pbf new file mode 100755 index 0000000..16e1684 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/51712-51967.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 51712-51967 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/51968-52223.pbf b/map_files/glyphs/Open Sans Italic/51968-52223.pbf new file mode 100755 index 0000000..fd95669 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/51968-52223.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 51968-52223 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/52224-52479.pbf b/map_files/glyphs/Open Sans Italic/52224-52479.pbf new file mode 100755 index 0000000..6c9b55c --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/52224-52479.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 52224-52479 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/52480-52735.pbf b/map_files/glyphs/Open Sans Italic/52480-52735.pbf new file mode 100755 index 0000000..8c4f77c --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/52480-52735.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 52480-52735 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/52736-52991.pbf b/map_files/glyphs/Open Sans Italic/52736-52991.pbf new file mode 100755 index 0000000..e84d1bf --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/52736-52991.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 52736-52991 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/52992-53247.pbf b/map_files/glyphs/Open Sans Italic/52992-53247.pbf new file mode 100755 index 0000000..5cab84a --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/52992-53247.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 52992-53247 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/53248-53503.pbf b/map_files/glyphs/Open Sans Italic/53248-53503.pbf new file mode 100755 index 0000000..f39165c --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/53248-53503.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 53248-53503 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/53504-53759.pbf b/map_files/glyphs/Open Sans Italic/53504-53759.pbf new file mode 100755 index 0000000..e66957c --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/53504-53759.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 53504-53759 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/5376-5631.pbf b/map_files/glyphs/Open Sans Italic/5376-5631.pbf new file mode 100755 index 0000000..4d7d9b2 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/5376-5631.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 5376-5631 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/53760-54015.pbf b/map_files/glyphs/Open Sans Italic/53760-54015.pbf new file mode 100755 index 0000000..6446f62 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/53760-54015.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 53760-54015 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/54016-54271.pbf b/map_files/glyphs/Open Sans Italic/54016-54271.pbf new file mode 100755 index 0000000..d78026f --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/54016-54271.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 54016-54271 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/54272-54527.pbf b/map_files/glyphs/Open Sans Italic/54272-54527.pbf new file mode 100755 index 0000000..ce325b0 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/54272-54527.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 54272-54527 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/54528-54783.pbf b/map_files/glyphs/Open Sans Italic/54528-54783.pbf new file mode 100755 index 0000000..efaf762 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/54528-54783.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 54528-54783 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/54784-55039.pbf b/map_files/glyphs/Open Sans Italic/54784-55039.pbf new file mode 100755 index 0000000..ece7839 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/54784-55039.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 54784-55039 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/55040-55295.pbf b/map_files/glyphs/Open Sans Italic/55040-55295.pbf new file mode 100755 index 0000000..1bde0cb --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/55040-55295.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 55040-55295 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/55296-55551.pbf b/map_files/glyphs/Open Sans Italic/55296-55551.pbf new file mode 100755 index 0000000..bfc996b --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/55296-55551.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 55296-55551 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/55552-55807.pbf b/map_files/glyphs/Open Sans Italic/55552-55807.pbf new file mode 100755 index 0000000..ecd35fa --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/55552-55807.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 55552-55807 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/55808-56063.pbf b/map_files/glyphs/Open Sans Italic/55808-56063.pbf new file mode 100755 index 0000000..e14ed90 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/55808-56063.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 55808-56063 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/56064-56319.pbf b/map_files/glyphs/Open Sans Italic/56064-56319.pbf new file mode 100755 index 0000000..07b853e --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/56064-56319.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 56064-56319 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/5632-5887.pbf b/map_files/glyphs/Open Sans Italic/5632-5887.pbf new file mode 100755 index 0000000..6a9d211 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/5632-5887.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 5632-5887 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/56320-56575.pbf b/map_files/glyphs/Open Sans Italic/56320-56575.pbf new file mode 100755 index 0000000..94ebd74 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/56320-56575.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 56320-56575 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/56576-56831.pbf b/map_files/glyphs/Open Sans Italic/56576-56831.pbf new file mode 100755 index 0000000..a4a5a6d --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/56576-56831.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 56576-56831 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/56832-57087.pbf b/map_files/glyphs/Open Sans Italic/56832-57087.pbf new file mode 100755 index 0000000..6b07780 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/56832-57087.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 56832-57087 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/57088-57343.pbf b/map_files/glyphs/Open Sans Italic/57088-57343.pbf new file mode 100755 index 0000000..4fa2e8d --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/57088-57343.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 57088-57343 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/57344-57599.pbf b/map_files/glyphs/Open Sans Italic/57344-57599.pbf new file mode 100755 index 0000000..4658343 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/57344-57599.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 57344-57599 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/57600-57855.pbf b/map_files/glyphs/Open Sans Italic/57600-57855.pbf new file mode 100755 index 0000000..b3abc7b --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/57600-57855.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 57600-57855 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/57856-58111.pbf b/map_files/glyphs/Open Sans Italic/57856-58111.pbf new file mode 100755 index 0000000..d558ea1 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/57856-58111.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 57856-58111 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/58112-58367.pbf b/map_files/glyphs/Open Sans Italic/58112-58367.pbf new file mode 100755 index 0000000..bb130c4 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/58112-58367.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 58112-58367 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/58368-58623.pbf b/map_files/glyphs/Open Sans Italic/58368-58623.pbf new file mode 100755 index 0000000..62bdfb9 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/58368-58623.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 58368-58623 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/58624-58879.pbf b/map_files/glyphs/Open Sans Italic/58624-58879.pbf new file mode 100755 index 0000000..2f371bf --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/58624-58879.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 58624-58879 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/5888-6143.pbf b/map_files/glyphs/Open Sans Italic/5888-6143.pbf new file mode 100755 index 0000000..cef5d41 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/5888-6143.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 5888-6143 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/58880-59135.pbf b/map_files/glyphs/Open Sans Italic/58880-59135.pbf new file mode 100755 index 0000000..ea2a1f9 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/58880-59135.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 58880-59135 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/59136-59391.pbf b/map_files/glyphs/Open Sans Italic/59136-59391.pbf new file mode 100755 index 0000000..0e4b480 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/59136-59391.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 59136-59391 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/59392-59647.pbf b/map_files/glyphs/Open Sans Italic/59392-59647.pbf new file mode 100755 index 0000000..fe212e0 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/59392-59647.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 59392-59647 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/59648-59903.pbf b/map_files/glyphs/Open Sans Italic/59648-59903.pbf new file mode 100755 index 0000000..b029aec --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/59648-59903.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 59648-59903 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/59904-60159.pbf b/map_files/glyphs/Open Sans Italic/59904-60159.pbf new file mode 100755 index 0000000..34312fe --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/59904-60159.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 59904-60159 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/60160-60415.pbf b/map_files/glyphs/Open Sans Italic/60160-60415.pbf new file mode 100755 index 0000000..637f6fe --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/60160-60415.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 60160-60415 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/60416-60671.pbf b/map_files/glyphs/Open Sans Italic/60416-60671.pbf new file mode 100755 index 0000000..78cecaa --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/60416-60671.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 60416-60671 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/60672-60927.pbf b/map_files/glyphs/Open Sans Italic/60672-60927.pbf new file mode 100755 index 0000000..4c5d294 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/60672-60927.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 60672-60927 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/60928-61183.pbf b/map_files/glyphs/Open Sans Italic/60928-61183.pbf new file mode 100755 index 0000000..eac415b --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/60928-61183.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 60928-61183 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/61184-61439.pbf b/map_files/glyphs/Open Sans Italic/61184-61439.pbf new file mode 100755 index 0000000..1b77990 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/61184-61439.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 61184-61439 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/6144-6399.pbf b/map_files/glyphs/Open Sans Italic/6144-6399.pbf new file mode 100755 index 0000000..544b645 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/6144-6399.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 6144-6399 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/61440-61695.pbf b/map_files/glyphs/Open Sans Italic/61440-61695.pbf new file mode 100755 index 0000000..c2d84ff --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/61440-61695.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 61440-61695 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/61696-61951.pbf b/map_files/glyphs/Open Sans Italic/61696-61951.pbf new file mode 100755 index 0000000..3234be6 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/61696-61951.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 61696-61951 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/61952-62207.pbf b/map_files/glyphs/Open Sans Italic/61952-62207.pbf new file mode 100755 index 0000000..a45c8eb --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/61952-62207.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 61952-62207 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/62208-62463.pbf b/map_files/glyphs/Open Sans Italic/62208-62463.pbf new file mode 100755 index 0000000..1a4515d --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/62208-62463.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 62208-62463 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/62464-62719.pbf b/map_files/glyphs/Open Sans Italic/62464-62719.pbf new file mode 100755 index 0000000..0dea426 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/62464-62719.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 62464-62719 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/62720-62975.pbf b/map_files/glyphs/Open Sans Italic/62720-62975.pbf new file mode 100755 index 0000000..8545687 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/62720-62975.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 62720-62975 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/62976-63231.pbf b/map_files/glyphs/Open Sans Italic/62976-63231.pbf new file mode 100755 index 0000000..b0f5881 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/62976-63231.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 62976-63231 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/63232-63487.pbf b/map_files/glyphs/Open Sans Italic/63232-63487.pbf new file mode 100755 index 0000000..508f830 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/63232-63487.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 63232-63487 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/63488-63743.pbf b/map_files/glyphs/Open Sans Italic/63488-63743.pbf new file mode 100755 index 0000000..7516396 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/63488-63743.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 63488-63743 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/63744-63999.pbf b/map_files/glyphs/Open Sans Italic/63744-63999.pbf new file mode 100755 index 0000000..2231fac --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/63744-63999.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 63744-63999 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/6400-6655.pbf b/map_files/glyphs/Open Sans Italic/6400-6655.pbf new file mode 100755 index 0000000..eb094c2 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/6400-6655.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 6400-6655 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/64000-64255.pbf b/map_files/glyphs/Open Sans Italic/64000-64255.pbf new file mode 100755 index 0000000..4da8c5d --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/64000-64255.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 64000-64255 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/64256-64511.pbf b/map_files/glyphs/Open Sans Italic/64256-64511.pbf new file mode 100755 index 0000000..4538008 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/64256-64511.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/64512-64767.pbf b/map_files/glyphs/Open Sans Italic/64512-64767.pbf new file mode 100755 index 0000000..db62c20 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/64512-64767.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 64512-64767 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/64768-65023.pbf b/map_files/glyphs/Open Sans Italic/64768-65023.pbf new file mode 100755 index 0000000..314de75 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/64768-65023.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 64768-65023 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/65024-65279.pbf b/map_files/glyphs/Open Sans Italic/65024-65279.pbf new file mode 100755 index 0000000..a63baa9 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/65024-65279.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/65280-65533.pbf b/map_files/glyphs/Open Sans Italic/65280-65533.pbf new file mode 100755 index 0000000..661ebe4 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/65280-65533.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/6656-6911.pbf b/map_files/glyphs/Open Sans Italic/6656-6911.pbf new file mode 100755 index 0000000..70412fc --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/6656-6911.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 6656-6911 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/6912-7167.pbf b/map_files/glyphs/Open Sans Italic/6912-7167.pbf new file mode 100755 index 0000000..7c54776 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/6912-7167.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 6912-7167 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/7168-7423.pbf b/map_files/glyphs/Open Sans Italic/7168-7423.pbf new file mode 100755 index 0000000..00be530 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/7168-7423.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 7168-7423 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/7424-7679.pbf b/map_files/glyphs/Open Sans Italic/7424-7679.pbf new file mode 100755 index 0000000..9072efb --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/7424-7679.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 7424-7679 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/768-1023.pbf b/map_files/glyphs/Open Sans Italic/768-1023.pbf new file mode 100755 index 0000000..5e9f6e9 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/768-1023.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/7680-7935.pbf b/map_files/glyphs/Open Sans Italic/7680-7935.pbf new file mode 100755 index 0000000..0d077a6 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/7680-7935.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/7936-8191.pbf b/map_files/glyphs/Open Sans Italic/7936-8191.pbf new file mode 100755 index 0000000..0581f40 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/7936-8191.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/8192-8447.pbf b/map_files/glyphs/Open Sans Italic/8192-8447.pbf new file mode 100755 index 0000000..63e4a89 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/8192-8447.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/8448-8703.pbf b/map_files/glyphs/Open Sans Italic/8448-8703.pbf new file mode 100755 index 0000000..4abedc9 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/8448-8703.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/8704-8959.pbf b/map_files/glyphs/Open Sans Italic/8704-8959.pbf new file mode 100755 index 0000000..909bb39 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/8704-8959.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/8960-9215.pbf b/map_files/glyphs/Open Sans Italic/8960-9215.pbf new file mode 100755 index 0000000..beda774 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/8960-9215.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 8960-9215 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/9216-9471.pbf b/map_files/glyphs/Open Sans Italic/9216-9471.pbf new file mode 100755 index 0000000..708c4dc --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/9216-9471.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 9216-9471 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/9472-9727.pbf b/map_files/glyphs/Open Sans Italic/9472-9727.pbf new file mode 100755 index 0000000..866e436 Binary files /dev/null and b/map_files/glyphs/Open Sans Italic/9472-9727.pbf differ diff --git a/map_files/glyphs/Open Sans Italic/9728-9983.pbf b/map_files/glyphs/Open Sans Italic/9728-9983.pbf new file mode 100755 index 0000000..d64b898 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/9728-9983.pbf @@ -0,0 +1,3 @@ + + +Open Sans Italic 9728-9983 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Italic/9984-10239.pbf b/map_files/glyphs/Open Sans Italic/9984-10239.pbf new file mode 100755 index 0000000..0cafa68 --- /dev/null +++ b/map_files/glyphs/Open Sans Italic/9984-10239.pbf @@ -0,0 +1,4 @@ + + +Open Sans Italic +9984-10239 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/0-255.pbf b/map_files/glyphs/Open Sans Regular/0-255.pbf new file mode 100755 index 0000000..ab811ae Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/0-255.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/1024-1279.pbf b/map_files/glyphs/Open Sans Regular/1024-1279.pbf new file mode 100755 index 0000000..7cda8da Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/1024-1279.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/10240-10495.pbf b/map_files/glyphs/Open Sans Regular/10240-10495.pbf new file mode 100755 index 0000000..5141144 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/10240-10495.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 10240-10495 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/10496-10751.pbf b/map_files/glyphs/Open Sans Regular/10496-10751.pbf new file mode 100755 index 0000000..152b3f7 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/10496-10751.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 10496-10751 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/10752-11007.pbf b/map_files/glyphs/Open Sans Regular/10752-11007.pbf new file mode 100755 index 0000000..ecb8db5 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/10752-11007.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 10752-11007 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/11008-11263.pbf b/map_files/glyphs/Open Sans Regular/11008-11263.pbf new file mode 100755 index 0000000..c522005 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/11008-11263.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 11008-11263 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/11264-11519.pbf b/map_files/glyphs/Open Sans Regular/11264-11519.pbf new file mode 100755 index 0000000..6322236 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/11264-11519.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 11264-11519 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/11520-11775.pbf b/map_files/glyphs/Open Sans Regular/11520-11775.pbf new file mode 100755 index 0000000..07f4345 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/11520-11775.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 11520-11775 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/11776-12031.pbf b/map_files/glyphs/Open Sans Regular/11776-12031.pbf new file mode 100755 index 0000000..4258e2e --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/11776-12031.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 11776-12031 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/12032-12287.pbf b/map_files/glyphs/Open Sans Regular/12032-12287.pbf new file mode 100755 index 0000000..db84bf7 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/12032-12287.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 12032-12287 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/12288-12543.pbf b/map_files/glyphs/Open Sans Regular/12288-12543.pbf new file mode 100755 index 0000000..f1f346c --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/12288-12543.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 12288-12543 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/12544-12799.pbf b/map_files/glyphs/Open Sans Regular/12544-12799.pbf new file mode 100755 index 0000000..9684bfa --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/12544-12799.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 12544-12799 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/1280-1535.pbf b/map_files/glyphs/Open Sans Regular/1280-1535.pbf new file mode 100755 index 0000000..d9c3d45 Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/1280-1535.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/12800-13055.pbf b/map_files/glyphs/Open Sans Regular/12800-13055.pbf new file mode 100755 index 0000000..fb130e0 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/12800-13055.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 12800-13055 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/13056-13311.pbf b/map_files/glyphs/Open Sans Regular/13056-13311.pbf new file mode 100755 index 0000000..68ba0d2 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/13056-13311.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 13056-13311 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/13312-13567.pbf b/map_files/glyphs/Open Sans Regular/13312-13567.pbf new file mode 100755 index 0000000..dca913c --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/13312-13567.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 13312-13567 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/13568-13823.pbf b/map_files/glyphs/Open Sans Regular/13568-13823.pbf new file mode 100755 index 0000000..c099df2 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/13568-13823.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 13568-13823 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/13824-14079.pbf b/map_files/glyphs/Open Sans Regular/13824-14079.pbf new file mode 100755 index 0000000..675ca91 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/13824-14079.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 13824-14079 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/14080-14335.pbf b/map_files/glyphs/Open Sans Regular/14080-14335.pbf new file mode 100755 index 0000000..a8692c0 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/14080-14335.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 14080-14335 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/14336-14591.pbf b/map_files/glyphs/Open Sans Regular/14336-14591.pbf new file mode 100755 index 0000000..8155ca6 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/14336-14591.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 14336-14591 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/14592-14847.pbf b/map_files/glyphs/Open Sans Regular/14592-14847.pbf new file mode 100755 index 0000000..da20df3 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/14592-14847.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 14592-14847 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/14848-15103.pbf b/map_files/glyphs/Open Sans Regular/14848-15103.pbf new file mode 100755 index 0000000..61d923b --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/14848-15103.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 14848-15103 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/15104-15359.pbf b/map_files/glyphs/Open Sans Regular/15104-15359.pbf new file mode 100755 index 0000000..52ef6b7 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/15104-15359.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 15104-15359 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/1536-1791.pbf b/map_files/glyphs/Open Sans Regular/1536-1791.pbf new file mode 100755 index 0000000..2fc6ce0 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/1536-1791.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 1536-1791 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/15360-15615.pbf b/map_files/glyphs/Open Sans Regular/15360-15615.pbf new file mode 100755 index 0000000..6558161 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/15360-15615.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 15360-15615 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/15616-15871.pbf b/map_files/glyphs/Open Sans Regular/15616-15871.pbf new file mode 100755 index 0000000..275e74b --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/15616-15871.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 15616-15871 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/15872-16127.pbf b/map_files/glyphs/Open Sans Regular/15872-16127.pbf new file mode 100755 index 0000000..e2a3cc3 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/15872-16127.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 15872-16127 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/16128-16383.pbf b/map_files/glyphs/Open Sans Regular/16128-16383.pbf new file mode 100755 index 0000000..87425c2 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/16128-16383.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 16128-16383 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/16384-16639.pbf b/map_files/glyphs/Open Sans Regular/16384-16639.pbf new file mode 100755 index 0000000..69324e5 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/16384-16639.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 16384-16639 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/16640-16895.pbf b/map_files/glyphs/Open Sans Regular/16640-16895.pbf new file mode 100755 index 0000000..8255e9b --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/16640-16895.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 16640-16895 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/16896-17151.pbf b/map_files/glyphs/Open Sans Regular/16896-17151.pbf new file mode 100755 index 0000000..4ca23ea --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/16896-17151.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 16896-17151 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/17152-17407.pbf b/map_files/glyphs/Open Sans Regular/17152-17407.pbf new file mode 100755 index 0000000..135b9c9 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/17152-17407.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 17152-17407 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/17408-17663.pbf b/map_files/glyphs/Open Sans Regular/17408-17663.pbf new file mode 100755 index 0000000..e8b48c3 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/17408-17663.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 17408-17663 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/17664-17919.pbf b/map_files/glyphs/Open Sans Regular/17664-17919.pbf new file mode 100755 index 0000000..5ceb7aa --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/17664-17919.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 17664-17919 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/1792-2047.pbf b/map_files/glyphs/Open Sans Regular/1792-2047.pbf new file mode 100755 index 0000000..79c5860 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/1792-2047.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 1792-2047 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/17920-18175.pbf b/map_files/glyphs/Open Sans Regular/17920-18175.pbf new file mode 100755 index 0000000..e215e52 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/17920-18175.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 17920-18175 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/18176-18431.pbf b/map_files/glyphs/Open Sans Regular/18176-18431.pbf new file mode 100755 index 0000000..32911ec --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/18176-18431.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 18176-18431 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/18432-18687.pbf b/map_files/glyphs/Open Sans Regular/18432-18687.pbf new file mode 100755 index 0000000..eaaf9e4 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/18432-18687.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 18432-18687 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/18688-18943.pbf b/map_files/glyphs/Open Sans Regular/18688-18943.pbf new file mode 100755 index 0000000..fe17c82 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/18688-18943.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 18688-18943 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/18944-19199.pbf b/map_files/glyphs/Open Sans Regular/18944-19199.pbf new file mode 100755 index 0000000..a5ff515 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/18944-19199.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 18944-19199 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/19200-19455.pbf b/map_files/glyphs/Open Sans Regular/19200-19455.pbf new file mode 100755 index 0000000..9e74bac --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/19200-19455.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 19200-19455 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/19456-19711.pbf b/map_files/glyphs/Open Sans Regular/19456-19711.pbf new file mode 100755 index 0000000..8bd1640 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/19456-19711.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 19456-19711 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/19712-19967.pbf b/map_files/glyphs/Open Sans Regular/19712-19967.pbf new file mode 100755 index 0000000..4a78884 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/19712-19967.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 19712-19967 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/19968-20223.pbf b/map_files/glyphs/Open Sans Regular/19968-20223.pbf new file mode 100755 index 0000000..2d1088d --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/19968-20223.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 19968-20223 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/20224-20479.pbf b/map_files/glyphs/Open Sans Regular/20224-20479.pbf new file mode 100755 index 0000000..ccc2df0 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/20224-20479.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 20224-20479 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/2048-2303.pbf b/map_files/glyphs/Open Sans Regular/2048-2303.pbf new file mode 100755 index 0000000..9a33643 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/2048-2303.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 2048-2303 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/20480-20735.pbf b/map_files/glyphs/Open Sans Regular/20480-20735.pbf new file mode 100755 index 0000000..43e6a35 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/20480-20735.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 20480-20735 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/20736-20991.pbf b/map_files/glyphs/Open Sans Regular/20736-20991.pbf new file mode 100755 index 0000000..5fb1d27 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/20736-20991.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 20736-20991 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/20992-21247.pbf b/map_files/glyphs/Open Sans Regular/20992-21247.pbf new file mode 100755 index 0000000..ff01cb2 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/20992-21247.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 20992-21247 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/21248-21503.pbf b/map_files/glyphs/Open Sans Regular/21248-21503.pbf new file mode 100755 index 0000000..1b05baa --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/21248-21503.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 21248-21503 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/21504-21759.pbf b/map_files/glyphs/Open Sans Regular/21504-21759.pbf new file mode 100755 index 0000000..d877e19 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/21504-21759.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 21504-21759 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/21760-22015.pbf b/map_files/glyphs/Open Sans Regular/21760-22015.pbf new file mode 100755 index 0000000..bea8b61 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/21760-22015.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 21760-22015 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/22016-22271.pbf b/map_files/glyphs/Open Sans Regular/22016-22271.pbf new file mode 100755 index 0000000..7e5769e --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/22016-22271.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 22016-22271 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/22272-22527.pbf b/map_files/glyphs/Open Sans Regular/22272-22527.pbf new file mode 100755 index 0000000..5100075 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/22272-22527.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 22272-22527 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/22528-22783.pbf b/map_files/glyphs/Open Sans Regular/22528-22783.pbf new file mode 100755 index 0000000..8a0ff5c --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/22528-22783.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 22528-22783 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/22784-23039.pbf b/map_files/glyphs/Open Sans Regular/22784-23039.pbf new file mode 100755 index 0000000..4009839 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/22784-23039.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 22784-23039 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/2304-2559.pbf b/map_files/glyphs/Open Sans Regular/2304-2559.pbf new file mode 100755 index 0000000..7869eab --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/2304-2559.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 2304-2559 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/23040-23295.pbf b/map_files/glyphs/Open Sans Regular/23040-23295.pbf new file mode 100755 index 0000000..e1293d9 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/23040-23295.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 23040-23295 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/23296-23551.pbf b/map_files/glyphs/Open Sans Regular/23296-23551.pbf new file mode 100755 index 0000000..eba885b --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/23296-23551.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 23296-23551 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/23552-23807.pbf b/map_files/glyphs/Open Sans Regular/23552-23807.pbf new file mode 100755 index 0000000..4177422 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/23552-23807.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 23552-23807 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/23808-24063.pbf b/map_files/glyphs/Open Sans Regular/23808-24063.pbf new file mode 100755 index 0000000..9d117c9 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/23808-24063.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 23808-24063 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/24064-24319.pbf b/map_files/glyphs/Open Sans Regular/24064-24319.pbf new file mode 100755 index 0000000..34e45ac --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/24064-24319.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 24064-24319 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/24320-24575.pbf b/map_files/glyphs/Open Sans Regular/24320-24575.pbf new file mode 100755 index 0000000..f47322b --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/24320-24575.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 24320-24575 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/24576-24831.pbf b/map_files/glyphs/Open Sans Regular/24576-24831.pbf new file mode 100755 index 0000000..2c3518d --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/24576-24831.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 24576-24831 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/24832-25087.pbf b/map_files/glyphs/Open Sans Regular/24832-25087.pbf new file mode 100755 index 0000000..18792a2 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/24832-25087.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 24832-25087 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/25088-25343.pbf b/map_files/glyphs/Open Sans Regular/25088-25343.pbf new file mode 100755 index 0000000..83e63c9 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/25088-25343.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 25088-25343 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/25344-25599.pbf b/map_files/glyphs/Open Sans Regular/25344-25599.pbf new file mode 100755 index 0000000..7c6a728 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/25344-25599.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 25344-25599 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/256-511.pbf b/map_files/glyphs/Open Sans Regular/256-511.pbf new file mode 100755 index 0000000..6e108e5 Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/256-511.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/2560-2815.pbf b/map_files/glyphs/Open Sans Regular/2560-2815.pbf new file mode 100755 index 0000000..95cae83 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/2560-2815.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 2560-2815 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/25600-25855.pbf b/map_files/glyphs/Open Sans Regular/25600-25855.pbf new file mode 100755 index 0000000..b5102f7 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/25600-25855.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 25600-25855 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/25856-26111.pbf b/map_files/glyphs/Open Sans Regular/25856-26111.pbf new file mode 100755 index 0000000..5be1368 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/25856-26111.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 25856-26111 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/26112-26367.pbf b/map_files/glyphs/Open Sans Regular/26112-26367.pbf new file mode 100755 index 0000000..e3e6060 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/26112-26367.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 26112-26367 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/26368-26623.pbf b/map_files/glyphs/Open Sans Regular/26368-26623.pbf new file mode 100755 index 0000000..c855d60 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/26368-26623.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 26368-26623 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/26624-26879.pbf b/map_files/glyphs/Open Sans Regular/26624-26879.pbf new file mode 100755 index 0000000..97cd65d --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/26624-26879.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 26624-26879 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/26880-27135.pbf b/map_files/glyphs/Open Sans Regular/26880-27135.pbf new file mode 100755 index 0000000..4be4b35 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/26880-27135.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 26880-27135 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/27136-27391.pbf b/map_files/glyphs/Open Sans Regular/27136-27391.pbf new file mode 100755 index 0000000..cc9e560 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/27136-27391.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 27136-27391 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/27392-27647.pbf b/map_files/glyphs/Open Sans Regular/27392-27647.pbf new file mode 100755 index 0000000..582b089 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/27392-27647.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 27392-27647 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/27648-27903.pbf b/map_files/glyphs/Open Sans Regular/27648-27903.pbf new file mode 100755 index 0000000..2129b87 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/27648-27903.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 27648-27903 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/27904-28159.pbf b/map_files/glyphs/Open Sans Regular/27904-28159.pbf new file mode 100755 index 0000000..f807492 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/27904-28159.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 27904-28159 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/2816-3071.pbf b/map_files/glyphs/Open Sans Regular/2816-3071.pbf new file mode 100755 index 0000000..6882bd6 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/2816-3071.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 2816-3071 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/28160-28415.pbf b/map_files/glyphs/Open Sans Regular/28160-28415.pbf new file mode 100755 index 0000000..5b92b64 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/28160-28415.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 28160-28415 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/28416-28671.pbf b/map_files/glyphs/Open Sans Regular/28416-28671.pbf new file mode 100755 index 0000000..4001651 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/28416-28671.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 28416-28671 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/28672-28927.pbf b/map_files/glyphs/Open Sans Regular/28672-28927.pbf new file mode 100755 index 0000000..aee687d --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/28672-28927.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 28672-28927 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/28928-29183.pbf b/map_files/glyphs/Open Sans Regular/28928-29183.pbf new file mode 100755 index 0000000..0d759f0 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/28928-29183.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 28928-29183 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/29184-29439.pbf b/map_files/glyphs/Open Sans Regular/29184-29439.pbf new file mode 100755 index 0000000..80cccb0 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/29184-29439.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 29184-29439 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/29440-29695.pbf b/map_files/glyphs/Open Sans Regular/29440-29695.pbf new file mode 100755 index 0000000..8f27cd4 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/29440-29695.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 29440-29695 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/29696-29951.pbf b/map_files/glyphs/Open Sans Regular/29696-29951.pbf new file mode 100755 index 0000000..be5cb7a --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/29696-29951.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 29696-29951 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/29952-30207.pbf b/map_files/glyphs/Open Sans Regular/29952-30207.pbf new file mode 100755 index 0000000..87f27ca --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/29952-30207.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 29952-30207 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/30208-30463.pbf b/map_files/glyphs/Open Sans Regular/30208-30463.pbf new file mode 100755 index 0000000..425caec --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/30208-30463.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 30208-30463 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/30464-30719.pbf b/map_files/glyphs/Open Sans Regular/30464-30719.pbf new file mode 100755 index 0000000..5663cef --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/30464-30719.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 30464-30719 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/3072-3327.pbf b/map_files/glyphs/Open Sans Regular/3072-3327.pbf new file mode 100755 index 0000000..3d69aa0 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/3072-3327.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 3072-3327 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/30720-30975.pbf b/map_files/glyphs/Open Sans Regular/30720-30975.pbf new file mode 100755 index 0000000..b638ca4 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/30720-30975.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 30720-30975 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/30976-31231.pbf b/map_files/glyphs/Open Sans Regular/30976-31231.pbf new file mode 100755 index 0000000..c43f789 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/30976-31231.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 30976-31231 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/31232-31487.pbf b/map_files/glyphs/Open Sans Regular/31232-31487.pbf new file mode 100755 index 0000000..7e02f40 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/31232-31487.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 31232-31487 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/31488-31743.pbf b/map_files/glyphs/Open Sans Regular/31488-31743.pbf new file mode 100755 index 0000000..6f859bf --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/31488-31743.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 31488-31743 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/31744-31999.pbf b/map_files/glyphs/Open Sans Regular/31744-31999.pbf new file mode 100755 index 0000000..4458128 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/31744-31999.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 31744-31999 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/32000-32255.pbf b/map_files/glyphs/Open Sans Regular/32000-32255.pbf new file mode 100755 index 0000000..a302184 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/32000-32255.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 32000-32255 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/32256-32511.pbf b/map_files/glyphs/Open Sans Regular/32256-32511.pbf new file mode 100755 index 0000000..44772c3 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/32256-32511.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 32256-32511 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/32512-32767.pbf b/map_files/glyphs/Open Sans Regular/32512-32767.pbf new file mode 100755 index 0000000..2214437 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/32512-32767.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 32512-32767 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/32768-33023.pbf b/map_files/glyphs/Open Sans Regular/32768-33023.pbf new file mode 100755 index 0000000..9ec5292 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/32768-33023.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 32768-33023 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/33024-33279.pbf b/map_files/glyphs/Open Sans Regular/33024-33279.pbf new file mode 100755 index 0000000..0ce0358 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/33024-33279.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 33024-33279 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/3328-3583.pbf b/map_files/glyphs/Open Sans Regular/3328-3583.pbf new file mode 100755 index 0000000..2a1576e --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/3328-3583.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 3328-3583 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/33280-33535.pbf b/map_files/glyphs/Open Sans Regular/33280-33535.pbf new file mode 100755 index 0000000..8b7166d --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/33280-33535.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 33280-33535 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/33536-33791.pbf b/map_files/glyphs/Open Sans Regular/33536-33791.pbf new file mode 100755 index 0000000..5f08cd6 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/33536-33791.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 33536-33791 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/33792-34047.pbf b/map_files/glyphs/Open Sans Regular/33792-34047.pbf new file mode 100755 index 0000000..30f3ca1 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/33792-34047.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 33792-34047 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/34048-34303.pbf b/map_files/glyphs/Open Sans Regular/34048-34303.pbf new file mode 100755 index 0000000..8727818 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/34048-34303.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 34048-34303 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/34304-34559.pbf b/map_files/glyphs/Open Sans Regular/34304-34559.pbf new file mode 100755 index 0000000..61885c5 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/34304-34559.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 34304-34559 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/34560-34815.pbf b/map_files/glyphs/Open Sans Regular/34560-34815.pbf new file mode 100755 index 0000000..757dfb8 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/34560-34815.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 34560-34815 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/34816-35071.pbf b/map_files/glyphs/Open Sans Regular/34816-35071.pbf new file mode 100755 index 0000000..e1a7652 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/34816-35071.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 34816-35071 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/35072-35327.pbf b/map_files/glyphs/Open Sans Regular/35072-35327.pbf new file mode 100755 index 0000000..9351365 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/35072-35327.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 35072-35327 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/35328-35583.pbf b/map_files/glyphs/Open Sans Regular/35328-35583.pbf new file mode 100755 index 0000000..585f402 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/35328-35583.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 35328-35583 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/35584-35839.pbf b/map_files/glyphs/Open Sans Regular/35584-35839.pbf new file mode 100755 index 0000000..cb0aacc --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/35584-35839.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 35584-35839 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/3584-3839.pbf b/map_files/glyphs/Open Sans Regular/3584-3839.pbf new file mode 100755 index 0000000..ddaad66 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/3584-3839.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 3584-3839 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/35840-36095.pbf b/map_files/glyphs/Open Sans Regular/35840-36095.pbf new file mode 100755 index 0000000..ec0bf33 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/35840-36095.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 35840-36095 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/36096-36351.pbf b/map_files/glyphs/Open Sans Regular/36096-36351.pbf new file mode 100755 index 0000000..4ea7f3a --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/36096-36351.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 36096-36351 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/36352-36607.pbf b/map_files/glyphs/Open Sans Regular/36352-36607.pbf new file mode 100755 index 0000000..9c39789 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/36352-36607.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 36352-36607 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/36608-36863.pbf b/map_files/glyphs/Open Sans Regular/36608-36863.pbf new file mode 100755 index 0000000..cc6d45d --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/36608-36863.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 36608-36863 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/36864-37119.pbf b/map_files/glyphs/Open Sans Regular/36864-37119.pbf new file mode 100755 index 0000000..6bd5cad --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/36864-37119.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 36864-37119 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/37120-37375.pbf b/map_files/glyphs/Open Sans Regular/37120-37375.pbf new file mode 100755 index 0000000..fdbe413 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/37120-37375.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 37120-37375 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/37376-37631.pbf b/map_files/glyphs/Open Sans Regular/37376-37631.pbf new file mode 100755 index 0000000..1000125 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/37376-37631.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 37376-37631 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/37632-37887.pbf b/map_files/glyphs/Open Sans Regular/37632-37887.pbf new file mode 100755 index 0000000..0415c42 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/37632-37887.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 37632-37887 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/37888-38143.pbf b/map_files/glyphs/Open Sans Regular/37888-38143.pbf new file mode 100755 index 0000000..c76ce44 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/37888-38143.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 37888-38143 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/38144-38399.pbf b/map_files/glyphs/Open Sans Regular/38144-38399.pbf new file mode 100755 index 0000000..c4c156a --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/38144-38399.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 38144-38399 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/3840-4095.pbf b/map_files/glyphs/Open Sans Regular/3840-4095.pbf new file mode 100755 index 0000000..4d6576f --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/3840-4095.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 3840-4095 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/38400-38655.pbf b/map_files/glyphs/Open Sans Regular/38400-38655.pbf new file mode 100755 index 0000000..289445b --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/38400-38655.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 38400-38655 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/38656-38911.pbf b/map_files/glyphs/Open Sans Regular/38656-38911.pbf new file mode 100755 index 0000000..a198c1e --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/38656-38911.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 38656-38911 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/38912-39167.pbf b/map_files/glyphs/Open Sans Regular/38912-39167.pbf new file mode 100755 index 0000000..7f621c1 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/38912-39167.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 38912-39167 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/39168-39423.pbf b/map_files/glyphs/Open Sans Regular/39168-39423.pbf new file mode 100755 index 0000000..40aee11 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/39168-39423.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 39168-39423 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/39424-39679.pbf b/map_files/glyphs/Open Sans Regular/39424-39679.pbf new file mode 100755 index 0000000..477d272 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/39424-39679.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 39424-39679 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/39680-39935.pbf b/map_files/glyphs/Open Sans Regular/39680-39935.pbf new file mode 100755 index 0000000..62bae24 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/39680-39935.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 39680-39935 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/39936-40191.pbf b/map_files/glyphs/Open Sans Regular/39936-40191.pbf new file mode 100755 index 0000000..21691f2 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/39936-40191.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 39936-40191 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/40192-40447.pbf b/map_files/glyphs/Open Sans Regular/40192-40447.pbf new file mode 100755 index 0000000..a1b160e --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/40192-40447.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 40192-40447 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/40448-40703.pbf b/map_files/glyphs/Open Sans Regular/40448-40703.pbf new file mode 100755 index 0000000..c141efe --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/40448-40703.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 40448-40703 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/40704-40959.pbf b/map_files/glyphs/Open Sans Regular/40704-40959.pbf new file mode 100755 index 0000000..de557c0 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/40704-40959.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 40704-40959 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/4096-4351.pbf b/map_files/glyphs/Open Sans Regular/4096-4351.pbf new file mode 100755 index 0000000..a89dd21 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/4096-4351.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 4096-4351 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/40960-41215.pbf b/map_files/glyphs/Open Sans Regular/40960-41215.pbf new file mode 100755 index 0000000..357d35e --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/40960-41215.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 40960-41215 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/41216-41471.pbf b/map_files/glyphs/Open Sans Regular/41216-41471.pbf new file mode 100755 index 0000000..ed8e556 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/41216-41471.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 41216-41471 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/41472-41727.pbf b/map_files/glyphs/Open Sans Regular/41472-41727.pbf new file mode 100755 index 0000000..5012a4e --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/41472-41727.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 41472-41727 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/41728-41983.pbf b/map_files/glyphs/Open Sans Regular/41728-41983.pbf new file mode 100755 index 0000000..212c333 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/41728-41983.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 41728-41983 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/41984-42239.pbf b/map_files/glyphs/Open Sans Regular/41984-42239.pbf new file mode 100755 index 0000000..2b8e37d --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/41984-42239.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 41984-42239 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/42240-42495.pbf b/map_files/glyphs/Open Sans Regular/42240-42495.pbf new file mode 100755 index 0000000..2d04789 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/42240-42495.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 42240-42495 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/42496-42751.pbf b/map_files/glyphs/Open Sans Regular/42496-42751.pbf new file mode 100755 index 0000000..2eb78fa --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/42496-42751.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 42496-42751 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/42752-43007.pbf b/map_files/glyphs/Open Sans Regular/42752-43007.pbf new file mode 100755 index 0000000..9017adc --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/42752-43007.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 42752-43007 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/43008-43263.pbf b/map_files/glyphs/Open Sans Regular/43008-43263.pbf new file mode 100755 index 0000000..5d9d7ff --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/43008-43263.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 43008-43263 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/43264-43519.pbf b/map_files/glyphs/Open Sans Regular/43264-43519.pbf new file mode 100755 index 0000000..c313fba --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/43264-43519.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 43264-43519 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/4352-4607.pbf b/map_files/glyphs/Open Sans Regular/4352-4607.pbf new file mode 100755 index 0000000..666d277 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/4352-4607.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 4352-4607 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/43520-43775.pbf b/map_files/glyphs/Open Sans Regular/43520-43775.pbf new file mode 100755 index 0000000..2319aa4 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/43520-43775.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 43520-43775 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/43776-44031.pbf b/map_files/glyphs/Open Sans Regular/43776-44031.pbf new file mode 100755 index 0000000..b25ef4d --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/43776-44031.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 43776-44031 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/44032-44287.pbf b/map_files/glyphs/Open Sans Regular/44032-44287.pbf new file mode 100755 index 0000000..452907e --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/44032-44287.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 44032-44287 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/44288-44543.pbf b/map_files/glyphs/Open Sans Regular/44288-44543.pbf new file mode 100755 index 0000000..0722ea4 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/44288-44543.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 44288-44543 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/44544-44799.pbf b/map_files/glyphs/Open Sans Regular/44544-44799.pbf new file mode 100755 index 0000000..87dfa82 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/44544-44799.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 44544-44799 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/44800-45055.pbf b/map_files/glyphs/Open Sans Regular/44800-45055.pbf new file mode 100755 index 0000000..c7d56ca --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/44800-45055.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 44800-45055 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/45056-45311.pbf b/map_files/glyphs/Open Sans Regular/45056-45311.pbf new file mode 100755 index 0000000..700e718 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/45056-45311.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 45056-45311 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/45312-45567.pbf b/map_files/glyphs/Open Sans Regular/45312-45567.pbf new file mode 100755 index 0000000..162362b --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/45312-45567.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 45312-45567 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/45568-45823.pbf b/map_files/glyphs/Open Sans Regular/45568-45823.pbf new file mode 100755 index 0000000..a7351b2 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/45568-45823.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 45568-45823 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/45824-46079.pbf b/map_files/glyphs/Open Sans Regular/45824-46079.pbf new file mode 100755 index 0000000..a23d834 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/45824-46079.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 45824-46079 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/4608-4863.pbf b/map_files/glyphs/Open Sans Regular/4608-4863.pbf new file mode 100755 index 0000000..e0c982a --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/4608-4863.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 4608-4863 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/46080-46335.pbf b/map_files/glyphs/Open Sans Regular/46080-46335.pbf new file mode 100755 index 0000000..313eff1 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/46080-46335.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 46080-46335 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/46336-46591.pbf b/map_files/glyphs/Open Sans Regular/46336-46591.pbf new file mode 100755 index 0000000..080b8e3 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/46336-46591.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 46336-46591 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/46592-46847.pbf b/map_files/glyphs/Open Sans Regular/46592-46847.pbf new file mode 100755 index 0000000..d3f6ab1 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/46592-46847.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 46592-46847 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/46848-47103.pbf b/map_files/glyphs/Open Sans Regular/46848-47103.pbf new file mode 100755 index 0000000..debb3b9 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/46848-47103.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 46848-47103 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/47104-47359.pbf b/map_files/glyphs/Open Sans Regular/47104-47359.pbf new file mode 100755 index 0000000..ccfd55f --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/47104-47359.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 47104-47359 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/47360-47615.pbf b/map_files/glyphs/Open Sans Regular/47360-47615.pbf new file mode 100755 index 0000000..2bc6ddd --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/47360-47615.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 47360-47615 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/47616-47871.pbf b/map_files/glyphs/Open Sans Regular/47616-47871.pbf new file mode 100755 index 0000000..3d01e9c --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/47616-47871.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 47616-47871 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/47872-48127.pbf b/map_files/glyphs/Open Sans Regular/47872-48127.pbf new file mode 100755 index 0000000..7e86554 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/47872-48127.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 47872-48127 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/48128-48383.pbf b/map_files/glyphs/Open Sans Regular/48128-48383.pbf new file mode 100755 index 0000000..430b4c5 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/48128-48383.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 48128-48383 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/48384-48639.pbf b/map_files/glyphs/Open Sans Regular/48384-48639.pbf new file mode 100755 index 0000000..f10114d --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/48384-48639.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 48384-48639 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/4864-5119.pbf b/map_files/glyphs/Open Sans Regular/4864-5119.pbf new file mode 100755 index 0000000..091e715 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/4864-5119.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 4864-5119 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/48640-48895.pbf b/map_files/glyphs/Open Sans Regular/48640-48895.pbf new file mode 100755 index 0000000..fced1b7 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/48640-48895.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 48640-48895 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/48896-49151.pbf b/map_files/glyphs/Open Sans Regular/48896-49151.pbf new file mode 100755 index 0000000..b3f65d6 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/48896-49151.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 48896-49151 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/49152-49407.pbf b/map_files/glyphs/Open Sans Regular/49152-49407.pbf new file mode 100755 index 0000000..59586bb --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/49152-49407.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 49152-49407 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/49408-49663.pbf b/map_files/glyphs/Open Sans Regular/49408-49663.pbf new file mode 100755 index 0000000..045ee69 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/49408-49663.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 49408-49663 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/49664-49919.pbf b/map_files/glyphs/Open Sans Regular/49664-49919.pbf new file mode 100755 index 0000000..7d5137f --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/49664-49919.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 49664-49919 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/49920-50175.pbf b/map_files/glyphs/Open Sans Regular/49920-50175.pbf new file mode 100755 index 0000000..e01f73f --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/49920-50175.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 49920-50175 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/50176-50431.pbf b/map_files/glyphs/Open Sans Regular/50176-50431.pbf new file mode 100755 index 0000000..253992b --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/50176-50431.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 50176-50431 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/50432-50687.pbf b/map_files/glyphs/Open Sans Regular/50432-50687.pbf new file mode 100755 index 0000000..cbaceb5 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/50432-50687.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 50432-50687 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/50688-50943.pbf b/map_files/glyphs/Open Sans Regular/50688-50943.pbf new file mode 100755 index 0000000..356e589 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/50688-50943.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 50688-50943 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/50944-51199.pbf b/map_files/glyphs/Open Sans Regular/50944-51199.pbf new file mode 100755 index 0000000..c70a41a --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/50944-51199.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 50944-51199 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/512-767.pbf b/map_files/glyphs/Open Sans Regular/512-767.pbf new file mode 100755 index 0000000..5dbfb5b Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/512-767.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/5120-5375.pbf b/map_files/glyphs/Open Sans Regular/5120-5375.pbf new file mode 100755 index 0000000..999f7b6 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/5120-5375.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 5120-5375 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/51200-51455.pbf b/map_files/glyphs/Open Sans Regular/51200-51455.pbf new file mode 100755 index 0000000..48d3135 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/51200-51455.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 51200-51455 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/51456-51711.pbf b/map_files/glyphs/Open Sans Regular/51456-51711.pbf new file mode 100755 index 0000000..55bc48b --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/51456-51711.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 51456-51711 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/51712-51967.pbf b/map_files/glyphs/Open Sans Regular/51712-51967.pbf new file mode 100755 index 0000000..6f3a3fd --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/51712-51967.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 51712-51967 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/51968-52223.pbf b/map_files/glyphs/Open Sans Regular/51968-52223.pbf new file mode 100755 index 0000000..44f032d --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/51968-52223.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 51968-52223 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/52224-52479.pbf b/map_files/glyphs/Open Sans Regular/52224-52479.pbf new file mode 100755 index 0000000..e6f8936 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/52224-52479.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 52224-52479 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/52480-52735.pbf b/map_files/glyphs/Open Sans Regular/52480-52735.pbf new file mode 100755 index 0000000..56d1982 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/52480-52735.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 52480-52735 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/52736-52991.pbf b/map_files/glyphs/Open Sans Regular/52736-52991.pbf new file mode 100755 index 0000000..7f99bc1 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/52736-52991.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 52736-52991 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/52992-53247.pbf b/map_files/glyphs/Open Sans Regular/52992-53247.pbf new file mode 100755 index 0000000..d8aaff0 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/52992-53247.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 52992-53247 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/53248-53503.pbf b/map_files/glyphs/Open Sans Regular/53248-53503.pbf new file mode 100755 index 0000000..36243fe --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/53248-53503.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 53248-53503 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/53504-53759.pbf b/map_files/glyphs/Open Sans Regular/53504-53759.pbf new file mode 100755 index 0000000..a4f83f9 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/53504-53759.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 53504-53759 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/5376-5631.pbf b/map_files/glyphs/Open Sans Regular/5376-5631.pbf new file mode 100755 index 0000000..8f94cb4 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/5376-5631.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 5376-5631 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/53760-54015.pbf b/map_files/glyphs/Open Sans Regular/53760-54015.pbf new file mode 100755 index 0000000..07ae9ae --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/53760-54015.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 53760-54015 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/54016-54271.pbf b/map_files/glyphs/Open Sans Regular/54016-54271.pbf new file mode 100755 index 0000000..2ab2295 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/54016-54271.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 54016-54271 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/54272-54527.pbf b/map_files/glyphs/Open Sans Regular/54272-54527.pbf new file mode 100755 index 0000000..349cf1f --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/54272-54527.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 54272-54527 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/54528-54783.pbf b/map_files/glyphs/Open Sans Regular/54528-54783.pbf new file mode 100755 index 0000000..e0553b5 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/54528-54783.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 54528-54783 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/54784-55039.pbf b/map_files/glyphs/Open Sans Regular/54784-55039.pbf new file mode 100755 index 0000000..291b5b5 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/54784-55039.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 54784-55039 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/55040-55295.pbf b/map_files/glyphs/Open Sans Regular/55040-55295.pbf new file mode 100755 index 0000000..ca77000 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/55040-55295.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 55040-55295 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/55296-55551.pbf b/map_files/glyphs/Open Sans Regular/55296-55551.pbf new file mode 100755 index 0000000..548e28b --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/55296-55551.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 55296-55551 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/55552-55807.pbf b/map_files/glyphs/Open Sans Regular/55552-55807.pbf new file mode 100755 index 0000000..94b268a --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/55552-55807.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 55552-55807 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/55808-56063.pbf b/map_files/glyphs/Open Sans Regular/55808-56063.pbf new file mode 100755 index 0000000..90d869d --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/55808-56063.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 55808-56063 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/56064-56319.pbf b/map_files/glyphs/Open Sans Regular/56064-56319.pbf new file mode 100755 index 0000000..6ab33f2 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/56064-56319.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 56064-56319 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/5632-5887.pbf b/map_files/glyphs/Open Sans Regular/5632-5887.pbf new file mode 100755 index 0000000..8296269 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/5632-5887.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 5632-5887 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/56320-56575.pbf b/map_files/glyphs/Open Sans Regular/56320-56575.pbf new file mode 100755 index 0000000..8075b50 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/56320-56575.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 56320-56575 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/56576-56831.pbf b/map_files/glyphs/Open Sans Regular/56576-56831.pbf new file mode 100755 index 0000000..d700f63 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/56576-56831.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 56576-56831 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/56832-57087.pbf b/map_files/glyphs/Open Sans Regular/56832-57087.pbf new file mode 100755 index 0000000..b8a7be8 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/56832-57087.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 56832-57087 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/57088-57343.pbf b/map_files/glyphs/Open Sans Regular/57088-57343.pbf new file mode 100755 index 0000000..d748ea8 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/57088-57343.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 57088-57343 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/57344-57599.pbf b/map_files/glyphs/Open Sans Regular/57344-57599.pbf new file mode 100755 index 0000000..43511bf --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/57344-57599.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 57344-57599 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/57600-57855.pbf b/map_files/glyphs/Open Sans Regular/57600-57855.pbf new file mode 100755 index 0000000..bbaada8 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/57600-57855.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 57600-57855 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/57856-58111.pbf b/map_files/glyphs/Open Sans Regular/57856-58111.pbf new file mode 100755 index 0000000..0475bb9 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/57856-58111.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 57856-58111 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/58112-58367.pbf b/map_files/glyphs/Open Sans Regular/58112-58367.pbf new file mode 100755 index 0000000..152e11f --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/58112-58367.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 58112-58367 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/58368-58623.pbf b/map_files/glyphs/Open Sans Regular/58368-58623.pbf new file mode 100755 index 0000000..da4caca --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/58368-58623.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 58368-58623 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/58624-58879.pbf b/map_files/glyphs/Open Sans Regular/58624-58879.pbf new file mode 100755 index 0000000..d4820ce --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/58624-58879.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 58624-58879 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/5888-6143.pbf b/map_files/glyphs/Open Sans Regular/5888-6143.pbf new file mode 100755 index 0000000..84e3d95 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/5888-6143.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 5888-6143 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/58880-59135.pbf b/map_files/glyphs/Open Sans Regular/58880-59135.pbf new file mode 100755 index 0000000..cc40115 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/58880-59135.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 58880-59135 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/59136-59391.pbf b/map_files/glyphs/Open Sans Regular/59136-59391.pbf new file mode 100755 index 0000000..d6fcfe1 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/59136-59391.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 59136-59391 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/59392-59647.pbf b/map_files/glyphs/Open Sans Regular/59392-59647.pbf new file mode 100755 index 0000000..acbd0f5 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/59392-59647.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 59392-59647 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/59648-59903.pbf b/map_files/glyphs/Open Sans Regular/59648-59903.pbf new file mode 100755 index 0000000..9f718ff --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/59648-59903.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 59648-59903 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/59904-60159.pbf b/map_files/glyphs/Open Sans Regular/59904-60159.pbf new file mode 100755 index 0000000..a9b7ce8 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/59904-60159.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 59904-60159 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/60160-60415.pbf b/map_files/glyphs/Open Sans Regular/60160-60415.pbf new file mode 100755 index 0000000..db2d057 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/60160-60415.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 60160-60415 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/60416-60671.pbf b/map_files/glyphs/Open Sans Regular/60416-60671.pbf new file mode 100755 index 0000000..7618bcc --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/60416-60671.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 60416-60671 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/60672-60927.pbf b/map_files/glyphs/Open Sans Regular/60672-60927.pbf new file mode 100755 index 0000000..45a732e --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/60672-60927.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 60672-60927 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/60928-61183.pbf b/map_files/glyphs/Open Sans Regular/60928-61183.pbf new file mode 100755 index 0000000..dfd7f01 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/60928-61183.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 60928-61183 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/61184-61439.pbf b/map_files/glyphs/Open Sans Regular/61184-61439.pbf new file mode 100755 index 0000000..27c9841 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/61184-61439.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 61184-61439 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/6144-6399.pbf b/map_files/glyphs/Open Sans Regular/6144-6399.pbf new file mode 100755 index 0000000..fce178c --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/6144-6399.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 6144-6399 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/61440-61695.pbf b/map_files/glyphs/Open Sans Regular/61440-61695.pbf new file mode 100755 index 0000000..66d2c09 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/61440-61695.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 61440-61695 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/61696-61951.pbf b/map_files/glyphs/Open Sans Regular/61696-61951.pbf new file mode 100755 index 0000000..ac99331 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/61696-61951.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 61696-61951 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/61952-62207.pbf b/map_files/glyphs/Open Sans Regular/61952-62207.pbf new file mode 100755 index 0000000..936a329 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/61952-62207.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 61952-62207 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/62208-62463.pbf b/map_files/glyphs/Open Sans Regular/62208-62463.pbf new file mode 100755 index 0000000..bb9629b --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/62208-62463.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 62208-62463 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/62464-62719.pbf b/map_files/glyphs/Open Sans Regular/62464-62719.pbf new file mode 100755 index 0000000..00c395a --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/62464-62719.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 62464-62719 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/62720-62975.pbf b/map_files/glyphs/Open Sans Regular/62720-62975.pbf new file mode 100755 index 0000000..f783e37 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/62720-62975.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 62720-62975 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/62976-63231.pbf b/map_files/glyphs/Open Sans Regular/62976-63231.pbf new file mode 100755 index 0000000..b096910 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/62976-63231.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 62976-63231 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/63232-63487.pbf b/map_files/glyphs/Open Sans Regular/63232-63487.pbf new file mode 100755 index 0000000..bafac10 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/63232-63487.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 63232-63487 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/63488-63743.pbf b/map_files/glyphs/Open Sans Regular/63488-63743.pbf new file mode 100755 index 0000000..3c4e327 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/63488-63743.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 63488-63743 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/63744-63999.pbf b/map_files/glyphs/Open Sans Regular/63744-63999.pbf new file mode 100755 index 0000000..4c3686a --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/63744-63999.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 63744-63999 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/6400-6655.pbf b/map_files/glyphs/Open Sans Regular/6400-6655.pbf new file mode 100755 index 0000000..5ab3d50 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/6400-6655.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 6400-6655 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/64000-64255.pbf b/map_files/glyphs/Open Sans Regular/64000-64255.pbf new file mode 100755 index 0000000..df613c7 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/64000-64255.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 64000-64255 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/64256-64511.pbf b/map_files/glyphs/Open Sans Regular/64256-64511.pbf new file mode 100755 index 0000000..eac2c88 Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/64256-64511.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/64512-64767.pbf b/map_files/glyphs/Open Sans Regular/64512-64767.pbf new file mode 100755 index 0000000..5976a90 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/64512-64767.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 64512-64767 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/64768-65023.pbf b/map_files/glyphs/Open Sans Regular/64768-65023.pbf new file mode 100755 index 0000000..0c77f3b --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/64768-65023.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 64768-65023 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/65024-65279.pbf b/map_files/glyphs/Open Sans Regular/65024-65279.pbf new file mode 100755 index 0000000..b8ba5f0 Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/65024-65279.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/65280-65533.pbf b/map_files/glyphs/Open Sans Regular/65280-65533.pbf new file mode 100755 index 0000000..8370c2d Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/65280-65533.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/6656-6911.pbf b/map_files/glyphs/Open Sans Regular/6656-6911.pbf new file mode 100755 index 0000000..c907674 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/6656-6911.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 6656-6911 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/6912-7167.pbf b/map_files/glyphs/Open Sans Regular/6912-7167.pbf new file mode 100755 index 0000000..604e99f --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/6912-7167.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 6912-7167 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/7168-7423.pbf b/map_files/glyphs/Open Sans Regular/7168-7423.pbf new file mode 100755 index 0000000..db7ab67 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/7168-7423.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 7168-7423 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/7424-7679.pbf b/map_files/glyphs/Open Sans Regular/7424-7679.pbf new file mode 100755 index 0000000..baf35dc --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/7424-7679.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 7424-7679 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/768-1023.pbf b/map_files/glyphs/Open Sans Regular/768-1023.pbf new file mode 100755 index 0000000..a3efbb9 Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/768-1023.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/7680-7935.pbf b/map_files/glyphs/Open Sans Regular/7680-7935.pbf new file mode 100755 index 0000000..ab644c3 Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/7680-7935.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/7936-8191.pbf b/map_files/glyphs/Open Sans Regular/7936-8191.pbf new file mode 100755 index 0000000..6954b31 Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/7936-8191.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/8192-8447.pbf b/map_files/glyphs/Open Sans Regular/8192-8447.pbf new file mode 100755 index 0000000..e053cb5 Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/8192-8447.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/8448-8703.pbf b/map_files/glyphs/Open Sans Regular/8448-8703.pbf new file mode 100755 index 0000000..e06496e Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/8448-8703.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/8704-8959.pbf b/map_files/glyphs/Open Sans Regular/8704-8959.pbf new file mode 100755 index 0000000..70ef669 Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/8704-8959.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/8960-9215.pbf b/map_files/glyphs/Open Sans Regular/8960-9215.pbf new file mode 100755 index 0000000..8e94e50 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/8960-9215.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 8960-9215 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/9216-9471.pbf b/map_files/glyphs/Open Sans Regular/9216-9471.pbf new file mode 100755 index 0000000..cb7d539 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/9216-9471.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 9216-9471 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/9472-9727.pbf b/map_files/glyphs/Open Sans Regular/9472-9727.pbf new file mode 100755 index 0000000..cea1ee8 Binary files /dev/null and b/map_files/glyphs/Open Sans Regular/9472-9727.pbf differ diff --git a/map_files/glyphs/Open Sans Regular/9728-9983.pbf b/map_files/glyphs/Open Sans Regular/9728-9983.pbf new file mode 100755 index 0000000..2d4ac11 --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/9728-9983.pbf @@ -0,0 +1,3 @@ + + +Open Sans Regular 9728-9983 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Regular/9984-10239.pbf b/map_files/glyphs/Open Sans Regular/9984-10239.pbf new file mode 100755 index 0000000..eb8a3fc --- /dev/null +++ b/map_files/glyphs/Open Sans Regular/9984-10239.pbf @@ -0,0 +1,4 @@ + + +Open Sans Regular +9984-10239 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/0-255.pbf b/map_files/glyphs/Open Sans Semibold Italic/0-255.pbf new file mode 100644 index 0000000..ead7aa6 Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/0-255.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/1024-1279.pbf b/map_files/glyphs/Open Sans Semibold Italic/1024-1279.pbf new file mode 100644 index 0000000..cefcd0d Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/1024-1279.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/10240-10495.pbf b/map_files/glyphs/Open Sans Semibold Italic/10240-10495.pbf new file mode 100644 index 0000000..84c3993 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/10240-10495.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 10240-10495 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/10496-10751.pbf b/map_files/glyphs/Open Sans Semibold Italic/10496-10751.pbf new file mode 100644 index 0000000..5fd2636 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/10496-10751.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 10496-10751 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/10752-11007.pbf b/map_files/glyphs/Open Sans Semibold Italic/10752-11007.pbf new file mode 100644 index 0000000..876cc58 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/10752-11007.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 10752-11007 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/11008-11263.pbf b/map_files/glyphs/Open Sans Semibold Italic/11008-11263.pbf new file mode 100644 index 0000000..70437fb --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/11008-11263.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 11008-11263 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/11264-11519.pbf b/map_files/glyphs/Open Sans Semibold Italic/11264-11519.pbf new file mode 100644 index 0000000..2d11e6a --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/11264-11519.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 11264-11519 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/11520-11775.pbf b/map_files/glyphs/Open Sans Semibold Italic/11520-11775.pbf new file mode 100644 index 0000000..eec8faa --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/11520-11775.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 11520-11775 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/11776-12031.pbf b/map_files/glyphs/Open Sans Semibold Italic/11776-12031.pbf new file mode 100644 index 0000000..5acf06c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/11776-12031.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 11776-12031 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/12032-12287.pbf b/map_files/glyphs/Open Sans Semibold Italic/12032-12287.pbf new file mode 100644 index 0000000..583fb98 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/12032-12287.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 12032-12287 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/12288-12543.pbf b/map_files/glyphs/Open Sans Semibold Italic/12288-12543.pbf new file mode 100644 index 0000000..ace007d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/12288-12543.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 12288-12543 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/12544-12799.pbf b/map_files/glyphs/Open Sans Semibold Italic/12544-12799.pbf new file mode 100644 index 0000000..3577d56 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/12544-12799.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 12544-12799 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/1280-1535.pbf b/map_files/glyphs/Open Sans Semibold Italic/1280-1535.pbf new file mode 100644 index 0000000..94e2274 Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/1280-1535.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/12800-13055.pbf b/map_files/glyphs/Open Sans Semibold Italic/12800-13055.pbf new file mode 100644 index 0000000..26adf96 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/12800-13055.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 12800-13055 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/13056-13311.pbf b/map_files/glyphs/Open Sans Semibold Italic/13056-13311.pbf new file mode 100644 index 0000000..3704cd0 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/13056-13311.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 13056-13311 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/13312-13567.pbf b/map_files/glyphs/Open Sans Semibold Italic/13312-13567.pbf new file mode 100644 index 0000000..409c9b6 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/13312-13567.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 13312-13567 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/13568-13823.pbf b/map_files/glyphs/Open Sans Semibold Italic/13568-13823.pbf new file mode 100644 index 0000000..38beced --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/13568-13823.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 13568-13823 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/13824-14079.pbf b/map_files/glyphs/Open Sans Semibold Italic/13824-14079.pbf new file mode 100644 index 0000000..e6294f9 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/13824-14079.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 13824-14079 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/14080-14335.pbf b/map_files/glyphs/Open Sans Semibold Italic/14080-14335.pbf new file mode 100644 index 0000000..0b7aba8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/14080-14335.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 14080-14335 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/14336-14591.pbf b/map_files/glyphs/Open Sans Semibold Italic/14336-14591.pbf new file mode 100644 index 0000000..341b128 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/14336-14591.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 14336-14591 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/14592-14847.pbf b/map_files/glyphs/Open Sans Semibold Italic/14592-14847.pbf new file mode 100644 index 0000000..e434cda --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/14592-14847.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 14592-14847 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/14848-15103.pbf b/map_files/glyphs/Open Sans Semibold Italic/14848-15103.pbf new file mode 100644 index 0000000..74aa2a3 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/14848-15103.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 14848-15103 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/15104-15359.pbf b/map_files/glyphs/Open Sans Semibold Italic/15104-15359.pbf new file mode 100644 index 0000000..8c33122 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/15104-15359.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 15104-15359 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/1536-1791.pbf b/map_files/glyphs/Open Sans Semibold Italic/1536-1791.pbf new file mode 100644 index 0000000..e016fe8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/1536-1791.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 1536-1791 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/15360-15615.pbf b/map_files/glyphs/Open Sans Semibold Italic/15360-15615.pbf new file mode 100644 index 0000000..8386b5c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/15360-15615.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 15360-15615 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/15616-15871.pbf b/map_files/glyphs/Open Sans Semibold Italic/15616-15871.pbf new file mode 100644 index 0000000..c8e18bf --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/15616-15871.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 15616-15871 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/15872-16127.pbf b/map_files/glyphs/Open Sans Semibold Italic/15872-16127.pbf new file mode 100644 index 0000000..209e04c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/15872-16127.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 15872-16127 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/16128-16383.pbf b/map_files/glyphs/Open Sans Semibold Italic/16128-16383.pbf new file mode 100644 index 0000000..4c8a387 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/16128-16383.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 16128-16383 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/16384-16639.pbf b/map_files/glyphs/Open Sans Semibold Italic/16384-16639.pbf new file mode 100644 index 0000000..4ea33db --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/16384-16639.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 16384-16639 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/16640-16895.pbf b/map_files/glyphs/Open Sans Semibold Italic/16640-16895.pbf new file mode 100644 index 0000000..70d94e6 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/16640-16895.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 16640-16895 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/16896-17151.pbf b/map_files/glyphs/Open Sans Semibold Italic/16896-17151.pbf new file mode 100644 index 0000000..1eae504 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/16896-17151.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 16896-17151 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/17152-17407.pbf b/map_files/glyphs/Open Sans Semibold Italic/17152-17407.pbf new file mode 100644 index 0000000..d88bea2 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/17152-17407.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 17152-17407 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/17408-17663.pbf b/map_files/glyphs/Open Sans Semibold Italic/17408-17663.pbf new file mode 100644 index 0000000..54b66ec --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/17408-17663.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 17408-17663 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/17664-17919.pbf b/map_files/glyphs/Open Sans Semibold Italic/17664-17919.pbf new file mode 100644 index 0000000..810fce6 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/17664-17919.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 17664-17919 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/1792-2047.pbf b/map_files/glyphs/Open Sans Semibold Italic/1792-2047.pbf new file mode 100644 index 0000000..041bf0b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/1792-2047.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 1792-2047 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/17920-18175.pbf b/map_files/glyphs/Open Sans Semibold Italic/17920-18175.pbf new file mode 100644 index 0000000..1d39ca0 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/17920-18175.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 17920-18175 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/18176-18431.pbf b/map_files/glyphs/Open Sans Semibold Italic/18176-18431.pbf new file mode 100644 index 0000000..970ac66 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/18176-18431.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 18176-18431 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/18432-18687.pbf b/map_files/glyphs/Open Sans Semibold Italic/18432-18687.pbf new file mode 100644 index 0000000..6ba0c06 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/18432-18687.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 18432-18687 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/18688-18943.pbf b/map_files/glyphs/Open Sans Semibold Italic/18688-18943.pbf new file mode 100644 index 0000000..49fc0b3 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/18688-18943.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 18688-18943 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/18944-19199.pbf b/map_files/glyphs/Open Sans Semibold Italic/18944-19199.pbf new file mode 100644 index 0000000..da27818 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/18944-19199.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 18944-19199 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/19200-19455.pbf b/map_files/glyphs/Open Sans Semibold Italic/19200-19455.pbf new file mode 100644 index 0000000..b146cfc --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/19200-19455.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 19200-19455 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/19456-19711.pbf b/map_files/glyphs/Open Sans Semibold Italic/19456-19711.pbf new file mode 100644 index 0000000..2c66560 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/19456-19711.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 19456-19711 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/19712-19967.pbf b/map_files/glyphs/Open Sans Semibold Italic/19712-19967.pbf new file mode 100644 index 0000000..0325f72 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/19712-19967.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 19712-19967 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/19968-20223.pbf b/map_files/glyphs/Open Sans Semibold Italic/19968-20223.pbf new file mode 100644 index 0000000..6e25fbf --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/19968-20223.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 19968-20223 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/20224-20479.pbf b/map_files/glyphs/Open Sans Semibold Italic/20224-20479.pbf new file mode 100644 index 0000000..5218a4b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/20224-20479.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 20224-20479 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/2048-2303.pbf b/map_files/glyphs/Open Sans Semibold Italic/2048-2303.pbf new file mode 100644 index 0000000..cecf384 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/2048-2303.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 2048-2303 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/20480-20735.pbf b/map_files/glyphs/Open Sans Semibold Italic/20480-20735.pbf new file mode 100644 index 0000000..ed094d7 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/20480-20735.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 20480-20735 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/20736-20991.pbf b/map_files/glyphs/Open Sans Semibold Italic/20736-20991.pbf new file mode 100644 index 0000000..249578b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/20736-20991.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 20736-20991 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/20992-21247.pbf b/map_files/glyphs/Open Sans Semibold Italic/20992-21247.pbf new file mode 100644 index 0000000..2730470 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/20992-21247.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 20992-21247 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/21248-21503.pbf b/map_files/glyphs/Open Sans Semibold Italic/21248-21503.pbf new file mode 100644 index 0000000..6b88eca --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/21248-21503.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 21248-21503 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/21504-21759.pbf b/map_files/glyphs/Open Sans Semibold Italic/21504-21759.pbf new file mode 100644 index 0000000..b826b65 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/21504-21759.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 21504-21759 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/21760-22015.pbf b/map_files/glyphs/Open Sans Semibold Italic/21760-22015.pbf new file mode 100644 index 0000000..4d3cc40 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/21760-22015.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 21760-22015 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/22016-22271.pbf b/map_files/glyphs/Open Sans Semibold Italic/22016-22271.pbf new file mode 100644 index 0000000..f77a2d4 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/22016-22271.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 22016-22271 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/22272-22527.pbf b/map_files/glyphs/Open Sans Semibold Italic/22272-22527.pbf new file mode 100644 index 0000000..558552d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/22272-22527.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 22272-22527 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/22528-22783.pbf b/map_files/glyphs/Open Sans Semibold Italic/22528-22783.pbf new file mode 100644 index 0000000..864b543 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/22528-22783.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 22528-22783 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/22784-23039.pbf b/map_files/glyphs/Open Sans Semibold Italic/22784-23039.pbf new file mode 100644 index 0000000..853ae80 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/22784-23039.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 22784-23039 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/2304-2559.pbf b/map_files/glyphs/Open Sans Semibold Italic/2304-2559.pbf new file mode 100644 index 0000000..93ea36d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/2304-2559.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 2304-2559 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/23040-23295.pbf b/map_files/glyphs/Open Sans Semibold Italic/23040-23295.pbf new file mode 100644 index 0000000..ce89751 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/23040-23295.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 23040-23295 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/23296-23551.pbf b/map_files/glyphs/Open Sans Semibold Italic/23296-23551.pbf new file mode 100644 index 0000000..399c4d3 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/23296-23551.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 23296-23551 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/23552-23807.pbf b/map_files/glyphs/Open Sans Semibold Italic/23552-23807.pbf new file mode 100644 index 0000000..a6de414 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/23552-23807.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 23552-23807 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/23808-24063.pbf b/map_files/glyphs/Open Sans Semibold Italic/23808-24063.pbf new file mode 100644 index 0000000..f6d253c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/23808-24063.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 23808-24063 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/24064-24319.pbf b/map_files/glyphs/Open Sans Semibold Italic/24064-24319.pbf new file mode 100644 index 0000000..b98f818 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/24064-24319.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 24064-24319 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/24320-24575.pbf b/map_files/glyphs/Open Sans Semibold Italic/24320-24575.pbf new file mode 100644 index 0000000..7ccae07 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/24320-24575.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 24320-24575 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/24576-24831.pbf b/map_files/glyphs/Open Sans Semibold Italic/24576-24831.pbf new file mode 100644 index 0000000..223dd7e --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/24576-24831.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 24576-24831 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/24832-25087.pbf b/map_files/glyphs/Open Sans Semibold Italic/24832-25087.pbf new file mode 100644 index 0000000..4073c90 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/24832-25087.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 24832-25087 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/25088-25343.pbf b/map_files/glyphs/Open Sans Semibold Italic/25088-25343.pbf new file mode 100644 index 0000000..a334d56 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/25088-25343.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 25088-25343 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/25344-25599.pbf b/map_files/glyphs/Open Sans Semibold Italic/25344-25599.pbf new file mode 100644 index 0000000..59db5d7 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/25344-25599.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 25344-25599 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/256-511.pbf b/map_files/glyphs/Open Sans Semibold Italic/256-511.pbf new file mode 100644 index 0000000..d2dae6a Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/256-511.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/2560-2815.pbf b/map_files/glyphs/Open Sans Semibold Italic/2560-2815.pbf new file mode 100644 index 0000000..6e06e70 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/2560-2815.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 2560-2815 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/25600-25855.pbf b/map_files/glyphs/Open Sans Semibold Italic/25600-25855.pbf new file mode 100644 index 0000000..5f2aa7c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/25600-25855.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 25600-25855 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/25856-26111.pbf b/map_files/glyphs/Open Sans Semibold Italic/25856-26111.pbf new file mode 100644 index 0000000..fcbe393 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/25856-26111.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 25856-26111 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/26112-26367.pbf b/map_files/glyphs/Open Sans Semibold Italic/26112-26367.pbf new file mode 100644 index 0000000..5460cfc --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/26112-26367.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 26112-26367 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/26368-26623.pbf b/map_files/glyphs/Open Sans Semibold Italic/26368-26623.pbf new file mode 100644 index 0000000..4d7986d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/26368-26623.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 26368-26623 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/26624-26879.pbf b/map_files/glyphs/Open Sans Semibold Italic/26624-26879.pbf new file mode 100644 index 0000000..f560f3f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/26624-26879.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 26624-26879 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/26880-27135.pbf b/map_files/glyphs/Open Sans Semibold Italic/26880-27135.pbf new file mode 100644 index 0000000..e329571 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/26880-27135.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 26880-27135 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/27136-27391.pbf b/map_files/glyphs/Open Sans Semibold Italic/27136-27391.pbf new file mode 100644 index 0000000..10fcc9e --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/27136-27391.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 27136-27391 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/27392-27647.pbf b/map_files/glyphs/Open Sans Semibold Italic/27392-27647.pbf new file mode 100644 index 0000000..0bec169 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/27392-27647.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 27392-27647 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/27648-27903.pbf b/map_files/glyphs/Open Sans Semibold Italic/27648-27903.pbf new file mode 100644 index 0000000..609e05d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/27648-27903.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 27648-27903 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/27904-28159.pbf b/map_files/glyphs/Open Sans Semibold Italic/27904-28159.pbf new file mode 100644 index 0000000..bb8bf35 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/27904-28159.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 27904-28159 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/2816-3071.pbf b/map_files/glyphs/Open Sans Semibold Italic/2816-3071.pbf new file mode 100644 index 0000000..d0f0a96 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/2816-3071.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 2816-3071 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/28160-28415.pbf b/map_files/glyphs/Open Sans Semibold Italic/28160-28415.pbf new file mode 100644 index 0000000..6e8e73c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/28160-28415.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 28160-28415 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/28416-28671.pbf b/map_files/glyphs/Open Sans Semibold Italic/28416-28671.pbf new file mode 100644 index 0000000..ce45838 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/28416-28671.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 28416-28671 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/28672-28927.pbf b/map_files/glyphs/Open Sans Semibold Italic/28672-28927.pbf new file mode 100644 index 0000000..563e970 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/28672-28927.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 28672-28927 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/28928-29183.pbf b/map_files/glyphs/Open Sans Semibold Italic/28928-29183.pbf new file mode 100644 index 0000000..0dc7a2b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/28928-29183.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 28928-29183 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/29184-29439.pbf b/map_files/glyphs/Open Sans Semibold Italic/29184-29439.pbf new file mode 100644 index 0000000..307b3fa --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/29184-29439.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 29184-29439 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/29440-29695.pbf b/map_files/glyphs/Open Sans Semibold Italic/29440-29695.pbf new file mode 100644 index 0000000..c1cabae --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/29440-29695.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 29440-29695 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/29696-29951.pbf b/map_files/glyphs/Open Sans Semibold Italic/29696-29951.pbf new file mode 100644 index 0000000..57f32e2 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/29696-29951.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 29696-29951 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/29952-30207.pbf b/map_files/glyphs/Open Sans Semibold Italic/29952-30207.pbf new file mode 100644 index 0000000..07b3481 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/29952-30207.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 29952-30207 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/30208-30463.pbf b/map_files/glyphs/Open Sans Semibold Italic/30208-30463.pbf new file mode 100644 index 0000000..5e5c733 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/30208-30463.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 30208-30463 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/30464-30719.pbf b/map_files/glyphs/Open Sans Semibold Italic/30464-30719.pbf new file mode 100644 index 0000000..3db2b4b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/30464-30719.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 30464-30719 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/3072-3327.pbf b/map_files/glyphs/Open Sans Semibold Italic/3072-3327.pbf new file mode 100644 index 0000000..52b0fdc --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/3072-3327.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 3072-3327 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/30720-30975.pbf b/map_files/glyphs/Open Sans Semibold Italic/30720-30975.pbf new file mode 100644 index 0000000..631b9d3 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/30720-30975.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 30720-30975 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/30976-31231.pbf b/map_files/glyphs/Open Sans Semibold Italic/30976-31231.pbf new file mode 100644 index 0000000..e60abfe --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/30976-31231.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 30976-31231 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/31232-31487.pbf b/map_files/glyphs/Open Sans Semibold Italic/31232-31487.pbf new file mode 100644 index 0000000..7e5ea75 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/31232-31487.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 31232-31487 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/31488-31743.pbf b/map_files/glyphs/Open Sans Semibold Italic/31488-31743.pbf new file mode 100644 index 0000000..5aab919 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/31488-31743.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 31488-31743 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/31744-31999.pbf b/map_files/glyphs/Open Sans Semibold Italic/31744-31999.pbf new file mode 100644 index 0000000..5b09d70 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/31744-31999.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 31744-31999 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/32000-32255.pbf b/map_files/glyphs/Open Sans Semibold Italic/32000-32255.pbf new file mode 100644 index 0000000..27536ee --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/32000-32255.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 32000-32255 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/32256-32511.pbf b/map_files/glyphs/Open Sans Semibold Italic/32256-32511.pbf new file mode 100644 index 0000000..53eb32d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/32256-32511.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 32256-32511 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/32512-32767.pbf b/map_files/glyphs/Open Sans Semibold Italic/32512-32767.pbf new file mode 100644 index 0000000..bef2996 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/32512-32767.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 32512-32767 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/32768-33023.pbf b/map_files/glyphs/Open Sans Semibold Italic/32768-33023.pbf new file mode 100644 index 0000000..4d8b062 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/32768-33023.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 32768-33023 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/33024-33279.pbf b/map_files/glyphs/Open Sans Semibold Italic/33024-33279.pbf new file mode 100644 index 0000000..aace15b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/33024-33279.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 33024-33279 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/3328-3583.pbf b/map_files/glyphs/Open Sans Semibold Italic/3328-3583.pbf new file mode 100644 index 0000000..6ff45ea --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/3328-3583.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 3328-3583 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/33280-33535.pbf b/map_files/glyphs/Open Sans Semibold Italic/33280-33535.pbf new file mode 100644 index 0000000..2b131b4 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/33280-33535.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 33280-33535 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/33536-33791.pbf b/map_files/glyphs/Open Sans Semibold Italic/33536-33791.pbf new file mode 100644 index 0000000..0edfb70 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/33536-33791.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 33536-33791 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/33792-34047.pbf b/map_files/glyphs/Open Sans Semibold Italic/33792-34047.pbf new file mode 100644 index 0000000..25564d6 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/33792-34047.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 33792-34047 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/34048-34303.pbf b/map_files/glyphs/Open Sans Semibold Italic/34048-34303.pbf new file mode 100644 index 0000000..561697d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/34048-34303.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 34048-34303 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/34304-34559.pbf b/map_files/glyphs/Open Sans Semibold Italic/34304-34559.pbf new file mode 100644 index 0000000..a2a5005 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/34304-34559.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 34304-34559 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/34560-34815.pbf b/map_files/glyphs/Open Sans Semibold Italic/34560-34815.pbf new file mode 100644 index 0000000..4f7893a --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/34560-34815.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 34560-34815 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/34816-35071.pbf b/map_files/glyphs/Open Sans Semibold Italic/34816-35071.pbf new file mode 100644 index 0000000..2349876 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/34816-35071.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 34816-35071 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/35072-35327.pbf b/map_files/glyphs/Open Sans Semibold Italic/35072-35327.pbf new file mode 100644 index 0000000..3a94e92 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/35072-35327.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 35072-35327 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/35328-35583.pbf b/map_files/glyphs/Open Sans Semibold Italic/35328-35583.pbf new file mode 100644 index 0000000..8987616 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/35328-35583.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 35328-35583 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/35584-35839.pbf b/map_files/glyphs/Open Sans Semibold Italic/35584-35839.pbf new file mode 100644 index 0000000..3a8ae87 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/35584-35839.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 35584-35839 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/3584-3839.pbf b/map_files/glyphs/Open Sans Semibold Italic/3584-3839.pbf new file mode 100644 index 0000000..86cd9e6 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/3584-3839.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 3584-3839 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/35840-36095.pbf b/map_files/glyphs/Open Sans Semibold Italic/35840-36095.pbf new file mode 100644 index 0000000..0c6920f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/35840-36095.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 35840-36095 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/36096-36351.pbf b/map_files/glyphs/Open Sans Semibold Italic/36096-36351.pbf new file mode 100644 index 0000000..8cd0f0c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/36096-36351.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 36096-36351 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/36352-36607.pbf b/map_files/glyphs/Open Sans Semibold Italic/36352-36607.pbf new file mode 100644 index 0000000..ec6f6e0 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/36352-36607.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 36352-36607 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/36608-36863.pbf b/map_files/glyphs/Open Sans Semibold Italic/36608-36863.pbf new file mode 100644 index 0000000..aa94ada --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/36608-36863.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 36608-36863 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/36864-37119.pbf b/map_files/glyphs/Open Sans Semibold Italic/36864-37119.pbf new file mode 100644 index 0000000..60113da --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/36864-37119.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 36864-37119 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/37120-37375.pbf b/map_files/glyphs/Open Sans Semibold Italic/37120-37375.pbf new file mode 100644 index 0000000..bb77e82 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/37120-37375.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 37120-37375 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/37376-37631.pbf b/map_files/glyphs/Open Sans Semibold Italic/37376-37631.pbf new file mode 100644 index 0000000..d1dadaa --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/37376-37631.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 37376-37631 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/37632-37887.pbf b/map_files/glyphs/Open Sans Semibold Italic/37632-37887.pbf new file mode 100644 index 0000000..b895f94 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/37632-37887.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 37632-37887 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/37888-38143.pbf b/map_files/glyphs/Open Sans Semibold Italic/37888-38143.pbf new file mode 100644 index 0000000..88a7edc --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/37888-38143.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 37888-38143 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/38144-38399.pbf b/map_files/glyphs/Open Sans Semibold Italic/38144-38399.pbf new file mode 100644 index 0000000..606fd61 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/38144-38399.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 38144-38399 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/3840-4095.pbf b/map_files/glyphs/Open Sans Semibold Italic/3840-4095.pbf new file mode 100644 index 0000000..97ae3d8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/3840-4095.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 3840-4095 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/38400-38655.pbf b/map_files/glyphs/Open Sans Semibold Italic/38400-38655.pbf new file mode 100644 index 0000000..a52d02f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/38400-38655.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 38400-38655 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/38656-38911.pbf b/map_files/glyphs/Open Sans Semibold Italic/38656-38911.pbf new file mode 100644 index 0000000..f61aad9 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/38656-38911.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 38656-38911 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/38912-39167.pbf b/map_files/glyphs/Open Sans Semibold Italic/38912-39167.pbf new file mode 100644 index 0000000..c9c9a85 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/38912-39167.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 38912-39167 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/39168-39423.pbf b/map_files/glyphs/Open Sans Semibold Italic/39168-39423.pbf new file mode 100644 index 0000000..e881cab --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/39168-39423.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 39168-39423 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/39424-39679.pbf b/map_files/glyphs/Open Sans Semibold Italic/39424-39679.pbf new file mode 100644 index 0000000..ba31065 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/39424-39679.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 39424-39679 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/39680-39935.pbf b/map_files/glyphs/Open Sans Semibold Italic/39680-39935.pbf new file mode 100644 index 0000000..8b1989f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/39680-39935.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 39680-39935 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/39936-40191.pbf b/map_files/glyphs/Open Sans Semibold Italic/39936-40191.pbf new file mode 100644 index 0000000..03d68e3 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/39936-40191.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 39936-40191 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/40192-40447.pbf b/map_files/glyphs/Open Sans Semibold Italic/40192-40447.pbf new file mode 100644 index 0000000..4a7fb1c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/40192-40447.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 40192-40447 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/40448-40703.pbf b/map_files/glyphs/Open Sans Semibold Italic/40448-40703.pbf new file mode 100644 index 0000000..705ec06 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/40448-40703.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 40448-40703 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/40704-40959.pbf b/map_files/glyphs/Open Sans Semibold Italic/40704-40959.pbf new file mode 100644 index 0000000..e3b6c6e --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/40704-40959.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 40704-40959 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/4096-4351.pbf b/map_files/glyphs/Open Sans Semibold Italic/4096-4351.pbf new file mode 100644 index 0000000..7d06b16 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/4096-4351.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 4096-4351 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/40960-41215.pbf b/map_files/glyphs/Open Sans Semibold Italic/40960-41215.pbf new file mode 100644 index 0000000..5d8175a --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/40960-41215.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 40960-41215 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/41216-41471.pbf b/map_files/glyphs/Open Sans Semibold Italic/41216-41471.pbf new file mode 100644 index 0000000..088d899 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/41216-41471.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 41216-41471 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/41472-41727.pbf b/map_files/glyphs/Open Sans Semibold Italic/41472-41727.pbf new file mode 100644 index 0000000..a8d591d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/41472-41727.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 41472-41727 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/41728-41983.pbf b/map_files/glyphs/Open Sans Semibold Italic/41728-41983.pbf new file mode 100644 index 0000000..7d6c7c2 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/41728-41983.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 41728-41983 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/41984-42239.pbf b/map_files/glyphs/Open Sans Semibold Italic/41984-42239.pbf new file mode 100644 index 0000000..f75e62e --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/41984-42239.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 41984-42239 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/42240-42495.pbf b/map_files/glyphs/Open Sans Semibold Italic/42240-42495.pbf new file mode 100644 index 0000000..1932ae2 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/42240-42495.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 42240-42495 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/42496-42751.pbf b/map_files/glyphs/Open Sans Semibold Italic/42496-42751.pbf new file mode 100644 index 0000000..de34841 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/42496-42751.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 42496-42751 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/42752-43007.pbf b/map_files/glyphs/Open Sans Semibold Italic/42752-43007.pbf new file mode 100644 index 0000000..a5e4127 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/42752-43007.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 42752-43007 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/43008-43263.pbf b/map_files/glyphs/Open Sans Semibold Italic/43008-43263.pbf new file mode 100644 index 0000000..c80ee8c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/43008-43263.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 43008-43263 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/43264-43519.pbf b/map_files/glyphs/Open Sans Semibold Italic/43264-43519.pbf new file mode 100644 index 0000000..db03de3 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/43264-43519.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 43264-43519 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/4352-4607.pbf b/map_files/glyphs/Open Sans Semibold Italic/4352-4607.pbf new file mode 100644 index 0000000..20e5e17 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/4352-4607.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 4352-4607 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/43520-43775.pbf b/map_files/glyphs/Open Sans Semibold Italic/43520-43775.pbf new file mode 100644 index 0000000..4dc72cf --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/43520-43775.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 43520-43775 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/43776-44031.pbf b/map_files/glyphs/Open Sans Semibold Italic/43776-44031.pbf new file mode 100644 index 0000000..e90ef70 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/43776-44031.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 43776-44031 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/44032-44287.pbf b/map_files/glyphs/Open Sans Semibold Italic/44032-44287.pbf new file mode 100644 index 0000000..7eed6bb --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/44032-44287.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 44032-44287 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/44288-44543.pbf b/map_files/glyphs/Open Sans Semibold Italic/44288-44543.pbf new file mode 100644 index 0000000..cecb059 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/44288-44543.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 44288-44543 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/44544-44799.pbf b/map_files/glyphs/Open Sans Semibold Italic/44544-44799.pbf new file mode 100644 index 0000000..0042b80 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/44544-44799.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 44544-44799 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/44800-45055.pbf b/map_files/glyphs/Open Sans Semibold Italic/44800-45055.pbf new file mode 100644 index 0000000..e1c3f2d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/44800-45055.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 44800-45055 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/45056-45311.pbf b/map_files/glyphs/Open Sans Semibold Italic/45056-45311.pbf new file mode 100644 index 0000000..1fc9146 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/45056-45311.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 45056-45311 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/45312-45567.pbf b/map_files/glyphs/Open Sans Semibold Italic/45312-45567.pbf new file mode 100644 index 0000000..e1734d1 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/45312-45567.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 45312-45567 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/45568-45823.pbf b/map_files/glyphs/Open Sans Semibold Italic/45568-45823.pbf new file mode 100644 index 0000000..e675232 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/45568-45823.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 45568-45823 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/45824-46079.pbf b/map_files/glyphs/Open Sans Semibold Italic/45824-46079.pbf new file mode 100644 index 0000000..48b7644 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/45824-46079.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 45824-46079 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/4608-4863.pbf b/map_files/glyphs/Open Sans Semibold Italic/4608-4863.pbf new file mode 100644 index 0000000..3b918d5 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/4608-4863.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 4608-4863 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/46080-46335.pbf b/map_files/glyphs/Open Sans Semibold Italic/46080-46335.pbf new file mode 100644 index 0000000..e55c16f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/46080-46335.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 46080-46335 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/46336-46591.pbf b/map_files/glyphs/Open Sans Semibold Italic/46336-46591.pbf new file mode 100644 index 0000000..52ec622 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/46336-46591.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 46336-46591 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/46592-46847.pbf b/map_files/glyphs/Open Sans Semibold Italic/46592-46847.pbf new file mode 100644 index 0000000..6b266fe --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/46592-46847.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 46592-46847 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/46848-47103.pbf b/map_files/glyphs/Open Sans Semibold Italic/46848-47103.pbf new file mode 100644 index 0000000..f384bdd --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/46848-47103.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 46848-47103 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/47104-47359.pbf b/map_files/glyphs/Open Sans Semibold Italic/47104-47359.pbf new file mode 100644 index 0000000..d81630f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/47104-47359.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 47104-47359 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/47360-47615.pbf b/map_files/glyphs/Open Sans Semibold Italic/47360-47615.pbf new file mode 100644 index 0000000..90f79b4 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/47360-47615.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 47360-47615 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/47616-47871.pbf b/map_files/glyphs/Open Sans Semibold Italic/47616-47871.pbf new file mode 100644 index 0000000..401d8d0 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/47616-47871.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 47616-47871 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/47872-48127.pbf b/map_files/glyphs/Open Sans Semibold Italic/47872-48127.pbf new file mode 100644 index 0000000..f6d4cb5 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/47872-48127.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 47872-48127 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/48128-48383.pbf b/map_files/glyphs/Open Sans Semibold Italic/48128-48383.pbf new file mode 100644 index 0000000..363ce76 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/48128-48383.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 48128-48383 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/48384-48639.pbf b/map_files/glyphs/Open Sans Semibold Italic/48384-48639.pbf new file mode 100644 index 0000000..96aa3cd --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/48384-48639.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 48384-48639 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/4864-5119.pbf b/map_files/glyphs/Open Sans Semibold Italic/4864-5119.pbf new file mode 100644 index 0000000..c947afe --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/4864-5119.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 4864-5119 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/48640-48895.pbf b/map_files/glyphs/Open Sans Semibold Italic/48640-48895.pbf new file mode 100644 index 0000000..a6fc8ee --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/48640-48895.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 48640-48895 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/48896-49151.pbf b/map_files/glyphs/Open Sans Semibold Italic/48896-49151.pbf new file mode 100644 index 0000000..08c0ec0 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/48896-49151.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 48896-49151 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/49152-49407.pbf b/map_files/glyphs/Open Sans Semibold Italic/49152-49407.pbf new file mode 100644 index 0000000..5cbf5c2 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/49152-49407.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 49152-49407 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/49408-49663.pbf b/map_files/glyphs/Open Sans Semibold Italic/49408-49663.pbf new file mode 100644 index 0000000..b71d4f8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/49408-49663.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 49408-49663 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/49664-49919.pbf b/map_files/glyphs/Open Sans Semibold Italic/49664-49919.pbf new file mode 100644 index 0000000..8bfed54 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/49664-49919.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 49664-49919 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/49920-50175.pbf b/map_files/glyphs/Open Sans Semibold Italic/49920-50175.pbf new file mode 100644 index 0000000..92737fc --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/49920-50175.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 49920-50175 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/50176-50431.pbf b/map_files/glyphs/Open Sans Semibold Italic/50176-50431.pbf new file mode 100644 index 0000000..e68fe16 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/50176-50431.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 50176-50431 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/50432-50687.pbf b/map_files/glyphs/Open Sans Semibold Italic/50432-50687.pbf new file mode 100644 index 0000000..a543a9c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/50432-50687.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 50432-50687 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/50688-50943.pbf b/map_files/glyphs/Open Sans Semibold Italic/50688-50943.pbf new file mode 100644 index 0000000..dfdc4f2 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/50688-50943.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 50688-50943 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/50944-51199.pbf b/map_files/glyphs/Open Sans Semibold Italic/50944-51199.pbf new file mode 100644 index 0000000..608cc3f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/50944-51199.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 50944-51199 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/512-767.pbf b/map_files/glyphs/Open Sans Semibold Italic/512-767.pbf new file mode 100644 index 0000000..c400bb5 Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/512-767.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/5120-5375.pbf b/map_files/glyphs/Open Sans Semibold Italic/5120-5375.pbf new file mode 100644 index 0000000..508caa9 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/5120-5375.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 5120-5375 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/51200-51455.pbf b/map_files/glyphs/Open Sans Semibold Italic/51200-51455.pbf new file mode 100644 index 0000000..34be46c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/51200-51455.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 51200-51455 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/51456-51711.pbf b/map_files/glyphs/Open Sans Semibold Italic/51456-51711.pbf new file mode 100644 index 0000000..0c90b84 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/51456-51711.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 51456-51711 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/51712-51967.pbf b/map_files/glyphs/Open Sans Semibold Italic/51712-51967.pbf new file mode 100644 index 0000000..d1b9eb7 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/51712-51967.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 51712-51967 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/51968-52223.pbf b/map_files/glyphs/Open Sans Semibold Italic/51968-52223.pbf new file mode 100644 index 0000000..ce5cc72 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/51968-52223.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 51968-52223 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/52224-52479.pbf b/map_files/glyphs/Open Sans Semibold Italic/52224-52479.pbf new file mode 100644 index 0000000..b9626c7 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/52224-52479.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 52224-52479 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/52480-52735.pbf b/map_files/glyphs/Open Sans Semibold Italic/52480-52735.pbf new file mode 100644 index 0000000..bc46666 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/52480-52735.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 52480-52735 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/52736-52991.pbf b/map_files/glyphs/Open Sans Semibold Italic/52736-52991.pbf new file mode 100644 index 0000000..315c275 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/52736-52991.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 52736-52991 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/52992-53247.pbf b/map_files/glyphs/Open Sans Semibold Italic/52992-53247.pbf new file mode 100644 index 0000000..21b1040 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/52992-53247.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 52992-53247 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/53248-53503.pbf b/map_files/glyphs/Open Sans Semibold Italic/53248-53503.pbf new file mode 100644 index 0000000..86be8ef --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/53248-53503.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 53248-53503 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/53504-53759.pbf b/map_files/glyphs/Open Sans Semibold Italic/53504-53759.pbf new file mode 100644 index 0000000..eac6eb5 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/53504-53759.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 53504-53759 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/5376-5631.pbf b/map_files/glyphs/Open Sans Semibold Italic/5376-5631.pbf new file mode 100644 index 0000000..18aa816 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/5376-5631.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 5376-5631 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/53760-54015.pbf b/map_files/glyphs/Open Sans Semibold Italic/53760-54015.pbf new file mode 100644 index 0000000..9fcdf15 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/53760-54015.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 53760-54015 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/54016-54271.pbf b/map_files/glyphs/Open Sans Semibold Italic/54016-54271.pbf new file mode 100644 index 0000000..64b5c19 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/54016-54271.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 54016-54271 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/54272-54527.pbf b/map_files/glyphs/Open Sans Semibold Italic/54272-54527.pbf new file mode 100644 index 0000000..80e5f41 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/54272-54527.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 54272-54527 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/54528-54783.pbf b/map_files/glyphs/Open Sans Semibold Italic/54528-54783.pbf new file mode 100644 index 0000000..b3d624f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/54528-54783.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 54528-54783 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/54784-55039.pbf b/map_files/glyphs/Open Sans Semibold Italic/54784-55039.pbf new file mode 100644 index 0000000..f9a171f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/54784-55039.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 54784-55039 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/55040-55295.pbf b/map_files/glyphs/Open Sans Semibold Italic/55040-55295.pbf new file mode 100644 index 0000000..344587f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/55040-55295.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 55040-55295 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/55296-55551.pbf b/map_files/glyphs/Open Sans Semibold Italic/55296-55551.pbf new file mode 100644 index 0000000..5088ec7 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/55296-55551.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 55296-55551 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/55552-55807.pbf b/map_files/glyphs/Open Sans Semibold Italic/55552-55807.pbf new file mode 100644 index 0000000..c2d3e05 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/55552-55807.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 55552-55807 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/55808-56063.pbf b/map_files/glyphs/Open Sans Semibold Italic/55808-56063.pbf new file mode 100644 index 0000000..28a505c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/55808-56063.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 55808-56063 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/56064-56319.pbf b/map_files/glyphs/Open Sans Semibold Italic/56064-56319.pbf new file mode 100644 index 0000000..1000cb6 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/56064-56319.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 56064-56319 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/5632-5887.pbf b/map_files/glyphs/Open Sans Semibold Italic/5632-5887.pbf new file mode 100644 index 0000000..58476c9 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/5632-5887.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 5632-5887 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/56320-56575.pbf b/map_files/glyphs/Open Sans Semibold Italic/56320-56575.pbf new file mode 100644 index 0000000..fab35fa --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/56320-56575.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 56320-56575 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/56576-56831.pbf b/map_files/glyphs/Open Sans Semibold Italic/56576-56831.pbf new file mode 100644 index 0000000..50fc782 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/56576-56831.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 56576-56831 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/56832-57087.pbf b/map_files/glyphs/Open Sans Semibold Italic/56832-57087.pbf new file mode 100644 index 0000000..a8da7a8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/56832-57087.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 56832-57087 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/57088-57343.pbf b/map_files/glyphs/Open Sans Semibold Italic/57088-57343.pbf new file mode 100644 index 0000000..a214829 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/57088-57343.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 57088-57343 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/57344-57599.pbf b/map_files/glyphs/Open Sans Semibold Italic/57344-57599.pbf new file mode 100644 index 0000000..01553c4 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/57344-57599.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 57344-57599 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/57600-57855.pbf b/map_files/glyphs/Open Sans Semibold Italic/57600-57855.pbf new file mode 100644 index 0000000..0a5c527 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/57600-57855.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 57600-57855 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/57856-58111.pbf b/map_files/glyphs/Open Sans Semibold Italic/57856-58111.pbf new file mode 100644 index 0000000..7b10e9f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/57856-58111.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 57856-58111 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/58112-58367.pbf b/map_files/glyphs/Open Sans Semibold Italic/58112-58367.pbf new file mode 100644 index 0000000..775d6ff --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/58112-58367.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 58112-58367 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/58368-58623.pbf b/map_files/glyphs/Open Sans Semibold Italic/58368-58623.pbf new file mode 100644 index 0000000..2f510e9 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/58368-58623.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 58368-58623 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/58624-58879.pbf b/map_files/glyphs/Open Sans Semibold Italic/58624-58879.pbf new file mode 100644 index 0000000..e07e394 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/58624-58879.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 58624-58879 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/5888-6143.pbf b/map_files/glyphs/Open Sans Semibold Italic/5888-6143.pbf new file mode 100644 index 0000000..cd4d290 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/5888-6143.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 5888-6143 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/58880-59135.pbf b/map_files/glyphs/Open Sans Semibold Italic/58880-59135.pbf new file mode 100644 index 0000000..7a9dc37 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/58880-59135.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 58880-59135 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/59136-59391.pbf b/map_files/glyphs/Open Sans Semibold Italic/59136-59391.pbf new file mode 100644 index 0000000..8f3a999 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/59136-59391.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 59136-59391 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/59392-59647.pbf b/map_files/glyphs/Open Sans Semibold Italic/59392-59647.pbf new file mode 100644 index 0000000..69309c1 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/59392-59647.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 59392-59647 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/59648-59903.pbf b/map_files/glyphs/Open Sans Semibold Italic/59648-59903.pbf new file mode 100644 index 0000000..3e2fc0c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/59648-59903.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 59648-59903 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/59904-60159.pbf b/map_files/glyphs/Open Sans Semibold Italic/59904-60159.pbf new file mode 100644 index 0000000..21e3efc --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/59904-60159.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 59904-60159 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/60160-60415.pbf b/map_files/glyphs/Open Sans Semibold Italic/60160-60415.pbf new file mode 100644 index 0000000..6fcceb7 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/60160-60415.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 60160-60415 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/60416-60671.pbf b/map_files/glyphs/Open Sans Semibold Italic/60416-60671.pbf new file mode 100644 index 0000000..dfd8057 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/60416-60671.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 60416-60671 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/60672-60927.pbf b/map_files/glyphs/Open Sans Semibold Italic/60672-60927.pbf new file mode 100644 index 0000000..4b2f34f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/60672-60927.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 60672-60927 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/60928-61183.pbf b/map_files/glyphs/Open Sans Semibold Italic/60928-61183.pbf new file mode 100644 index 0000000..74841c6 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/60928-61183.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 60928-61183 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/61184-61439.pbf b/map_files/glyphs/Open Sans Semibold Italic/61184-61439.pbf new file mode 100644 index 0000000..65ed559 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/61184-61439.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 61184-61439 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/6144-6399.pbf b/map_files/glyphs/Open Sans Semibold Italic/6144-6399.pbf new file mode 100644 index 0000000..1166705 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/6144-6399.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 6144-6399 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/61440-61695.pbf b/map_files/glyphs/Open Sans Semibold Italic/61440-61695.pbf new file mode 100644 index 0000000..8f0c487 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/61440-61695.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 61440-61695 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/61696-61951.pbf b/map_files/glyphs/Open Sans Semibold Italic/61696-61951.pbf new file mode 100644 index 0000000..1fd3b5b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/61696-61951.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 61696-61951 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/61952-62207.pbf b/map_files/glyphs/Open Sans Semibold Italic/61952-62207.pbf new file mode 100644 index 0000000..041a230 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/61952-62207.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 61952-62207 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/62208-62463.pbf b/map_files/glyphs/Open Sans Semibold Italic/62208-62463.pbf new file mode 100644 index 0000000..8711af3 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/62208-62463.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 62208-62463 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/62464-62719.pbf b/map_files/glyphs/Open Sans Semibold Italic/62464-62719.pbf new file mode 100644 index 0000000..3f175af --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/62464-62719.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 62464-62719 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/62720-62975.pbf b/map_files/glyphs/Open Sans Semibold Italic/62720-62975.pbf new file mode 100644 index 0000000..488d947 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/62720-62975.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 62720-62975 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/62976-63231.pbf b/map_files/glyphs/Open Sans Semibold Italic/62976-63231.pbf new file mode 100644 index 0000000..035bce5 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/62976-63231.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 62976-63231 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/63232-63487.pbf b/map_files/glyphs/Open Sans Semibold Italic/63232-63487.pbf new file mode 100644 index 0000000..a245bff --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/63232-63487.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 63232-63487 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/63488-63743.pbf b/map_files/glyphs/Open Sans Semibold Italic/63488-63743.pbf new file mode 100644 index 0000000..f64b69d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/63488-63743.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 63488-63743 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/63744-63999.pbf b/map_files/glyphs/Open Sans Semibold Italic/63744-63999.pbf new file mode 100644 index 0000000..3f22670 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/63744-63999.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 63744-63999 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/6400-6655.pbf b/map_files/glyphs/Open Sans Semibold Italic/6400-6655.pbf new file mode 100644 index 0000000..05dd89e --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/6400-6655.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 6400-6655 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/64000-64255.pbf b/map_files/glyphs/Open Sans Semibold Italic/64000-64255.pbf new file mode 100644 index 0000000..ec27705 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/64000-64255.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 64000-64255 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/64256-64511.pbf b/map_files/glyphs/Open Sans Semibold Italic/64256-64511.pbf new file mode 100644 index 0000000..5a58473 Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/64256-64511.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/64512-64767.pbf b/map_files/glyphs/Open Sans Semibold Italic/64512-64767.pbf new file mode 100644 index 0000000..5983f16 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/64512-64767.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 64512-64767 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/64768-65023.pbf b/map_files/glyphs/Open Sans Semibold Italic/64768-65023.pbf new file mode 100644 index 0000000..aa76226 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/64768-65023.pbf @@ -0,0 +1,3 @@ + +( +Open Sans Semibold Italic 64768-65023 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/65024-65279.pbf b/map_files/glyphs/Open Sans Semibold Italic/65024-65279.pbf new file mode 100644 index 0000000..b8e6f1b Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/65024-65279.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/65280-65535.pbf b/map_files/glyphs/Open Sans Semibold Italic/65280-65535.pbf new file mode 100644 index 0000000..395f99e Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/65280-65535.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/6656-6911.pbf b/map_files/glyphs/Open Sans Semibold Italic/6656-6911.pbf new file mode 100644 index 0000000..48c8d48 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/6656-6911.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 6656-6911 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/6912-7167.pbf b/map_files/glyphs/Open Sans Semibold Italic/6912-7167.pbf new file mode 100644 index 0000000..8d3cdb0 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/6912-7167.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 6912-7167 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/7168-7423.pbf b/map_files/glyphs/Open Sans Semibold Italic/7168-7423.pbf new file mode 100644 index 0000000..c3c9331 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/7168-7423.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 7168-7423 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/7424-7679.pbf b/map_files/glyphs/Open Sans Semibold Italic/7424-7679.pbf new file mode 100644 index 0000000..d8d579d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/7424-7679.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 7424-7679 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/768-1023.pbf b/map_files/glyphs/Open Sans Semibold Italic/768-1023.pbf new file mode 100644 index 0000000..8f139be Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/768-1023.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/7680-7935.pbf b/map_files/glyphs/Open Sans Semibold Italic/7680-7935.pbf new file mode 100644 index 0000000..484db6a Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/7680-7935.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/7936-8191.pbf b/map_files/glyphs/Open Sans Semibold Italic/7936-8191.pbf new file mode 100644 index 0000000..de2319f Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/7936-8191.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/8192-8447.pbf b/map_files/glyphs/Open Sans Semibold Italic/8192-8447.pbf new file mode 100644 index 0000000..fbf993f Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/8192-8447.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/8448-8703.pbf b/map_files/glyphs/Open Sans Semibold Italic/8448-8703.pbf new file mode 100644 index 0000000..17c99e2 Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/8448-8703.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/8704-8959.pbf b/map_files/glyphs/Open Sans Semibold Italic/8704-8959.pbf new file mode 100644 index 0000000..8c03cce Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/8704-8959.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/8960-9215.pbf b/map_files/glyphs/Open Sans Semibold Italic/8960-9215.pbf new file mode 100644 index 0000000..1d9e9be --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/8960-9215.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 8960-9215 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/9216-9471.pbf b/map_files/glyphs/Open Sans Semibold Italic/9216-9471.pbf new file mode 100644 index 0000000..9d92280 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/9216-9471.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 9216-9471 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/9472-9727.pbf b/map_files/glyphs/Open Sans Semibold Italic/9472-9727.pbf new file mode 100644 index 0000000..f2fb9dd Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold Italic/9472-9727.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold Italic/9728-9983.pbf b/map_files/glyphs/Open Sans Semibold Italic/9728-9983.pbf new file mode 100644 index 0000000..2f449aa --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/9728-9983.pbf @@ -0,0 +1,3 @@ + +& +Open Sans Semibold Italic 9728-9983 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold Italic/9984-10239.pbf b/map_files/glyphs/Open Sans Semibold Italic/9984-10239.pbf new file mode 100644 index 0000000..28a4b71 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold Italic/9984-10239.pbf @@ -0,0 +1,4 @@ + +' +Open Sans Semibold Italic +9984-10239 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/0-255.pbf b/map_files/glyphs/Open Sans Semibold/0-255.pbf new file mode 100755 index 0000000..806e3df Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/0-255.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/1024-1279.pbf b/map_files/glyphs/Open Sans Semibold/1024-1279.pbf new file mode 100755 index 0000000..1e61f51 Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/1024-1279.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/10240-10495.pbf b/map_files/glyphs/Open Sans Semibold/10240-10495.pbf new file mode 100755 index 0000000..eb13177 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/10240-10495.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 10240-10495 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/10496-10751.pbf b/map_files/glyphs/Open Sans Semibold/10496-10751.pbf new file mode 100755 index 0000000..8a9a4ae --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/10496-10751.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 10496-10751 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/10752-11007.pbf b/map_files/glyphs/Open Sans Semibold/10752-11007.pbf new file mode 100755 index 0000000..9334cb3 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/10752-11007.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 10752-11007 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/11008-11263.pbf b/map_files/glyphs/Open Sans Semibold/11008-11263.pbf new file mode 100755 index 0000000..1174961 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/11008-11263.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 11008-11263 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/11264-11519.pbf b/map_files/glyphs/Open Sans Semibold/11264-11519.pbf new file mode 100755 index 0000000..f17f99d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/11264-11519.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 11264-11519 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/11520-11775.pbf b/map_files/glyphs/Open Sans Semibold/11520-11775.pbf new file mode 100755 index 0000000..1696217 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/11520-11775.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 11520-11775 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/11776-12031.pbf b/map_files/glyphs/Open Sans Semibold/11776-12031.pbf new file mode 100755 index 0000000..0c5cb61 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/11776-12031.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 11776-12031 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/12032-12287.pbf b/map_files/glyphs/Open Sans Semibold/12032-12287.pbf new file mode 100755 index 0000000..4c94517 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/12032-12287.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 12032-12287 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/12288-12543.pbf b/map_files/glyphs/Open Sans Semibold/12288-12543.pbf new file mode 100755 index 0000000..cbe0b43 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/12288-12543.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 12288-12543 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/12544-12799.pbf b/map_files/glyphs/Open Sans Semibold/12544-12799.pbf new file mode 100755 index 0000000..3c887c8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/12544-12799.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 12544-12799 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/1280-1535.pbf b/map_files/glyphs/Open Sans Semibold/1280-1535.pbf new file mode 100755 index 0000000..7db5a4e Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/1280-1535.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/12800-13055.pbf b/map_files/glyphs/Open Sans Semibold/12800-13055.pbf new file mode 100755 index 0000000..5f56e33 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/12800-13055.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 12800-13055 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/13056-13311.pbf b/map_files/glyphs/Open Sans Semibold/13056-13311.pbf new file mode 100755 index 0000000..584217b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/13056-13311.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 13056-13311 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/13312-13567.pbf b/map_files/glyphs/Open Sans Semibold/13312-13567.pbf new file mode 100755 index 0000000..67ba162 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/13312-13567.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 13312-13567 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/13568-13823.pbf b/map_files/glyphs/Open Sans Semibold/13568-13823.pbf new file mode 100755 index 0000000..70cf872 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/13568-13823.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 13568-13823 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/13824-14079.pbf b/map_files/glyphs/Open Sans Semibold/13824-14079.pbf new file mode 100755 index 0000000..38e92c1 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/13824-14079.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 13824-14079 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/14080-14335.pbf b/map_files/glyphs/Open Sans Semibold/14080-14335.pbf new file mode 100755 index 0000000..32b1719 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/14080-14335.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 14080-14335 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/14336-14591.pbf b/map_files/glyphs/Open Sans Semibold/14336-14591.pbf new file mode 100755 index 0000000..3add6ea --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/14336-14591.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 14336-14591 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/14592-14847.pbf b/map_files/glyphs/Open Sans Semibold/14592-14847.pbf new file mode 100755 index 0000000..4b8e359 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/14592-14847.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 14592-14847 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/14848-15103.pbf b/map_files/glyphs/Open Sans Semibold/14848-15103.pbf new file mode 100755 index 0000000..bd1e856 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/14848-15103.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 14848-15103 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/15104-15359.pbf b/map_files/glyphs/Open Sans Semibold/15104-15359.pbf new file mode 100755 index 0000000..0f8f176 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/15104-15359.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 15104-15359 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/1536-1791.pbf b/map_files/glyphs/Open Sans Semibold/1536-1791.pbf new file mode 100755 index 0000000..87fa5f5 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/1536-1791.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 1536-1791 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/15360-15615.pbf b/map_files/glyphs/Open Sans Semibold/15360-15615.pbf new file mode 100755 index 0000000..a9c93a4 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/15360-15615.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 15360-15615 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/15616-15871.pbf b/map_files/glyphs/Open Sans Semibold/15616-15871.pbf new file mode 100755 index 0000000..6a3f165 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/15616-15871.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 15616-15871 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/15872-16127.pbf b/map_files/glyphs/Open Sans Semibold/15872-16127.pbf new file mode 100755 index 0000000..38a71dc --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/15872-16127.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 15872-16127 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/16128-16383.pbf b/map_files/glyphs/Open Sans Semibold/16128-16383.pbf new file mode 100755 index 0000000..6d18169 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/16128-16383.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 16128-16383 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/16384-16639.pbf b/map_files/glyphs/Open Sans Semibold/16384-16639.pbf new file mode 100755 index 0000000..3473fe3 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/16384-16639.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 16384-16639 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/16640-16895.pbf b/map_files/glyphs/Open Sans Semibold/16640-16895.pbf new file mode 100755 index 0000000..384f94e --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/16640-16895.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 16640-16895 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/16896-17151.pbf b/map_files/glyphs/Open Sans Semibold/16896-17151.pbf new file mode 100755 index 0000000..9decee3 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/16896-17151.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 16896-17151 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/17152-17407.pbf b/map_files/glyphs/Open Sans Semibold/17152-17407.pbf new file mode 100755 index 0000000..47bf889 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/17152-17407.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 17152-17407 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/17408-17663.pbf b/map_files/glyphs/Open Sans Semibold/17408-17663.pbf new file mode 100755 index 0000000..d36f0d8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/17408-17663.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 17408-17663 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/17664-17919.pbf b/map_files/glyphs/Open Sans Semibold/17664-17919.pbf new file mode 100755 index 0000000..5b6c955 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/17664-17919.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 17664-17919 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/1792-2047.pbf b/map_files/glyphs/Open Sans Semibold/1792-2047.pbf new file mode 100755 index 0000000..6d5c842 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/1792-2047.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 1792-2047 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/17920-18175.pbf b/map_files/glyphs/Open Sans Semibold/17920-18175.pbf new file mode 100755 index 0000000..e00d6f9 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/17920-18175.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 17920-18175 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/18176-18431.pbf b/map_files/glyphs/Open Sans Semibold/18176-18431.pbf new file mode 100755 index 0000000..c8a6a60 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/18176-18431.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 18176-18431 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/18432-18687.pbf b/map_files/glyphs/Open Sans Semibold/18432-18687.pbf new file mode 100755 index 0000000..9c7bd5f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/18432-18687.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 18432-18687 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/18688-18943.pbf b/map_files/glyphs/Open Sans Semibold/18688-18943.pbf new file mode 100755 index 0000000..30d9b50 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/18688-18943.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 18688-18943 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/18944-19199.pbf b/map_files/glyphs/Open Sans Semibold/18944-19199.pbf new file mode 100755 index 0000000..b95d553 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/18944-19199.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 18944-19199 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/19200-19455.pbf b/map_files/glyphs/Open Sans Semibold/19200-19455.pbf new file mode 100755 index 0000000..4b02e29 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/19200-19455.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 19200-19455 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/19456-19711.pbf b/map_files/glyphs/Open Sans Semibold/19456-19711.pbf new file mode 100755 index 0000000..2c5724d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/19456-19711.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 19456-19711 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/19712-19967.pbf b/map_files/glyphs/Open Sans Semibold/19712-19967.pbf new file mode 100755 index 0000000..e2ed8bf --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/19712-19967.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 19712-19967 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/19968-20223.pbf b/map_files/glyphs/Open Sans Semibold/19968-20223.pbf new file mode 100755 index 0000000..30069bd --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/19968-20223.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 19968-20223 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/20224-20479.pbf b/map_files/glyphs/Open Sans Semibold/20224-20479.pbf new file mode 100755 index 0000000..d4822b8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/20224-20479.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 20224-20479 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/2048-2303.pbf b/map_files/glyphs/Open Sans Semibold/2048-2303.pbf new file mode 100755 index 0000000..8081741 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/2048-2303.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 2048-2303 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/20480-20735.pbf b/map_files/glyphs/Open Sans Semibold/20480-20735.pbf new file mode 100755 index 0000000..7c60640 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/20480-20735.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 20480-20735 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/20736-20991.pbf b/map_files/glyphs/Open Sans Semibold/20736-20991.pbf new file mode 100755 index 0000000..3cfd6af --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/20736-20991.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 20736-20991 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/20992-21247.pbf b/map_files/glyphs/Open Sans Semibold/20992-21247.pbf new file mode 100755 index 0000000..3a49296 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/20992-21247.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 20992-21247 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/21248-21503.pbf b/map_files/glyphs/Open Sans Semibold/21248-21503.pbf new file mode 100755 index 0000000..80afc2a --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/21248-21503.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 21248-21503 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/21504-21759.pbf b/map_files/glyphs/Open Sans Semibold/21504-21759.pbf new file mode 100755 index 0000000..e384a08 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/21504-21759.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 21504-21759 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/21760-22015.pbf b/map_files/glyphs/Open Sans Semibold/21760-22015.pbf new file mode 100755 index 0000000..91993e5 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/21760-22015.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 21760-22015 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/22016-22271.pbf b/map_files/glyphs/Open Sans Semibold/22016-22271.pbf new file mode 100755 index 0000000..cc3df62 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/22016-22271.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 22016-22271 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/22272-22527.pbf b/map_files/glyphs/Open Sans Semibold/22272-22527.pbf new file mode 100755 index 0000000..e591c07 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/22272-22527.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 22272-22527 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/22528-22783.pbf b/map_files/glyphs/Open Sans Semibold/22528-22783.pbf new file mode 100755 index 0000000..3734372 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/22528-22783.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 22528-22783 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/22784-23039.pbf b/map_files/glyphs/Open Sans Semibold/22784-23039.pbf new file mode 100755 index 0000000..599dd32 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/22784-23039.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 22784-23039 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/2304-2559.pbf b/map_files/glyphs/Open Sans Semibold/2304-2559.pbf new file mode 100755 index 0000000..21fce1b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/2304-2559.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 2304-2559 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/23040-23295.pbf b/map_files/glyphs/Open Sans Semibold/23040-23295.pbf new file mode 100755 index 0000000..cf5710e --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/23040-23295.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 23040-23295 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/23296-23551.pbf b/map_files/glyphs/Open Sans Semibold/23296-23551.pbf new file mode 100755 index 0000000..fc21f07 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/23296-23551.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 23296-23551 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/23552-23807.pbf b/map_files/glyphs/Open Sans Semibold/23552-23807.pbf new file mode 100755 index 0000000..2c2b9b5 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/23552-23807.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 23552-23807 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/23808-24063.pbf b/map_files/glyphs/Open Sans Semibold/23808-24063.pbf new file mode 100755 index 0000000..6c03e54 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/23808-24063.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 23808-24063 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/24064-24319.pbf b/map_files/glyphs/Open Sans Semibold/24064-24319.pbf new file mode 100755 index 0000000..b79ee30 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/24064-24319.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 24064-24319 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/24320-24575.pbf b/map_files/glyphs/Open Sans Semibold/24320-24575.pbf new file mode 100755 index 0000000..d17bcc9 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/24320-24575.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 24320-24575 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/24576-24831.pbf b/map_files/glyphs/Open Sans Semibold/24576-24831.pbf new file mode 100755 index 0000000..0ba10b4 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/24576-24831.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 24576-24831 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/24832-25087.pbf b/map_files/glyphs/Open Sans Semibold/24832-25087.pbf new file mode 100755 index 0000000..0569d2d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/24832-25087.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 24832-25087 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/25088-25343.pbf b/map_files/glyphs/Open Sans Semibold/25088-25343.pbf new file mode 100755 index 0000000..570e32c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/25088-25343.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 25088-25343 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/25344-25599.pbf b/map_files/glyphs/Open Sans Semibold/25344-25599.pbf new file mode 100755 index 0000000..330c39b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/25344-25599.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 25344-25599 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/256-511.pbf b/map_files/glyphs/Open Sans Semibold/256-511.pbf new file mode 100755 index 0000000..1009813 Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/256-511.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/2560-2815.pbf b/map_files/glyphs/Open Sans Semibold/2560-2815.pbf new file mode 100755 index 0000000..fc34003 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/2560-2815.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 2560-2815 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/25600-25855.pbf b/map_files/glyphs/Open Sans Semibold/25600-25855.pbf new file mode 100755 index 0000000..a475a92 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/25600-25855.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 25600-25855 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/25856-26111.pbf b/map_files/glyphs/Open Sans Semibold/25856-26111.pbf new file mode 100755 index 0000000..6992c20 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/25856-26111.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 25856-26111 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/26112-26367.pbf b/map_files/glyphs/Open Sans Semibold/26112-26367.pbf new file mode 100755 index 0000000..87f3ae8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/26112-26367.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 26112-26367 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/26368-26623.pbf b/map_files/glyphs/Open Sans Semibold/26368-26623.pbf new file mode 100755 index 0000000..1494fb8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/26368-26623.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 26368-26623 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/26624-26879.pbf b/map_files/glyphs/Open Sans Semibold/26624-26879.pbf new file mode 100755 index 0000000..07f41b3 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/26624-26879.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 26624-26879 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/26880-27135.pbf b/map_files/glyphs/Open Sans Semibold/26880-27135.pbf new file mode 100755 index 0000000..1cfadaf --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/26880-27135.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 26880-27135 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/27136-27391.pbf b/map_files/glyphs/Open Sans Semibold/27136-27391.pbf new file mode 100755 index 0000000..7c67edb --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/27136-27391.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 27136-27391 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/27392-27647.pbf b/map_files/glyphs/Open Sans Semibold/27392-27647.pbf new file mode 100755 index 0000000..f5cf3b4 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/27392-27647.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 27392-27647 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/27648-27903.pbf b/map_files/glyphs/Open Sans Semibold/27648-27903.pbf new file mode 100755 index 0000000..6fabb15 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/27648-27903.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 27648-27903 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/27904-28159.pbf b/map_files/glyphs/Open Sans Semibold/27904-28159.pbf new file mode 100755 index 0000000..1a74092 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/27904-28159.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 27904-28159 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/2816-3071.pbf b/map_files/glyphs/Open Sans Semibold/2816-3071.pbf new file mode 100755 index 0000000..c4051d2 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/2816-3071.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 2816-3071 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/28160-28415.pbf b/map_files/glyphs/Open Sans Semibold/28160-28415.pbf new file mode 100755 index 0000000..3ec368f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/28160-28415.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 28160-28415 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/28416-28671.pbf b/map_files/glyphs/Open Sans Semibold/28416-28671.pbf new file mode 100755 index 0000000..d440f12 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/28416-28671.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 28416-28671 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/28672-28927.pbf b/map_files/glyphs/Open Sans Semibold/28672-28927.pbf new file mode 100755 index 0000000..62a7166 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/28672-28927.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 28672-28927 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/28928-29183.pbf b/map_files/glyphs/Open Sans Semibold/28928-29183.pbf new file mode 100755 index 0000000..8d28b52 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/28928-29183.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 28928-29183 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/29184-29439.pbf b/map_files/glyphs/Open Sans Semibold/29184-29439.pbf new file mode 100755 index 0000000..79698a8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/29184-29439.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 29184-29439 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/29440-29695.pbf b/map_files/glyphs/Open Sans Semibold/29440-29695.pbf new file mode 100755 index 0000000..c98c22b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/29440-29695.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 29440-29695 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/29696-29951.pbf b/map_files/glyphs/Open Sans Semibold/29696-29951.pbf new file mode 100755 index 0000000..ed21f3a --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/29696-29951.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 29696-29951 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/29952-30207.pbf b/map_files/glyphs/Open Sans Semibold/29952-30207.pbf new file mode 100755 index 0000000..2739739 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/29952-30207.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 29952-30207 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/30208-30463.pbf b/map_files/glyphs/Open Sans Semibold/30208-30463.pbf new file mode 100755 index 0000000..f32e356 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/30208-30463.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 30208-30463 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/30464-30719.pbf b/map_files/glyphs/Open Sans Semibold/30464-30719.pbf new file mode 100755 index 0000000..25eab9a --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/30464-30719.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 30464-30719 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/3072-3327.pbf b/map_files/glyphs/Open Sans Semibold/3072-3327.pbf new file mode 100755 index 0000000..1f799ef --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/3072-3327.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 3072-3327 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/30720-30975.pbf b/map_files/glyphs/Open Sans Semibold/30720-30975.pbf new file mode 100755 index 0000000..c5619b6 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/30720-30975.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 30720-30975 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/30976-31231.pbf b/map_files/glyphs/Open Sans Semibold/30976-31231.pbf new file mode 100755 index 0000000..b696eab --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/30976-31231.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 30976-31231 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/31232-31487.pbf b/map_files/glyphs/Open Sans Semibold/31232-31487.pbf new file mode 100755 index 0000000..07b1628 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/31232-31487.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 31232-31487 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/31488-31743.pbf b/map_files/glyphs/Open Sans Semibold/31488-31743.pbf new file mode 100755 index 0000000..7961d5d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/31488-31743.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 31488-31743 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/31744-31999.pbf b/map_files/glyphs/Open Sans Semibold/31744-31999.pbf new file mode 100755 index 0000000..d9d5f8c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/31744-31999.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 31744-31999 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/32000-32255.pbf b/map_files/glyphs/Open Sans Semibold/32000-32255.pbf new file mode 100755 index 0000000..91dca00 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/32000-32255.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 32000-32255 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/32256-32511.pbf b/map_files/glyphs/Open Sans Semibold/32256-32511.pbf new file mode 100755 index 0000000..c78a793 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/32256-32511.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 32256-32511 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/32512-32767.pbf b/map_files/glyphs/Open Sans Semibold/32512-32767.pbf new file mode 100755 index 0000000..9776d7b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/32512-32767.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 32512-32767 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/32768-33023.pbf b/map_files/glyphs/Open Sans Semibold/32768-33023.pbf new file mode 100755 index 0000000..4ed848e --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/32768-33023.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 32768-33023 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/33024-33279.pbf b/map_files/glyphs/Open Sans Semibold/33024-33279.pbf new file mode 100755 index 0000000..9649a7d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/33024-33279.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 33024-33279 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/3328-3583.pbf b/map_files/glyphs/Open Sans Semibold/3328-3583.pbf new file mode 100755 index 0000000..d36fd69 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/3328-3583.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 3328-3583 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/33280-33535.pbf b/map_files/glyphs/Open Sans Semibold/33280-33535.pbf new file mode 100755 index 0000000..21b03bf --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/33280-33535.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 33280-33535 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/33536-33791.pbf b/map_files/glyphs/Open Sans Semibold/33536-33791.pbf new file mode 100755 index 0000000..031e900 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/33536-33791.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 33536-33791 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/33792-34047.pbf b/map_files/glyphs/Open Sans Semibold/33792-34047.pbf new file mode 100755 index 0000000..9e032c7 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/33792-34047.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 33792-34047 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/34048-34303.pbf b/map_files/glyphs/Open Sans Semibold/34048-34303.pbf new file mode 100755 index 0000000..a5c75c8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/34048-34303.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 34048-34303 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/34304-34559.pbf b/map_files/glyphs/Open Sans Semibold/34304-34559.pbf new file mode 100755 index 0000000..8b0267c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/34304-34559.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 34304-34559 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/34560-34815.pbf b/map_files/glyphs/Open Sans Semibold/34560-34815.pbf new file mode 100755 index 0000000..ee5c578 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/34560-34815.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 34560-34815 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/34816-35071.pbf b/map_files/glyphs/Open Sans Semibold/34816-35071.pbf new file mode 100755 index 0000000..b84408d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/34816-35071.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 34816-35071 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/35072-35327.pbf b/map_files/glyphs/Open Sans Semibold/35072-35327.pbf new file mode 100755 index 0000000..22e8a7d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/35072-35327.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 35072-35327 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/35328-35583.pbf b/map_files/glyphs/Open Sans Semibold/35328-35583.pbf new file mode 100755 index 0000000..5d9118d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/35328-35583.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 35328-35583 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/35584-35839.pbf b/map_files/glyphs/Open Sans Semibold/35584-35839.pbf new file mode 100755 index 0000000..5762939 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/35584-35839.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 35584-35839 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/3584-3839.pbf b/map_files/glyphs/Open Sans Semibold/3584-3839.pbf new file mode 100755 index 0000000..ffd9613 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/3584-3839.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 3584-3839 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/35840-36095.pbf b/map_files/glyphs/Open Sans Semibold/35840-36095.pbf new file mode 100755 index 0000000..8ab6cce --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/35840-36095.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 35840-36095 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/36096-36351.pbf b/map_files/glyphs/Open Sans Semibold/36096-36351.pbf new file mode 100755 index 0000000..55782c0 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/36096-36351.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 36096-36351 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/36352-36607.pbf b/map_files/glyphs/Open Sans Semibold/36352-36607.pbf new file mode 100755 index 0000000..41d5d67 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/36352-36607.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 36352-36607 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/36608-36863.pbf b/map_files/glyphs/Open Sans Semibold/36608-36863.pbf new file mode 100755 index 0000000..73ecb06 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/36608-36863.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 36608-36863 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/36864-37119.pbf b/map_files/glyphs/Open Sans Semibold/36864-37119.pbf new file mode 100755 index 0000000..76d0896 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/36864-37119.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 36864-37119 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/37120-37375.pbf b/map_files/glyphs/Open Sans Semibold/37120-37375.pbf new file mode 100755 index 0000000..5f3f390 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/37120-37375.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 37120-37375 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/37376-37631.pbf b/map_files/glyphs/Open Sans Semibold/37376-37631.pbf new file mode 100755 index 0000000..df9ed04 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/37376-37631.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 37376-37631 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/37632-37887.pbf b/map_files/glyphs/Open Sans Semibold/37632-37887.pbf new file mode 100755 index 0000000..b8fd5c5 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/37632-37887.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 37632-37887 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/37888-38143.pbf b/map_files/glyphs/Open Sans Semibold/37888-38143.pbf new file mode 100755 index 0000000..d614c4d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/37888-38143.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 37888-38143 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/38144-38399.pbf b/map_files/glyphs/Open Sans Semibold/38144-38399.pbf new file mode 100755 index 0000000..8809069 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/38144-38399.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 38144-38399 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/3840-4095.pbf b/map_files/glyphs/Open Sans Semibold/3840-4095.pbf new file mode 100755 index 0000000..2c26070 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/3840-4095.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 3840-4095 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/38400-38655.pbf b/map_files/glyphs/Open Sans Semibold/38400-38655.pbf new file mode 100755 index 0000000..8513f9d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/38400-38655.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 38400-38655 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/38656-38911.pbf b/map_files/glyphs/Open Sans Semibold/38656-38911.pbf new file mode 100755 index 0000000..ef3bffd --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/38656-38911.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 38656-38911 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/38912-39167.pbf b/map_files/glyphs/Open Sans Semibold/38912-39167.pbf new file mode 100755 index 0000000..b0f1b93 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/38912-39167.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 38912-39167 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/39168-39423.pbf b/map_files/glyphs/Open Sans Semibold/39168-39423.pbf new file mode 100755 index 0000000..64c3c69 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/39168-39423.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 39168-39423 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/39424-39679.pbf b/map_files/glyphs/Open Sans Semibold/39424-39679.pbf new file mode 100755 index 0000000..304c688 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/39424-39679.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 39424-39679 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/39680-39935.pbf b/map_files/glyphs/Open Sans Semibold/39680-39935.pbf new file mode 100755 index 0000000..798fb0f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/39680-39935.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 39680-39935 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/39936-40191.pbf b/map_files/glyphs/Open Sans Semibold/39936-40191.pbf new file mode 100755 index 0000000..55bd18a --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/39936-40191.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 39936-40191 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/40192-40447.pbf b/map_files/glyphs/Open Sans Semibold/40192-40447.pbf new file mode 100755 index 0000000..82ed892 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/40192-40447.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 40192-40447 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/40448-40703.pbf b/map_files/glyphs/Open Sans Semibold/40448-40703.pbf new file mode 100755 index 0000000..0da95fa --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/40448-40703.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 40448-40703 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/40704-40959.pbf b/map_files/glyphs/Open Sans Semibold/40704-40959.pbf new file mode 100755 index 0000000..ddebfab --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/40704-40959.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 40704-40959 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/4096-4351.pbf b/map_files/glyphs/Open Sans Semibold/4096-4351.pbf new file mode 100755 index 0000000..10c2e3c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/4096-4351.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 4096-4351 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/40960-41215.pbf b/map_files/glyphs/Open Sans Semibold/40960-41215.pbf new file mode 100755 index 0000000..dae8181 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/40960-41215.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 40960-41215 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/41216-41471.pbf b/map_files/glyphs/Open Sans Semibold/41216-41471.pbf new file mode 100755 index 0000000..1a9fd43 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/41216-41471.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 41216-41471 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/41472-41727.pbf b/map_files/glyphs/Open Sans Semibold/41472-41727.pbf new file mode 100755 index 0000000..2a7a254 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/41472-41727.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 41472-41727 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/41728-41983.pbf b/map_files/glyphs/Open Sans Semibold/41728-41983.pbf new file mode 100755 index 0000000..191dbd6 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/41728-41983.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 41728-41983 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/41984-42239.pbf b/map_files/glyphs/Open Sans Semibold/41984-42239.pbf new file mode 100755 index 0000000..fec9373 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/41984-42239.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 41984-42239 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/42240-42495.pbf b/map_files/glyphs/Open Sans Semibold/42240-42495.pbf new file mode 100755 index 0000000..b9e1bb5 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/42240-42495.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 42240-42495 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/42496-42751.pbf b/map_files/glyphs/Open Sans Semibold/42496-42751.pbf new file mode 100755 index 0000000..a434cc7 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/42496-42751.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 42496-42751 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/42752-43007.pbf b/map_files/glyphs/Open Sans Semibold/42752-43007.pbf new file mode 100755 index 0000000..55e1ad4 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/42752-43007.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 42752-43007 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/43008-43263.pbf b/map_files/glyphs/Open Sans Semibold/43008-43263.pbf new file mode 100755 index 0000000..dfbdf77 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/43008-43263.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 43008-43263 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/43264-43519.pbf b/map_files/glyphs/Open Sans Semibold/43264-43519.pbf new file mode 100755 index 0000000..eb0002f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/43264-43519.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 43264-43519 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/4352-4607.pbf b/map_files/glyphs/Open Sans Semibold/4352-4607.pbf new file mode 100755 index 0000000..dc19dd7 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/4352-4607.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 4352-4607 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/43520-43775.pbf b/map_files/glyphs/Open Sans Semibold/43520-43775.pbf new file mode 100755 index 0000000..3b6aaf1 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/43520-43775.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 43520-43775 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/43776-44031.pbf b/map_files/glyphs/Open Sans Semibold/43776-44031.pbf new file mode 100755 index 0000000..325cf2e --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/43776-44031.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 43776-44031 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/44032-44287.pbf b/map_files/glyphs/Open Sans Semibold/44032-44287.pbf new file mode 100755 index 0000000..48ae79b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/44032-44287.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 44032-44287 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/44288-44543.pbf b/map_files/glyphs/Open Sans Semibold/44288-44543.pbf new file mode 100755 index 0000000..7c6b01e --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/44288-44543.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 44288-44543 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/44544-44799.pbf b/map_files/glyphs/Open Sans Semibold/44544-44799.pbf new file mode 100755 index 0000000..91b1a5d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/44544-44799.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 44544-44799 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/44800-45055.pbf b/map_files/glyphs/Open Sans Semibold/44800-45055.pbf new file mode 100755 index 0000000..a382fba --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/44800-45055.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 44800-45055 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/45056-45311.pbf b/map_files/glyphs/Open Sans Semibold/45056-45311.pbf new file mode 100755 index 0000000..276a538 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/45056-45311.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 45056-45311 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/45312-45567.pbf b/map_files/glyphs/Open Sans Semibold/45312-45567.pbf new file mode 100755 index 0000000..0392cef --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/45312-45567.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 45312-45567 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/45568-45823.pbf b/map_files/glyphs/Open Sans Semibold/45568-45823.pbf new file mode 100755 index 0000000..e6f85ef --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/45568-45823.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 45568-45823 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/45824-46079.pbf b/map_files/glyphs/Open Sans Semibold/45824-46079.pbf new file mode 100755 index 0000000..12efa4a --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/45824-46079.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 45824-46079 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/4608-4863.pbf b/map_files/glyphs/Open Sans Semibold/4608-4863.pbf new file mode 100755 index 0000000..5e218e4 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/4608-4863.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 4608-4863 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/46080-46335.pbf b/map_files/glyphs/Open Sans Semibold/46080-46335.pbf new file mode 100755 index 0000000..609eb74 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/46080-46335.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 46080-46335 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/46336-46591.pbf b/map_files/glyphs/Open Sans Semibold/46336-46591.pbf new file mode 100755 index 0000000..a2b311a --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/46336-46591.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 46336-46591 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/46592-46847.pbf b/map_files/glyphs/Open Sans Semibold/46592-46847.pbf new file mode 100755 index 0000000..5f43001 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/46592-46847.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 46592-46847 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/46848-47103.pbf b/map_files/glyphs/Open Sans Semibold/46848-47103.pbf new file mode 100755 index 0000000..445bb5b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/46848-47103.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 46848-47103 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/47104-47359.pbf b/map_files/glyphs/Open Sans Semibold/47104-47359.pbf new file mode 100755 index 0000000..cb39e84 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/47104-47359.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 47104-47359 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/47360-47615.pbf b/map_files/glyphs/Open Sans Semibold/47360-47615.pbf new file mode 100755 index 0000000..2555c32 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/47360-47615.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 47360-47615 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/47616-47871.pbf b/map_files/glyphs/Open Sans Semibold/47616-47871.pbf new file mode 100755 index 0000000..5ec776a --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/47616-47871.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 47616-47871 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/47872-48127.pbf b/map_files/glyphs/Open Sans Semibold/47872-48127.pbf new file mode 100755 index 0000000..c266774 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/47872-48127.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 47872-48127 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/48128-48383.pbf b/map_files/glyphs/Open Sans Semibold/48128-48383.pbf new file mode 100755 index 0000000..f225d9f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/48128-48383.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 48128-48383 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/48384-48639.pbf b/map_files/glyphs/Open Sans Semibold/48384-48639.pbf new file mode 100755 index 0000000..03fea21 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/48384-48639.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 48384-48639 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/4864-5119.pbf b/map_files/glyphs/Open Sans Semibold/4864-5119.pbf new file mode 100755 index 0000000..0eebf1b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/4864-5119.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 4864-5119 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/48640-48895.pbf b/map_files/glyphs/Open Sans Semibold/48640-48895.pbf new file mode 100755 index 0000000..dcc003a --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/48640-48895.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 48640-48895 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/48896-49151.pbf b/map_files/glyphs/Open Sans Semibold/48896-49151.pbf new file mode 100755 index 0000000..21c0706 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/48896-49151.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 48896-49151 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/49152-49407.pbf b/map_files/glyphs/Open Sans Semibold/49152-49407.pbf new file mode 100755 index 0000000..27bdf74 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/49152-49407.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 49152-49407 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/49408-49663.pbf b/map_files/glyphs/Open Sans Semibold/49408-49663.pbf new file mode 100755 index 0000000..c4029aa --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/49408-49663.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 49408-49663 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/49664-49919.pbf b/map_files/glyphs/Open Sans Semibold/49664-49919.pbf new file mode 100755 index 0000000..dc41f57 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/49664-49919.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 49664-49919 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/49920-50175.pbf b/map_files/glyphs/Open Sans Semibold/49920-50175.pbf new file mode 100755 index 0000000..9eb6c47 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/49920-50175.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 49920-50175 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/50176-50431.pbf b/map_files/glyphs/Open Sans Semibold/50176-50431.pbf new file mode 100755 index 0000000..e38520b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/50176-50431.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 50176-50431 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/50432-50687.pbf b/map_files/glyphs/Open Sans Semibold/50432-50687.pbf new file mode 100755 index 0000000..499c53d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/50432-50687.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 50432-50687 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/50688-50943.pbf b/map_files/glyphs/Open Sans Semibold/50688-50943.pbf new file mode 100755 index 0000000..e516273 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/50688-50943.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 50688-50943 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/50944-51199.pbf b/map_files/glyphs/Open Sans Semibold/50944-51199.pbf new file mode 100755 index 0000000..90def9d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/50944-51199.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 50944-51199 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/512-767.pbf b/map_files/glyphs/Open Sans Semibold/512-767.pbf new file mode 100755 index 0000000..d5fccdc Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/512-767.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/5120-5375.pbf b/map_files/glyphs/Open Sans Semibold/5120-5375.pbf new file mode 100755 index 0000000..4bc76ba --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/5120-5375.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 5120-5375 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/51200-51455.pbf b/map_files/glyphs/Open Sans Semibold/51200-51455.pbf new file mode 100755 index 0000000..1cc9232 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/51200-51455.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 51200-51455 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/51456-51711.pbf b/map_files/glyphs/Open Sans Semibold/51456-51711.pbf new file mode 100755 index 0000000..9ef0ab0 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/51456-51711.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 51456-51711 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/51712-51967.pbf b/map_files/glyphs/Open Sans Semibold/51712-51967.pbf new file mode 100755 index 0000000..0e6d3d0 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/51712-51967.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 51712-51967 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/51968-52223.pbf b/map_files/glyphs/Open Sans Semibold/51968-52223.pbf new file mode 100755 index 0000000..b780517 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/51968-52223.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 51968-52223 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/52224-52479.pbf b/map_files/glyphs/Open Sans Semibold/52224-52479.pbf new file mode 100755 index 0000000..519d466 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/52224-52479.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 52224-52479 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/52480-52735.pbf b/map_files/glyphs/Open Sans Semibold/52480-52735.pbf new file mode 100755 index 0000000..bbd7947 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/52480-52735.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 52480-52735 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/52736-52991.pbf b/map_files/glyphs/Open Sans Semibold/52736-52991.pbf new file mode 100755 index 0000000..4e9a35a --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/52736-52991.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 52736-52991 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/52992-53247.pbf b/map_files/glyphs/Open Sans Semibold/52992-53247.pbf new file mode 100755 index 0000000..d9a0f66 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/52992-53247.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 52992-53247 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/53248-53503.pbf b/map_files/glyphs/Open Sans Semibold/53248-53503.pbf new file mode 100755 index 0000000..bb31494 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/53248-53503.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 53248-53503 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/53504-53759.pbf b/map_files/glyphs/Open Sans Semibold/53504-53759.pbf new file mode 100755 index 0000000..2edc016 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/53504-53759.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 53504-53759 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/5376-5631.pbf b/map_files/glyphs/Open Sans Semibold/5376-5631.pbf new file mode 100755 index 0000000..6bcf67e --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/5376-5631.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 5376-5631 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/53760-54015.pbf b/map_files/glyphs/Open Sans Semibold/53760-54015.pbf new file mode 100755 index 0000000..2f6d53f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/53760-54015.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 53760-54015 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/54016-54271.pbf b/map_files/glyphs/Open Sans Semibold/54016-54271.pbf new file mode 100755 index 0000000..fde36b1 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/54016-54271.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 54016-54271 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/54272-54527.pbf b/map_files/glyphs/Open Sans Semibold/54272-54527.pbf new file mode 100755 index 0000000..aea83c8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/54272-54527.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 54272-54527 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/54528-54783.pbf b/map_files/glyphs/Open Sans Semibold/54528-54783.pbf new file mode 100755 index 0000000..fab9f03 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/54528-54783.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 54528-54783 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/54784-55039.pbf b/map_files/glyphs/Open Sans Semibold/54784-55039.pbf new file mode 100755 index 0000000..1a38036 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/54784-55039.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 54784-55039 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/55040-55295.pbf b/map_files/glyphs/Open Sans Semibold/55040-55295.pbf new file mode 100755 index 0000000..dc56797 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/55040-55295.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 55040-55295 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/55296-55551.pbf b/map_files/glyphs/Open Sans Semibold/55296-55551.pbf new file mode 100755 index 0000000..c811e96 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/55296-55551.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 55296-55551 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/55552-55807.pbf b/map_files/glyphs/Open Sans Semibold/55552-55807.pbf new file mode 100755 index 0000000..99193af --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/55552-55807.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 55552-55807 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/55808-56063.pbf b/map_files/glyphs/Open Sans Semibold/55808-56063.pbf new file mode 100755 index 0000000..0fe392e --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/55808-56063.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 55808-56063 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/56064-56319.pbf b/map_files/glyphs/Open Sans Semibold/56064-56319.pbf new file mode 100755 index 0000000..62a2189 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/56064-56319.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 56064-56319 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/5632-5887.pbf b/map_files/glyphs/Open Sans Semibold/5632-5887.pbf new file mode 100755 index 0000000..3e63548 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/5632-5887.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 5632-5887 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/56320-56575.pbf b/map_files/glyphs/Open Sans Semibold/56320-56575.pbf new file mode 100755 index 0000000..48aa2a4 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/56320-56575.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 56320-56575 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/56576-56831.pbf b/map_files/glyphs/Open Sans Semibold/56576-56831.pbf new file mode 100755 index 0000000..67bcaae --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/56576-56831.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 56576-56831 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/56832-57087.pbf b/map_files/glyphs/Open Sans Semibold/56832-57087.pbf new file mode 100755 index 0000000..a42b6f3 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/56832-57087.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 56832-57087 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/57088-57343.pbf b/map_files/glyphs/Open Sans Semibold/57088-57343.pbf new file mode 100755 index 0000000..61abfbd --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/57088-57343.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 57088-57343 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/57344-57599.pbf b/map_files/glyphs/Open Sans Semibold/57344-57599.pbf new file mode 100755 index 0000000..2cb8d68 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/57344-57599.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 57344-57599 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/57600-57855.pbf b/map_files/glyphs/Open Sans Semibold/57600-57855.pbf new file mode 100755 index 0000000..e80d987 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/57600-57855.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 57600-57855 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/57856-58111.pbf b/map_files/glyphs/Open Sans Semibold/57856-58111.pbf new file mode 100755 index 0000000..0d93136 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/57856-58111.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 57856-58111 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/58112-58367.pbf b/map_files/glyphs/Open Sans Semibold/58112-58367.pbf new file mode 100755 index 0000000..2e308d8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/58112-58367.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 58112-58367 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/58368-58623.pbf b/map_files/glyphs/Open Sans Semibold/58368-58623.pbf new file mode 100755 index 0000000..26296bd --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/58368-58623.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 58368-58623 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/58624-58879.pbf b/map_files/glyphs/Open Sans Semibold/58624-58879.pbf new file mode 100755 index 0000000..6d6a50c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/58624-58879.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 58624-58879 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/5888-6143.pbf b/map_files/glyphs/Open Sans Semibold/5888-6143.pbf new file mode 100755 index 0000000..38a2d80 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/5888-6143.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 5888-6143 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/58880-59135.pbf b/map_files/glyphs/Open Sans Semibold/58880-59135.pbf new file mode 100755 index 0000000..4124175 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/58880-59135.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 58880-59135 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/59136-59391.pbf b/map_files/glyphs/Open Sans Semibold/59136-59391.pbf new file mode 100755 index 0000000..59c52f5 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/59136-59391.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 59136-59391 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/59392-59647.pbf b/map_files/glyphs/Open Sans Semibold/59392-59647.pbf new file mode 100755 index 0000000..d16bb4f --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/59392-59647.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 59392-59647 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/59648-59903.pbf b/map_files/glyphs/Open Sans Semibold/59648-59903.pbf new file mode 100755 index 0000000..c8bd473 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/59648-59903.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 59648-59903 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/59904-60159.pbf b/map_files/glyphs/Open Sans Semibold/59904-60159.pbf new file mode 100755 index 0000000..942d7b3 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/59904-60159.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 59904-60159 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/60160-60415.pbf b/map_files/glyphs/Open Sans Semibold/60160-60415.pbf new file mode 100755 index 0000000..e930bae --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/60160-60415.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 60160-60415 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/60416-60671.pbf b/map_files/glyphs/Open Sans Semibold/60416-60671.pbf new file mode 100755 index 0000000..3729ec8 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/60416-60671.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 60416-60671 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/60672-60927.pbf b/map_files/glyphs/Open Sans Semibold/60672-60927.pbf new file mode 100755 index 0000000..2783a85 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/60672-60927.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 60672-60927 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/60928-61183.pbf b/map_files/glyphs/Open Sans Semibold/60928-61183.pbf new file mode 100755 index 0000000..e7a4530 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/60928-61183.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 60928-61183 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/61184-61439.pbf b/map_files/glyphs/Open Sans Semibold/61184-61439.pbf new file mode 100755 index 0000000..4962bfa --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/61184-61439.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 61184-61439 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/6144-6399.pbf b/map_files/glyphs/Open Sans Semibold/6144-6399.pbf new file mode 100755 index 0000000..3291e83 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/6144-6399.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 6144-6399 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/61440-61695.pbf b/map_files/glyphs/Open Sans Semibold/61440-61695.pbf new file mode 100755 index 0000000..7610b0b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/61440-61695.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 61440-61695 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/61696-61951.pbf b/map_files/glyphs/Open Sans Semibold/61696-61951.pbf new file mode 100755 index 0000000..3f11038 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/61696-61951.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 61696-61951 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/61952-62207.pbf b/map_files/glyphs/Open Sans Semibold/61952-62207.pbf new file mode 100755 index 0000000..49e6b3c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/61952-62207.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 61952-62207 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/62208-62463.pbf b/map_files/glyphs/Open Sans Semibold/62208-62463.pbf new file mode 100755 index 0000000..4f0ba5e --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/62208-62463.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 62208-62463 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/62464-62719.pbf b/map_files/glyphs/Open Sans Semibold/62464-62719.pbf new file mode 100755 index 0000000..2c6992b --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/62464-62719.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 62464-62719 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/62720-62975.pbf b/map_files/glyphs/Open Sans Semibold/62720-62975.pbf new file mode 100755 index 0000000..e0f8ee1 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/62720-62975.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 62720-62975 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/62976-63231.pbf b/map_files/glyphs/Open Sans Semibold/62976-63231.pbf new file mode 100755 index 0000000..f1240d4 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/62976-63231.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 62976-63231 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/63232-63487.pbf b/map_files/glyphs/Open Sans Semibold/63232-63487.pbf new file mode 100755 index 0000000..77a95ac --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/63232-63487.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 63232-63487 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/63488-63743.pbf b/map_files/glyphs/Open Sans Semibold/63488-63743.pbf new file mode 100755 index 0000000..92ce148 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/63488-63743.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 63488-63743 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/63744-63999.pbf b/map_files/glyphs/Open Sans Semibold/63744-63999.pbf new file mode 100755 index 0000000..304bb83 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/63744-63999.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 63744-63999 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/6400-6655.pbf b/map_files/glyphs/Open Sans Semibold/6400-6655.pbf new file mode 100755 index 0000000..b6fa323 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/6400-6655.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 6400-6655 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/64000-64255.pbf b/map_files/glyphs/Open Sans Semibold/64000-64255.pbf new file mode 100755 index 0000000..6670d86 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/64000-64255.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 64000-64255 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/64256-64511.pbf b/map_files/glyphs/Open Sans Semibold/64256-64511.pbf new file mode 100755 index 0000000..5a439bb Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/64256-64511.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/64512-64767.pbf b/map_files/glyphs/Open Sans Semibold/64512-64767.pbf new file mode 100755 index 0000000..c49d013 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/64512-64767.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 64512-64767 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/64768-65023.pbf b/map_files/glyphs/Open Sans Semibold/64768-65023.pbf new file mode 100755 index 0000000..ceda0ce --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/64768-65023.pbf @@ -0,0 +1,3 @@ + +! +Open Sans Semibold 64768-65023 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/65024-65279.pbf b/map_files/glyphs/Open Sans Semibold/65024-65279.pbf new file mode 100755 index 0000000..f11f6b5 Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/65024-65279.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/65280-65533.pbf b/map_files/glyphs/Open Sans Semibold/65280-65533.pbf new file mode 100755 index 0000000..dab1f7e Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/65280-65533.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/6656-6911.pbf b/map_files/glyphs/Open Sans Semibold/6656-6911.pbf new file mode 100755 index 0000000..78d42ae --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/6656-6911.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 6656-6911 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/6912-7167.pbf b/map_files/glyphs/Open Sans Semibold/6912-7167.pbf new file mode 100755 index 0000000..26447ab --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/6912-7167.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 6912-7167 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/7168-7423.pbf b/map_files/glyphs/Open Sans Semibold/7168-7423.pbf new file mode 100755 index 0000000..0fc7dbf --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/7168-7423.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 7168-7423 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/7424-7679.pbf b/map_files/glyphs/Open Sans Semibold/7424-7679.pbf new file mode 100755 index 0000000..508d96d --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/7424-7679.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 7424-7679 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/768-1023.pbf b/map_files/glyphs/Open Sans Semibold/768-1023.pbf new file mode 100755 index 0000000..6ee8494 Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/768-1023.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/7680-7935.pbf b/map_files/glyphs/Open Sans Semibold/7680-7935.pbf new file mode 100755 index 0000000..a1e0f16 Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/7680-7935.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/7936-8191.pbf b/map_files/glyphs/Open Sans Semibold/7936-8191.pbf new file mode 100755 index 0000000..28cf7ef Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/7936-8191.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/8192-8447.pbf b/map_files/glyphs/Open Sans Semibold/8192-8447.pbf new file mode 100755 index 0000000..75110b6 Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/8192-8447.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/8448-8703.pbf b/map_files/glyphs/Open Sans Semibold/8448-8703.pbf new file mode 100755 index 0000000..7bdd868 Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/8448-8703.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/8704-8959.pbf b/map_files/glyphs/Open Sans Semibold/8704-8959.pbf new file mode 100755 index 0000000..22694c8 Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/8704-8959.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/8960-9215.pbf b/map_files/glyphs/Open Sans Semibold/8960-9215.pbf new file mode 100755 index 0000000..3f59248 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/8960-9215.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 8960-9215 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/9216-9471.pbf b/map_files/glyphs/Open Sans Semibold/9216-9471.pbf new file mode 100755 index 0000000..603376c --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/9216-9471.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 9216-9471 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/9472-9727.pbf b/map_files/glyphs/Open Sans Semibold/9472-9727.pbf new file mode 100755 index 0000000..586045f Binary files /dev/null and b/map_files/glyphs/Open Sans Semibold/9472-9727.pbf differ diff --git a/map_files/glyphs/Open Sans Semibold/9728-9983.pbf b/map_files/glyphs/Open Sans Semibold/9728-9983.pbf new file mode 100755 index 0000000..7d19c42 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/9728-9983.pbf @@ -0,0 +1,3 @@ + + +Open Sans Semibold 9728-9983 \ No newline at end of file diff --git a/map_files/glyphs/Open Sans Semibold/9984-10239.pbf b/map_files/glyphs/Open Sans Semibold/9984-10239.pbf new file mode 100755 index 0000000..0979528 --- /dev/null +++ b/map_files/glyphs/Open Sans Semibold/9984-10239.pbf @@ -0,0 +1,4 @@ + + +Open Sans Semibold +9984-10239 \ No newline at end of file diff --git a/map_files/sprites/mono.json b/map_files/sprites/mono.json new file mode 100644 index 0000000..8b06f8d --- /dev/null +++ b/map_files/sprites/mono.json @@ -0,0 +1 @@ +{"motorway_6":{"width":50,"height":18,"x":0,"y":0,"pixelRatio":1},"motorway_5":{"width":45,"height":18,"x":0,"y":18,"pixelRatio":1},"motorway_4":{"width":39,"height":18,"x":50,"y":0,"pixelRatio":1},"motorway_3":{"width":32,"height":18,"x":50,"y":18,"pixelRatio":1},"motorway_2":{"width":25,"height":18,"x":0,"y":36,"pixelRatio":1},"art-gallery-15":{"width":21,"height":21,"x":0,"y":54,"pixelRatio":1},"attraction-15":{"width":21,"height":21,"x":21,"y":54,"pixelRatio":1},"bakery-15":{"width":21,"height":21,"x":42,"y":54,"pixelRatio":1},"bank-15":{"width":21,"height":21,"x":63,"y":54,"pixelRatio":1},"bar-15":{"width":21,"height":21,"x":89,"y":0,"pixelRatio":1},"beer-15":{"width":21,"height":21,"x":89,"y":21,"pixelRatio":1},"bicycle-15":{"width":21,"height":21,"x":89,"y":42,"pixelRatio":1},"bicycle-share-15":{"width":21,"height":21,"x":0,"y":75,"pixelRatio":1},"bus-15":{"width":21,"height":21,"x":21,"y":75,"pixelRatio":1},"cafe-15":{"width":21,"height":21,"x":42,"y":75,"pixelRatio":1},"campsite-15":{"width":21,"height":21,"x":63,"y":75,"pixelRatio":1},"car-15":{"width":21,"height":21,"x":84,"y":75,"pixelRatio":1},"castle-15":{"width":21,"height":21,"x":110,"y":0,"pixelRatio":1},"cemetery-15":{"width":21,"height":21,"x":110,"y":21,"pixelRatio":1},"cinema-15":{"width":21,"height":21,"x":110,"y":42,"pixelRatio":1},"circle-15":{"width":21,"height":21,"x":110,"y":63,"pixelRatio":1},"circle-stroked-15":{"width":21,"height":21,"x":0,"y":96,"pixelRatio":1},"clothing-store-15":{"width":21,"height":21,"x":21,"y":96,"pixelRatio":1},"college-15":{"width":21,"height":21,"x":42,"y":96,"pixelRatio":1},"dentist-15":{"width":21,"height":21,"x":63,"y":96,"pixelRatio":1},"doctor-15":{"width":21,"height":21,"x":84,"y":96,"pixelRatio":1},"dog-park-15":{"width":21,"height":21,"x":105,"y":96,"pixelRatio":1},"drinking-water-15":{"width":21,"height":21,"x":131,"y":0,"pixelRatio":1},"embassy-15":{"width":21,"height":21,"x":131,"y":21,"pixelRatio":1},"entrance-15":{"width":21,"height":21,"x":131,"y":42,"pixelRatio":1},"fast-food-15":{"width":21,"height":21,"x":131,"y":63,"pixelRatio":1},"ferry-15":{"width":21,"height":21,"x":131,"y":84,"pixelRatio":1},"fire-station-15":{"width":21,"height":21,"x":0,"y":117,"pixelRatio":1},"fuel-15":{"width":21,"height":21,"x":21,"y":117,"pixelRatio":1},"garden-15":{"width":21,"height":21,"x":42,"y":117,"pixelRatio":1},"golf-15":{"width":21,"height":21,"x":63,"y":117,"pixelRatio":1},"grocery-15":{"width":21,"height":21,"x":84,"y":117,"pixelRatio":1},"harbor-15":{"width":21,"height":21,"x":105,"y":117,"pixelRatio":1},"heliport-15":{"width":21,"height":21,"x":126,"y":117,"pixelRatio":1},"hospital-15":{"width":21,"height":21,"x":152,"y":0,"pixelRatio":1},"ice-cream-15":{"width":21,"height":21,"x":152,"y":21,"pixelRatio":1},"information-15":{"width":21,"height":21,"x":152,"y":42,"pixelRatio":1},"laundry-15":{"width":21,"height":21,"x":152,"y":63,"pixelRatio":1},"library-15":{"width":21,"height":21,"x":152,"y":84,"pixelRatio":1},"lodging-15":{"width":21,"height":21,"x":152,"y":105,"pixelRatio":1},"marker-15":{"width":21,"height":21,"x":0,"y":138,"pixelRatio":1},"monument-15":{"width":21,"height":21,"x":21,"y":138,"pixelRatio":1},"mountain-15":{"width":21,"height":21,"x":42,"y":138,"pixelRatio":1},"museum-15":{"width":21,"height":21,"x":63,"y":138,"pixelRatio":1},"music-15":{"width":21,"height":21,"x":84,"y":138,"pixelRatio":1},"park-15":{"width":21,"height":21,"x":105,"y":138,"pixelRatio":1},"pharmacy-15":{"width":21,"height":21,"x":126,"y":138,"pixelRatio":1},"picnic-site-15":{"width":21,"height":21,"x":147,"y":138,"pixelRatio":1},"place-of-worship-15":{"width":21,"height":21,"x":173,"y":0,"pixelRatio":1},"playground-15":{"width":21,"height":21,"x":173,"y":21,"pixelRatio":1},"police-15":{"width":21,"height":21,"x":173,"y":42,"pixelRatio":1},"post-15":{"width":21,"height":21,"x":173,"y":63,"pixelRatio":1},"prison-15":{"width":21,"height":21,"x":173,"y":84,"pixelRatio":1},"rail-15":{"width":21,"height":21,"x":173,"y":105,"pixelRatio":1},"rail-light-15":{"width":21,"height":21,"x":173,"y":126,"pixelRatio":1},"rail-metro-15":{"width":21,"height":21,"x":0,"y":159,"pixelRatio":1},"religious-christian-15":{"width":21,"height":21,"x":21,"y":159,"pixelRatio":1},"religious-jewish-15":{"width":21,"height":21,"x":42,"y":159,"pixelRatio":1},"religious-muslim-15":{"width":21,"height":21,"x":63,"y":159,"pixelRatio":1},"restaurant-15":{"width":21,"height":21,"x":84,"y":159,"pixelRatio":1},"rocket-15":{"width":21,"height":21,"x":105,"y":159,"pixelRatio":1},"school-15":{"width":21,"height":21,"x":126,"y":159,"pixelRatio":1},"shop-15":{"width":21,"height":21,"x":147,"y":159,"pixelRatio":1},"stadium-15":{"width":21,"height":21,"x":168,"y":159,"pixelRatio":1},"star-15":{"width":21,"height":21,"x":194,"y":0,"pixelRatio":1},"suitcase-15":{"width":21,"height":21,"x":194,"y":21,"pixelRatio":1},"swimming-15":{"width":21,"height":21,"x":194,"y":42,"pixelRatio":1},"theatre-15":{"width":21,"height":21,"x":194,"y":63,"pixelRatio":1},"toilet-15":{"width":21,"height":21,"x":194,"y":84,"pixelRatio":1},"town-hall-15":{"width":21,"height":21,"x":194,"y":105,"pixelRatio":1},"triangle-15":{"width":21,"height":21,"x":194,"y":126,"pixelRatio":1},"triangle-stroked-15":{"width":21,"height":21,"x":194,"y":147,"pixelRatio":1},"veterinary-15":{"width":21,"height":21,"x":0,"y":180,"pixelRatio":1},"volcano-15":{"width":21,"height":21,"x":21,"y":180,"pixelRatio":1},"zoo-15":{"width":21,"height":21,"x":42,"y":180,"pixelRatio":1},"airfield-15":{"width":21,"height":21,"x":63,"y":180,"pixelRatio":1},"alcohol-shop-15":{"width":21,"height":21,"x":84,"y":180,"pixelRatio":1},"amusement-park-15":{"width":21,"height":21,"x":105,"y":180,"pixelRatio":1},"airport-15":{"width":21,"height":21,"x":126,"y":180,"pixelRatio":1},"aquarium-15":{"width":21,"height":21,"x":147,"y":180,"pixelRatio":1},"motorway_1":{"width":18,"height":18,"x":25,"y":36,"pixelRatio":1},"ice-cream-11":{"width":17,"height":17,"x":43,"y":36,"pixelRatio":1},"airport-11":{"width":17,"height":17,"x":60,"y":36,"pixelRatio":1},"alcohol-shop-11":{"width":17,"height":17,"x":168,"y":180,"pixelRatio":1},"amusement-park-11":{"width":17,"height":17,"x":185,"y":180,"pixelRatio":1},"aquarium-11":{"width":17,"height":17,"x":215,"y":0,"pixelRatio":1},"art-gallery-11":{"width":17,"height":17,"x":215,"y":17,"pixelRatio":1},"attraction-11":{"width":17,"height":17,"x":215,"y":34,"pixelRatio":1},"bakery-11":{"width":17,"height":17,"x":215,"y":51,"pixelRatio":1},"bank-11":{"width":17,"height":17,"x":215,"y":68,"pixelRatio":1},"bar-11":{"width":17,"height":17,"x":215,"y":85,"pixelRatio":1},"beer-11":{"width":17,"height":17,"x":215,"y":102,"pixelRatio":1},"bicycle-11":{"width":17,"height":17,"x":215,"y":119,"pixelRatio":1},"bicycle-share-11":{"width":17,"height":17,"x":215,"y":136,"pixelRatio":1},"bus-11":{"width":17,"height":17,"x":215,"y":153,"pixelRatio":1},"cafe-11":{"width":17,"height":17,"x":215,"y":170,"pixelRatio":1},"campsite-11":{"width":17,"height":17,"x":0,"y":201,"pixelRatio":1},"car-11":{"width":17,"height":17,"x":17,"y":201,"pixelRatio":1},"castle-11":{"width":17,"height":17,"x":34,"y":201,"pixelRatio":1},"cemetery-11":{"width":17,"height":17,"x":51,"y":201,"pixelRatio":1},"cinema-11":{"width":17,"height":17,"x":68,"y":201,"pixelRatio":1},"circle-11":{"width":17,"height":17,"x":85,"y":201,"pixelRatio":1},"circle-stroked-11":{"width":17,"height":17,"x":102,"y":201,"pixelRatio":1},"clothing-store-11":{"width":17,"height":17,"x":119,"y":201,"pixelRatio":1},"college-11":{"width":17,"height":17,"x":136,"y":201,"pixelRatio":1},"dentist-11":{"width":17,"height":17,"x":153,"y":201,"pixelRatio":1},"doctor-11":{"width":17,"height":17,"x":170,"y":201,"pixelRatio":1},"dog-park-11":{"width":17,"height":17,"x":187,"y":201,"pixelRatio":1},"drinking-water-11":{"width":17,"height":17,"x":204,"y":201,"pixelRatio":1},"embassy-11":{"width":17,"height":17,"x":232,"y":0,"pixelRatio":1},"entrance-11":{"width":17,"height":17,"x":232,"y":17,"pixelRatio":1},"fast-food-11":{"width":17,"height":17,"x":232,"y":34,"pixelRatio":1},"ferry-11":{"width":17,"height":17,"x":232,"y":51,"pixelRatio":1},"fire-station-11":{"width":17,"height":17,"x":232,"y":68,"pixelRatio":1},"fuel-11":{"width":17,"height":17,"x":232,"y":85,"pixelRatio":1},"garden-11":{"width":17,"height":17,"x":232,"y":102,"pixelRatio":1},"golf-11":{"width":17,"height":17,"x":232,"y":119,"pixelRatio":1},"grocery-11":{"width":17,"height":17,"x":232,"y":136,"pixelRatio":1},"harbor-11":{"width":17,"height":17,"x":232,"y":153,"pixelRatio":1},"heliport-11":{"width":17,"height":17,"x":232,"y":170,"pixelRatio":1},"hospital-11":{"width":17,"height":17,"x":232,"y":187,"pixelRatio":1},"airfield-11":{"width":17,"height":17,"x":0,"y":218,"pixelRatio":1},"information-11":{"width":17,"height":17,"x":17,"y":218,"pixelRatio":1},"laundry-11":{"width":17,"height":17,"x":34,"y":218,"pixelRatio":1},"library-11":{"width":17,"height":17,"x":51,"y":218,"pixelRatio":1},"lodging-11":{"width":17,"height":17,"x":68,"y":218,"pixelRatio":1},"marker-11":{"width":17,"height":17,"x":85,"y":218,"pixelRatio":1},"monument-11":{"width":17,"height":17,"x":102,"y":218,"pixelRatio":1},"mountain-11":{"width":17,"height":17,"x":119,"y":218,"pixelRatio":1},"museum-11":{"width":17,"height":17,"x":136,"y":218,"pixelRatio":1},"music-11":{"width":17,"height":17,"x":153,"y":218,"pixelRatio":1},"park-11":{"width":17,"height":17,"x":170,"y":218,"pixelRatio":1},"pharmacy-11":{"width":17,"height":17,"x":187,"y":218,"pixelRatio":1},"picnic-site-11":{"width":17,"height":17,"x":204,"y":218,"pixelRatio":1},"place-of-worship-11":{"width":17,"height":17,"x":221,"y":218,"pixelRatio":1},"playground-11":{"width":17,"height":17,"x":249,"y":0,"pixelRatio":1},"police-11":{"width":17,"height":17,"x":249,"y":17,"pixelRatio":1},"post-11":{"width":17,"height":17,"x":249,"y":34,"pixelRatio":1},"prison-11":{"width":17,"height":17,"x":249,"y":51,"pixelRatio":1},"rail-11":{"width":17,"height":17,"x":249,"y":68,"pixelRatio":1},"rail-light-11":{"width":17,"height":17,"x":249,"y":85,"pixelRatio":1},"rail-metro-11":{"width":17,"height":17,"x":249,"y":102,"pixelRatio":1},"religious-christian-11":{"width":17,"height":17,"x":249,"y":119,"pixelRatio":1},"religious-jewish-11":{"width":17,"height":17,"x":249,"y":136,"pixelRatio":1},"religious-muslim-11":{"width":17,"height":17,"x":249,"y":153,"pixelRatio":1},"restaurant-11":{"width":17,"height":17,"x":249,"y":170,"pixelRatio":1},"rocket-11":{"width":17,"height":17,"x":249,"y":187,"pixelRatio":1},"school-11":{"width":17,"height":17,"x":249,"y":204,"pixelRatio":1},"shop-11":{"width":17,"height":17,"x":0,"y":235,"pixelRatio":1},"stadium-11":{"width":17,"height":17,"x":17,"y":235,"pixelRatio":1},"star-11":{"width":17,"height":17,"x":34,"y":235,"pixelRatio":1},"suitcase-11":{"width":17,"height":17,"x":51,"y":235,"pixelRatio":1},"swimming-11":{"width":17,"height":17,"x":68,"y":235,"pixelRatio":1},"theatre-11":{"width":17,"height":17,"x":85,"y":235,"pixelRatio":1},"toilet-11":{"width":17,"height":17,"x":102,"y":235,"pixelRatio":1},"town-hall-11":{"width":17,"height":17,"x":119,"y":235,"pixelRatio":1},"triangle-11":{"width":17,"height":17,"x":136,"y":235,"pixelRatio":1},"triangle-stroked-11":{"width":17,"height":17,"x":153,"y":235,"pixelRatio":1},"veterinary-11":{"width":17,"height":17,"x":170,"y":235,"pixelRatio":1},"volcano-11":{"width":17,"height":17,"x":187,"y":235,"pixelRatio":1},"zoo-11":{"width":17,"height":17,"x":204,"y":235,"pixelRatio":1},"wave":{"width":16,"height":8,"x":249,"y":221,"pixelRatio":1}} \ No newline at end of file diff --git a/map_files/sprites/mono.png b/map_files/sprites/mono.png new file mode 100644 index 0000000..d5389b3 Binary files /dev/null and b/map_files/sprites/mono.png differ diff --git a/map_files/sprites/mono@2x.json b/map_files/sprites/mono@2x.json new file mode 100644 index 0000000..d710f85 --- /dev/null +++ b/map_files/sprites/mono@2x.json @@ -0,0 +1 @@ +{"motorway_6":{"width":100,"height":36,"x":0,"y":0,"pixelRatio":2},"motorway_5":{"width":90,"height":36,"x":0,"y":36,"pixelRatio":2},"motorway_4":{"width":78,"height":36,"x":100,"y":0,"pixelRatio":2},"motorway_3":{"width":64,"height":36,"x":100,"y":36,"pixelRatio":2},"motorway_2":{"width":50,"height":36,"x":0,"y":72,"pixelRatio":2},"art-gallery-15":{"width":42,"height":42,"x":0,"y":108,"pixelRatio":2},"attraction-15":{"width":42,"height":42,"x":42,"y":108,"pixelRatio":2},"bakery-15":{"width":42,"height":42,"x":84,"y":108,"pixelRatio":2},"bank-15":{"width":42,"height":42,"x":126,"y":108,"pixelRatio":2},"bar-15":{"width":42,"height":42,"x":178,"y":0,"pixelRatio":2},"beer-15":{"width":42,"height":42,"x":178,"y":42,"pixelRatio":2},"bicycle-15":{"width":42,"height":42,"x":178,"y":84,"pixelRatio":2},"bicycle-share-15":{"width":42,"height":42,"x":0,"y":150,"pixelRatio":2},"bus-15":{"width":42,"height":42,"x":42,"y":150,"pixelRatio":2},"cafe-15":{"width":42,"height":42,"x":84,"y":150,"pixelRatio":2},"campsite-15":{"width":42,"height":42,"x":126,"y":150,"pixelRatio":2},"car-15":{"width":42,"height":42,"x":168,"y":150,"pixelRatio":2},"castle-15":{"width":42,"height":42,"x":220,"y":0,"pixelRatio":2},"cemetery-15":{"width":42,"height":42,"x":220,"y":42,"pixelRatio":2},"cinema-15":{"width":42,"height":42,"x":220,"y":84,"pixelRatio":2},"circle-15":{"width":42,"height":42,"x":220,"y":126,"pixelRatio":2},"circle-stroked-15":{"width":42,"height":42,"x":0,"y":192,"pixelRatio":2},"clothing-store-15":{"width":42,"height":42,"x":42,"y":192,"pixelRatio":2},"college-15":{"width":42,"height":42,"x":84,"y":192,"pixelRatio":2},"dentist-15":{"width":42,"height":42,"x":126,"y":192,"pixelRatio":2},"doctor-15":{"width":42,"height":42,"x":168,"y":192,"pixelRatio":2},"dog-park-15":{"width":42,"height":42,"x":210,"y":192,"pixelRatio":2},"drinking-water-15":{"width":42,"height":42,"x":262,"y":0,"pixelRatio":2},"embassy-15":{"width":42,"height":42,"x":262,"y":42,"pixelRatio":2},"entrance-15":{"width":42,"height":42,"x":262,"y":84,"pixelRatio":2},"fast-food-15":{"width":42,"height":42,"x":262,"y":126,"pixelRatio":2},"ferry-15":{"width":42,"height":42,"x":262,"y":168,"pixelRatio":2},"fire-station-15":{"width":42,"height":42,"x":0,"y":234,"pixelRatio":2},"fuel-15":{"width":42,"height":42,"x":42,"y":234,"pixelRatio":2},"garden-15":{"width":42,"height":42,"x":84,"y":234,"pixelRatio":2},"golf-15":{"width":42,"height":42,"x":126,"y":234,"pixelRatio":2},"grocery-15":{"width":42,"height":42,"x":168,"y":234,"pixelRatio":2},"harbor-15":{"width":42,"height":42,"x":210,"y":234,"pixelRatio":2},"heliport-15":{"width":42,"height":42,"x":252,"y":234,"pixelRatio":2},"hospital-15":{"width":42,"height":42,"x":304,"y":0,"pixelRatio":2},"ice-cream-15":{"width":42,"height":42,"x":304,"y":42,"pixelRatio":2},"information-15":{"width":42,"height":42,"x":304,"y":84,"pixelRatio":2},"laundry-15":{"width":42,"height":42,"x":304,"y":126,"pixelRatio":2},"library-15":{"width":42,"height":42,"x":304,"y":168,"pixelRatio":2},"lodging-15":{"width":42,"height":42,"x":304,"y":210,"pixelRatio":2},"marker-15":{"width":42,"height":42,"x":0,"y":276,"pixelRatio":2},"monument-15":{"width":42,"height":42,"x":42,"y":276,"pixelRatio":2},"mountain-15":{"width":42,"height":42,"x":84,"y":276,"pixelRatio":2},"museum-15":{"width":42,"height":42,"x":126,"y":276,"pixelRatio":2},"music-15":{"width":42,"height":42,"x":168,"y":276,"pixelRatio":2},"park-15":{"width":42,"height":42,"x":210,"y":276,"pixelRatio":2},"pharmacy-15":{"width":42,"height":42,"x":252,"y":276,"pixelRatio":2},"picnic-site-15":{"width":42,"height":42,"x":294,"y":276,"pixelRatio":2},"place-of-worship-15":{"width":42,"height":42,"x":346,"y":0,"pixelRatio":2},"playground-15":{"width":42,"height":42,"x":346,"y":42,"pixelRatio":2},"police-15":{"width":42,"height":42,"x":346,"y":84,"pixelRatio":2},"post-15":{"width":42,"height":42,"x":346,"y":126,"pixelRatio":2},"prison-15":{"width":42,"height":42,"x":346,"y":168,"pixelRatio":2},"rail-15":{"width":42,"height":42,"x":346,"y":210,"pixelRatio":2},"rail-light-15":{"width":42,"height":42,"x":346,"y":252,"pixelRatio":2},"rail-metro-15":{"width":42,"height":42,"x":0,"y":318,"pixelRatio":2},"religious-christian-15":{"width":42,"height":42,"x":42,"y":318,"pixelRatio":2},"religious-jewish-15":{"width":42,"height":42,"x":84,"y":318,"pixelRatio":2},"religious-muslim-15":{"width":42,"height":42,"x":126,"y":318,"pixelRatio":2},"restaurant-15":{"width":42,"height":42,"x":168,"y":318,"pixelRatio":2},"rocket-15":{"width":42,"height":42,"x":210,"y":318,"pixelRatio":2},"school-15":{"width":42,"height":42,"x":252,"y":318,"pixelRatio":2},"shop-15":{"width":42,"height":42,"x":294,"y":318,"pixelRatio":2},"stadium-15":{"width":42,"height":42,"x":336,"y":318,"pixelRatio":2},"star-15":{"width":42,"height":42,"x":388,"y":0,"pixelRatio":2},"suitcase-15":{"width":42,"height":42,"x":388,"y":42,"pixelRatio":2},"swimming-15":{"width":42,"height":42,"x":388,"y":84,"pixelRatio":2},"theatre-15":{"width":42,"height":42,"x":388,"y":126,"pixelRatio":2},"toilet-15":{"width":42,"height":42,"x":388,"y":168,"pixelRatio":2},"town-hall-15":{"width":42,"height":42,"x":388,"y":210,"pixelRatio":2},"triangle-15":{"width":42,"height":42,"x":388,"y":252,"pixelRatio":2},"triangle-stroked-15":{"width":42,"height":42,"x":388,"y":294,"pixelRatio":2},"veterinary-15":{"width":42,"height":42,"x":0,"y":360,"pixelRatio":2},"volcano-15":{"width":42,"height":42,"x":42,"y":360,"pixelRatio":2},"zoo-15":{"width":42,"height":42,"x":84,"y":360,"pixelRatio":2},"airfield-15":{"width":42,"height":42,"x":126,"y":360,"pixelRatio":2},"alcohol-shop-15":{"width":42,"height":42,"x":168,"y":360,"pixelRatio":2},"amusement-park-15":{"width":42,"height":42,"x":210,"y":360,"pixelRatio":2},"airport-15":{"width":42,"height":42,"x":252,"y":360,"pixelRatio":2},"aquarium-15":{"width":42,"height":42,"x":294,"y":360,"pixelRatio":2},"motorway_1":{"width":36,"height":36,"x":50,"y":72,"pixelRatio":2},"ice-cream-11":{"width":34,"height":34,"x":86,"y":72,"pixelRatio":2},"airport-11":{"width":34,"height":34,"x":120,"y":72,"pixelRatio":2},"alcohol-shop-11":{"width":34,"height":34,"x":336,"y":360,"pixelRatio":2},"amusement-park-11":{"width":34,"height":34,"x":370,"y":360,"pixelRatio":2},"aquarium-11":{"width":34,"height":34,"x":430,"y":0,"pixelRatio":2},"art-gallery-11":{"width":34,"height":34,"x":430,"y":34,"pixelRatio":2},"attraction-11":{"width":34,"height":34,"x":430,"y":68,"pixelRatio":2},"bakery-11":{"width":34,"height":34,"x":430,"y":102,"pixelRatio":2},"bank-11":{"width":34,"height":34,"x":430,"y":136,"pixelRatio":2},"bar-11":{"width":34,"height":34,"x":430,"y":170,"pixelRatio":2},"beer-11":{"width":34,"height":34,"x":430,"y":204,"pixelRatio":2},"bicycle-11":{"width":34,"height":34,"x":430,"y":238,"pixelRatio":2},"bicycle-share-11":{"width":34,"height":34,"x":430,"y":272,"pixelRatio":2},"bus-11":{"width":34,"height":34,"x":430,"y":306,"pixelRatio":2},"cafe-11":{"width":34,"height":34,"x":430,"y":340,"pixelRatio":2},"campsite-11":{"width":34,"height":34,"x":0,"y":402,"pixelRatio":2},"car-11":{"width":34,"height":34,"x":34,"y":402,"pixelRatio":2},"castle-11":{"width":34,"height":34,"x":68,"y":402,"pixelRatio":2},"cemetery-11":{"width":34,"height":34,"x":102,"y":402,"pixelRatio":2},"cinema-11":{"width":34,"height":34,"x":136,"y":402,"pixelRatio":2},"circle-11":{"width":34,"height":34,"x":170,"y":402,"pixelRatio":2},"circle-stroked-11":{"width":34,"height":34,"x":204,"y":402,"pixelRatio":2},"clothing-store-11":{"width":34,"height":34,"x":238,"y":402,"pixelRatio":2},"college-11":{"width":34,"height":34,"x":272,"y":402,"pixelRatio":2},"dentist-11":{"width":34,"height":34,"x":306,"y":402,"pixelRatio":2},"doctor-11":{"width":34,"height":34,"x":340,"y":402,"pixelRatio":2},"dog-park-11":{"width":34,"height":34,"x":374,"y":402,"pixelRatio":2},"drinking-water-11":{"width":34,"height":34,"x":408,"y":402,"pixelRatio":2},"embassy-11":{"width":34,"height":34,"x":464,"y":0,"pixelRatio":2},"entrance-11":{"width":34,"height":34,"x":464,"y":34,"pixelRatio":2},"fast-food-11":{"width":34,"height":34,"x":464,"y":68,"pixelRatio":2},"ferry-11":{"width":34,"height":34,"x":464,"y":102,"pixelRatio":2},"fire-station-11":{"width":34,"height":34,"x":464,"y":136,"pixelRatio":2},"fuel-11":{"width":34,"height":34,"x":464,"y":170,"pixelRatio":2},"garden-11":{"width":34,"height":34,"x":464,"y":204,"pixelRatio":2},"golf-11":{"width":34,"height":34,"x":464,"y":238,"pixelRatio":2},"grocery-11":{"width":34,"height":34,"x":464,"y":272,"pixelRatio":2},"harbor-11":{"width":34,"height":34,"x":464,"y":306,"pixelRatio":2},"heliport-11":{"width":34,"height":34,"x":464,"y":340,"pixelRatio":2},"hospital-11":{"width":34,"height":34,"x":464,"y":374,"pixelRatio":2},"airfield-11":{"width":34,"height":34,"x":0,"y":436,"pixelRatio":2},"information-11":{"width":34,"height":34,"x":34,"y":436,"pixelRatio":2},"laundry-11":{"width":34,"height":34,"x":68,"y":436,"pixelRatio":2},"library-11":{"width":34,"height":34,"x":102,"y":436,"pixelRatio":2},"lodging-11":{"width":34,"height":34,"x":136,"y":436,"pixelRatio":2},"marker-11":{"width":34,"height":34,"x":170,"y":436,"pixelRatio":2},"monument-11":{"width":34,"height":34,"x":204,"y":436,"pixelRatio":2},"mountain-11":{"width":34,"height":34,"x":238,"y":436,"pixelRatio":2},"museum-11":{"width":34,"height":34,"x":272,"y":436,"pixelRatio":2},"music-11":{"width":34,"height":34,"x":306,"y":436,"pixelRatio":2},"park-11":{"width":34,"height":34,"x":340,"y":436,"pixelRatio":2},"pharmacy-11":{"width":34,"height":34,"x":374,"y":436,"pixelRatio":2},"picnic-site-11":{"width":34,"height":34,"x":408,"y":436,"pixelRatio":2},"place-of-worship-11":{"width":34,"height":34,"x":442,"y":436,"pixelRatio":2},"playground-11":{"width":34,"height":34,"x":498,"y":0,"pixelRatio":2},"police-11":{"width":34,"height":34,"x":498,"y":34,"pixelRatio":2},"post-11":{"width":34,"height":34,"x":498,"y":68,"pixelRatio":2},"prison-11":{"width":34,"height":34,"x":498,"y":102,"pixelRatio":2},"rail-11":{"width":34,"height":34,"x":498,"y":136,"pixelRatio":2},"rail-light-11":{"width":34,"height":34,"x":498,"y":170,"pixelRatio":2},"rail-metro-11":{"width":34,"height":34,"x":498,"y":204,"pixelRatio":2},"religious-christian-11":{"width":34,"height":34,"x":498,"y":238,"pixelRatio":2},"religious-jewish-11":{"width":34,"height":34,"x":498,"y":272,"pixelRatio":2},"religious-muslim-11":{"width":34,"height":34,"x":498,"y":306,"pixelRatio":2},"restaurant-11":{"width":34,"height":34,"x":498,"y":340,"pixelRatio":2},"rocket-11":{"width":34,"height":34,"x":498,"y":374,"pixelRatio":2},"school-11":{"width":34,"height":34,"x":498,"y":408,"pixelRatio":2},"shop-11":{"width":34,"height":34,"x":0,"y":470,"pixelRatio":2},"stadium-11":{"width":34,"height":34,"x":34,"y":470,"pixelRatio":2},"star-11":{"width":34,"height":34,"x":68,"y":470,"pixelRatio":2},"suitcase-11":{"width":34,"height":34,"x":102,"y":470,"pixelRatio":2},"swimming-11":{"width":34,"height":34,"x":136,"y":470,"pixelRatio":2},"theatre-11":{"width":34,"height":34,"x":170,"y":470,"pixelRatio":2},"toilet-11":{"width":34,"height":34,"x":204,"y":470,"pixelRatio":2},"town-hall-11":{"width":34,"height":34,"x":238,"y":470,"pixelRatio":2},"triangle-11":{"width":34,"height":34,"x":272,"y":470,"pixelRatio":2},"triangle-stroked-11":{"width":34,"height":34,"x":306,"y":470,"pixelRatio":2},"veterinary-11":{"width":34,"height":34,"x":340,"y":470,"pixelRatio":2},"volcano-11":{"width":34,"height":34,"x":374,"y":470,"pixelRatio":2},"zoo-11":{"width":34,"height":34,"x":408,"y":470,"pixelRatio":2},"wave":{"width":32,"height":16,"x":498,"y":442,"pixelRatio":2}} \ No newline at end of file diff --git a/map_files/sprites/mono@2x.png b/map_files/sprites/mono@2x.png new file mode 100644 index 0000000..f998f64 Binary files /dev/null and b/map_files/sprites/mono@2x.png differ diff --git a/map_files/styles/mono-blue-water.json b/map_files/styles/mono-blue-water.json new file mode 100755 index 0000000..230b8ab --- /dev/null +++ b/map_files/styles/mono-blue-water.json @@ -0,0 +1,3804 @@ +{ + "version": 8, + "name": "Mono-Blue-Water", + "sources": { + "mapbox": { + "url": "mbtiles://planet.mbtiles", + "type": "vector" + } + }, + "sprite": "mono", + "glyphs": "{fontstack}/{range}.pbf", + "metadata": { + "mapbox:autocomposite": true, + "mapbox:type": "template", + "mapbox:groups": { + "1444849364238.8171": { + "name": "Buildings", + "collapsed": true + }, + "1444849354174.1904": { + "name": "Tunnels", + "collapsed": true + }, + "1444849320558.5054": { + "name": "Water labels", + "collapsed": true + }, + "1444849371739.5945": { + "name": "Aeroways", + "collapsed": true + }, + "1444849258897.3083": { + "name": "Marine labels", + "collapsed": true + }, + "1444849388993.3071": { + "name": "Landuse", + "collapsed": true + }, + "1444849242106.713": { + "name": "Country labels", + "collapsed": true + }, + "1444849382550.77": { + "name": "Water", + "collapsed": true + }, + "1444849345966.4436": { + "name": "Roads", + "collapsed": true + }, + "1444849307123.581": { + "name": "Admin lines", + "collapsed": true + }, + "1456163609504.0715": { + "name": "Road labels", + "collapsed": true + }, + "1444849272561.29": { + "name": "Place labels", + "collapsed": true + }, + "1444849334699.1902": { + "name": "Bridges", + "collapsed": true + }, + "1444849297111.495": { + "name": "POI labels", + "collapsed": true + } + } + }, + "layers": [ + { + "id": "background", + "type": "background", + "paint": { + "background-color": "#F2F2F2" + } + }, + { + "id": "landuse_overlay_national_park", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse_overlay", + "filter": [ + "==", + "class", + "national_park" + ], + "paint": { + "fill-color": "hsla(0, 0%, 85%, 0)", + "fill-opacity": 0.75, + "fill-outline-color": "hsla(0, 0%, 85%, 0)" + } + }, + { + "id": "landuse_park", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "park" + ], + "paint": { + "fill-color": "hsla(0, 0%, 77%, 0)", + "fill-outline-color": "hsla(0, 0%, 77%, 0)" + } + }, + { + "id": "landuse_cemetery", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "cemetery" + ], + "paint": { + "fill-color": "hsla(0, 0%, 88%, 0)", + "fill-outline-color": "hsla(0, 0%, 88%, 0)" + } + }, + { + "id": "landuse_hospital", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "hospital" + ], + "paint": { + "fill-color": "hsla(0, 0%, 94%, 0)", + "fill-outline-color": "hsla(0, 0%, 94%, 0)" + } + }, + { + "id": "landuse_school", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "school" + ], + "paint": { + "fill-color": "hsla(0, 0%, 94%, 0)", + "fill-outline-color": "hsla(0, 0%, 94%, 0)" + } + }, + { + "id": "landuse_wood", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "wood" + ], + "paint": { + "fill-color": "hsla(0, 0%, 47%, 0)", + "fill-opacity": 0.2, + "fill-outline-color": "hsla(0, 0%, 47%, 0)" + } + }, + { + "id": "waterway", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "all", + [ + "!=", + "class", + "canal" + ], + [ + "!=", + "class", + "river" + ], + [ + "!=", + "class", + "stream" + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(210,0%, 78%)", + "line-width": { + "base": 1.3, + "stops": [ + [ + 13, + 0.5 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "waterway_river", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "==", + "class", + "river" + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(210,0%, 78%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "waterway_stream_canal", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "in", + "class", + "canal", + "stream" + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(210,0%, 78%)", + "line-width": { + "base": 1.3, + "stops": [ + [ + 13, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "water", + "type": "fill", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "water", + "paint": { + "fill-color": "#46BCEC", + "fill-outline-color": "#46BCEC" + } + }, + { + "id": "aeroway_fill", + "type": "fill", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "==", + "$type", + "Polygon" + ], + "paint": { + "fill-outline-color": "hsla(0, 0%, 93%, 0)", + "fill-opacity": 0.7, + "fill-color": "hsla(0, 0%, 0%, 0)" + } + }, + { + "id": "aeroway_runway", + "type": "line", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "type", + "runway" + ] + ], + "paint": { + "line-color": "hsl(34, 0%, 93%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 3 + ], + [ + 20, + 16 + ] + ] + } + } + }, + { + "id": "aeroway_taxiway", + "type": "line", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "type", + "taxiway" + ] + ], + "paint": { + "line-color": "hsl(34, 0%, 93%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "building", + "type": "fill", + "metadata": { + "mapbox:group": "1444849364238.8171" + }, + "source": "mapbox", + "source-layer": "building", + "paint": { + "fill-color": "hsla(0, 0%, 85%, 0)" + } + }, + { + "id": "building_top", + "metadata": { + "mapbox:group": "1444849364238.8171" + }, + "ref": "building", + "paint": { + "fill-color": "hsla(0, 0%, 92%, 0)", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 15, + 0 + ], + [ + 16, + 1 + ] + ] + }, + "fill-translate": { + "stops": [ + [ + 15, + [ + 0, + 0 + ] + ], + [ + 16, + [ + -2, + -2 + ] + ] + ], + "base": 1 + }, + "fill-outline-color": "hsla(0, 0%, 85%, 0)" + } + }, + { + "id": "tunnel_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(36, 0%, 80%)", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1 + ], + [ + 16, + 4 + ], + [ + 20, + 11 + ] + ] + } + } + }, + { + "id": "tunnel_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "link" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(36, 0%, 80%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0.5 + ], + [ + 13, + 1 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": { + "stops": [ + [ + 12, + 0 + ], + [ + 12.5, + 1 + ] + ] + } + } + }, + { + "id": "tunnel_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 8, + 1.5 + ], + [ + 20, + 17 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "tunnel_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "tunnel_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "hsl(30, 0%, 73%)", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "tunnel_motorway_link", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_motorway_link_casing", + "paint": { + "line-color": "hsl(34, 0%, 77%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "tunnel_service_track", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_service_track_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15.5, + 0 + ], + [ + 16, + 2 + ], + [ + 20, + 7.5 + ] + ] + } + } + }, + { + "id": "tunnel_link", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_link_casing", + "paint": { + "line-color": "hsl(48, 0%, 89%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "tunnel_street", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_street_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13.5, + 0 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_secondary_tertiary_casing", + "paint": { + "line-color": "hsl(48, 0%, 89%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 10 + ] + ] + } + } + }, + { + "id": "tunnel_trunk_primary", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_trunk_primary_casing", + "paint": { + "line-color": "hsl(48, 0%, 89%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "tunnel_motorway", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_motorway_casing", + "paint": { + "line-color": "hsl(35, 0%, 83%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "tunnel_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "major_rail", + "minor_rail" + ] + ], + "paint": { + "line-color": "hsl(0, 0%, 73%)", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "tunnel_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_major_rail", + "paint": { + "line-color": "hsl(0, 0%, 73%)", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "road_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 12, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "motorway_link" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "hsl(36, 0%, 80%)", + "line-width": 0 + } + }, + { + "id": "road_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 13, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "link" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "hsl(36, 0%, 80%)", + "line-opacity": 0, + "line-width": 0 + } + }, + { + "id": "road_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": 0, + "line-opacity": 1 + } + }, + { + "id": "road_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 5, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "motorway" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "road_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "hsl(30, 0%, 73%)", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "road_motorway_link", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_motorway_link_casing", + "paint": { + "line-color": "hsl(34, 0%, 77%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "road_service_track", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_service_track_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13, + 0 + ], + [ + 14, + 1 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "road_link", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_link_casing", + "paint": { + "line-color": "hsl(48, 0%, 84%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "road_street", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_street_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0 + ], + [ + 14, + 2 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_secondary_tertiary_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 8, + 0.5 + ], + [ + 20, + 13 + ] + ] + } + } + }, + { + "id": "road_trunk_primary", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_trunk_primary_casing", + "paint": { + "line-color": "hsl(48, 0%, 84%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "road_motorway", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_motorway_casing", + "paint": { + "line-color": "hsl(34, 0%, 77%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 4, + 0 + ], + [ + 10, + 1 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "road_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "major_rail" + ] + ], + "paint": { + "line-color": "hsl(0, 0%, 73%)", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "road_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_major_rail", + "paint": { + "line-color": "hsl(0, 0%, 73%)", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "bridge_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(36, 0%, 80%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1 + ], + [ + 16, + 4 + ], + [ + 20, + 11 + ] + ] + } + } + }, + { + "id": "bridge_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "link" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(36, 0%, 80%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0.5 + ], + [ + 13, + 1 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": { + "stops": [ + [ + 12, + 0 + ], + [ + 12.5, + 1 + ] + ] + } + } + }, + { + "id": "bridge_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 8, + 1.5 + ], + [ + 20, + 17 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "bridge_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "bridge_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "hsl(30, 0%, 73%)", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "bridge_motorway_link", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_motorway_link_casing", + "paint": { + "line-color": "hsl(34, 0%, 77%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "bridge_service_track", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_service_track_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15.5, + 0 + ], + [ + 16, + 2 + ], + [ + 20, + 7.5 + ] + ] + } + } + }, + { + "id": "bridge_link", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_link_casing", + "paint": { + "line-color": "hsl(48, 0%, 84%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "bridge_street", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_street_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13.5, + 0 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_secondary_tertiary_casing", + "paint": { + "line-color": "hsl(48, 0%, 84%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 10 + ] + ] + } + } + }, + { + "id": "bridge_trunk_primary", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_trunk_primary_casing", + "paint": { + "line-color": "hsl(48, 0%, 84%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "bridge_motorway", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_motorway_casing", + "paint": { + "line-color": "hsl(34, 0%, 77%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "bridge_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "major_rail" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "paint": { + "line-color": "hsl(0, 0%, 73%)", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "bridge_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_major_rail", + "paint": { + "line-color": "hsl(0, 0%, 73%)", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_3", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "maritime", + 0 + ], + [ + ">=", + "admin_level", + 3 + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(248, 0%, 64%)", + "line-dasharray": [ + 3, + 1, + 1, + 1 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 0.4 + ], + [ + 5, + 1 + ], + [ + 12, + 3 + ] + ] + } + } + }, + { + "id": "admin_level_2", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "disputed", + 0 + ], + [ + "==", + "maritime", + 0 + ] + ], + "layout": { + "line-join": "round", + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(248, 0%, 64%)", + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_2_disputed", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "disputed", + 1 + ], + [ + "==", + "maritime", + 0 + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(248, 0%, 64%)", + "line-dasharray": [ + 2, + 2 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_3_maritime", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "maritime", + 1 + ], + [ + ">=", + "admin_level", + 3 + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(210,0%, 78%)", + "line-opacity": 0.5, + "line-dasharray": [ + 3, + 1, + 1, + 1 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 0.4 + ], + [ + 5, + 1 + ], + [ + 12, + 3 + ] + ] + } + } + }, + { + "id": "admin_level_2_maritime", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "maritime", + 1 + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(210,0%, 78%)", + "line-opacity": 0.5, + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "water_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849320558.5054" + }, + "source": "mapbox", + "source-layer": "water_label", + "filter": [ + "==", + "$type", + "Point" + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-size": 12 + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-width": 1.5, + "text-halo-color": "hsla(0, 0%, 100%, 0.7)" + } + }, + { + "id": "poi_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 16, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 4 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "poi_label_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 15, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 3 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "poi_label_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 14, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 2 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "rail_station_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "rail_station_label", + "layout": { + "text-size": 12, + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-padding": 2, + "visibility": "visible", + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-field": "{name_en}", + "text-max-width": 9 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "poi_label_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 13, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 1 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "airport_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "airport_label", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "in", + "scalerank", + 1, + 2, + 3 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "road_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1456163609504.0715" + }, + "source": "mapbox", + "source-layer": "road_label", + "filter": [ + "!=", + "class", + "ferry" + ], + "layout": { + "text-field": "{name_en}", + "text-font": [ + "Open Sans Regular" + ], + "text-size": { + "base": 1, + "stops": [ + [ + 12, + 12 + ], + [ + 16, + 13 + ] + ] + }, + "symbol-placement": "line" + }, + "paint": { + "text-color": "hsl(30, 0%, 40%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "road_label_highway_shield", + "type": "symbol", + "metadata": { + "mapbox:group": "1456163609504.0715" + }, + "source": "mapbox", + "source-layer": "road_label", + "minzoom": 8, + "filter": [ + "<=", + "reflen", + 6 + ], + "layout": { + "text-field": "{ref}", + "text-font": [ + "Open Sans Semibold" + ], + "text-size": 11, + "icon-image": "motorway_{reflen}", + "symbol-placement": { + "base": 1, + "stops": [ + [ + 10, + "point" + ], + [ + 11, + "line" + ] + ] + }, + "symbol-spacing": 500, + "text-rotation-alignment": "viewport", + "icon-rotation-alignment": "viewport" + }, + "paint": {} + }, + { + "id": "place_label_other", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "in", + "type", + "hamlet", + "island", + "islet", + "neighbourhood", + "suburb" + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-transform": "uppercase", + "text-letter-spacing": 0.1, + "text-field": "{name_en}", + "text-max-width": 9, + "text-size": { + "base": 1.2, + "stops": [ + [ + 12, + 10 + ], + [ + 15, + 14 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 30%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_village", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "village" + ], + "layout": { + "text-font": [ + "Open Sans Regular" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 10, + 12 + ], + [ + 15, + 22 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 20%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_town", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "town" + ], + "layout": { + "text-font": [ + "Open Sans Regular" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 10, + 14 + ], + [ + 15, + 24 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 20%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_city", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "city" + ], + "layout": { + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 7, + 14 + ], + [ + 11, + 24 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 20%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "marine_label_line_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + ">=", + "labelrank", + 4 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 12 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + ">=", + "labelrank", + 4 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 6, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 12 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_line_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 3 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 14 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_point_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 3 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 14 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_line_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 2 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 14 + ], + [ + 4, + 16 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_point_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 2 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 14 + ], + [ + 4, + 16 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_line_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 1 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 18 + ], + [ + 4, + 22 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_point_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 1 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "text-line-height": 1.6, + "symbol-placement": "point", + "text-offset": [ + 0, + 2.4 + ], + "text-size": { + "stops": [ + [ + 3, + 18 + ], + [ + 4, + 22 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "country_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + ">=", + "scalerank", + 4 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 4, + 11 + ], + [ + 6, + 15 + ] + ] + } + }, + "paint": { + "text-color": "hsl(240, 0%, 24%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + }, + { + "id": "country_label_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 3 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 7, + 17 + ] + ] + } + }, + "paint": { + "text-color": "hsl(240, 0%, 24%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + }, + { + "id": "country_label_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 2 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 2, + 11 + ], + [ + 5, + 17 + ] + ] + } + }, + "paint": { + "text-color": "hsl(240, 0%, 24%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + }, + { + "id": "country_label_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 1 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 1, + 11 + ], + [ + 4, + 17 + ] + ] + } + }, + "paint": { + "text-color": "hsl(240, 0%, 24%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + } + ] +} \ No newline at end of file diff --git a/map_files/styles/mono-blue.json b/map_files/styles/mono-blue.json new file mode 100755 index 0000000..fb38783 --- /dev/null +++ b/map_files/styles/mono-blue.json @@ -0,0 +1,3783 @@ +{ + "version": 8, + "name": "Mono-Blue", + "sources": { + "mapbox": { + "url": "mbtiles://planet.mbtiles", + "type": "vector" + } + }, + "sprite": "mono", + "glyphs": "{fontstack}/{range}.pbf", + "metadata": { + "mapbox:autocomposite": true, + "mapbox:type": "template", + "mapbox:groups": { + "1444849364238.8171": { + "name": "Buildings", + "collapsed": true + }, + "1444849354174.1904": { + "name": "Tunnels", + "collapsed": true + }, + "1444849320558.5054": { + "name": "Water labels", + "collapsed": true + }, + "1444849371739.5945": { + "name": "Aeroways", + "collapsed": true + }, + "1444849258897.3083": { + "name": "Marine labels", + "collapsed": true + }, + "1444849388993.3071": { + "name": "Landuse", + "collapsed": true + }, + "1444849242106.713": { + "name": "Country labels", + "collapsed": true + }, + "1444849382550.77": { + "name": "Water", + "collapsed": true + }, + "1444849345966.4436": { + "name": "Roads", + "collapsed": true + }, + "1444849307123.581": { + "name": "Admin lines", + "collapsed": true + }, + "1456163609504.0715": { + "name": "Road labels", + "collapsed": true + }, + "1444849272561.29": { + "name": "Place labels", + "collapsed": true + }, + "1444849334699.1902": { + "name": "Bridges", + "collapsed": true + }, + "1444849297111.495": { + "name": "POI labels", + "collapsed": true + } + } + }, + "layers": [ + { + "id": "background", + "type": "background", + "paint": { + "background-color": "#2C5A71" + } + }, + { + "id": "landuse_overlay_national_park", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse_overlay", + "filter": [ + "==", + "class", + "national_park" + ], + "paint": { + "fill-color": "#2C5A71", + "fill-opacity": 0.75, + "fill-outline-color": "#2C5A71" + } + }, + { + "id": "landuse_park", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "park" + ], + "paint": { + "fill-color": "#2C5A71", + "fill-outline-color": "#2C5A71" + } + }, + { + "id": "landuse_cemetery", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "cemetery" + ], + "paint": { + "fill-color": "#406D80", + "fill-outline-color": "#406D80" + } + }, + { + "id": "landuse_hospital", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "hospital" + ], + "paint": { + "fill-color": "#406D80", + "fill-outline-color": "#406D80" + } + }, + { + "id": "landuse_school", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "school" + ], + "paint": { + "fill-color": "#2C5A71", + "fill-outline-color": "#2C5A71" + } + }, + { + "id": "landuse_wood", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "wood" + ], + "paint": { + "fill-color": "#2C5A71", + "fill-opacity": 0.2, + "fill-outline-color": "#2C5A71" + } + }, + { + "id": "waterway", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "all", + [ + "!=", + "class", + "canal" + ], + [ + "!=", + "class", + "river" + ], + [ + "!=", + "class", + "stream" + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.3, + "stops": [ + [ + 13, + 0.5 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "waterway_river", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "==", + "class", + "river" + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "waterway_stream_canal", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "in", + "class", + "canal", + "stream" + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.3, + "stops": [ + [ + 13, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "water", + "type": "fill", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "water", + "paint": { + "fill-color": "#193341", + "fill-outline-color": "#193341" + } + }, + { + "id": "aeroway_fill", + "type": "fill", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "==", + "$type", + "Polygon" + ], + "paint": { + "fill-color": "#406D80", + "fill-opacity": 0.7, + "fill-outline-color": "#406D80" + } + }, + { + "id": "aeroway_runway", + "type": "line", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "type", + "runway" + ] + ], + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 3 + ], + [ + 20, + 16 + ] + ] + } + } + }, + { + "id": "aeroway_taxiway", + "type": "line", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "type", + "taxiway" + ] + ], + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "building", + "type": "fill", + "metadata": { + "mapbox:group": "1444849364238.8171" + }, + "source": "mapbox", + "source-layer": "building", + "paint": { + "fill-color": "#2C5A71" + } + }, + { + "id": "building_top", + "metadata": { + "mapbox:group": "1444849364238.8171" + }, + "ref": "building", + "paint": { + "fill-color": "#2C5A71", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 15, + 0 + ], + [ + 16, + 1 + ] + ] + }, + "fill-translate": { + "stops": [ + [ + 15, + [ + 0, + 0 + ] + ], + [ + 16, + [ + -2, + -2 + ] + ] + ], + "base": 1 + }, + "fill-outline-color": "#2C5A71" + } + }, + { + "id": "tunnel_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#194A57", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1 + ], + [ + 16, + 4 + ], + [ + 20, + 11 + ] + ] + } + } + }, + { + "id": "tunnel_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "link" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0.5 + ], + [ + 13, + 1 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": { + "stops": [ + [ + 12, + 0 + ], + [ + 12.5, + 1 + ] + ] + } + } + }, + { + "id": "tunnel_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 8, + 1.5 + ], + [ + 20, + 17 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "tunnel_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#194A57", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "tunnel_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "hsl(30, 0%, 73%)", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "tunnel_motorway_link", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_motorway_link_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "tunnel_service_track", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_service_track_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15.5, + 0 + ], + [ + 16, + 2 + ], + [ + 20, + 7.5 + ] + ] + } + } + }, + { + "id": "tunnel_link", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_link_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "tunnel_street", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_street_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13.5, + 0 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_secondary_tertiary_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 10 + ] + ] + } + } + }, + { + "id": "tunnel_trunk_primary", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_trunk_primary_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "tunnel_motorway", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_motorway_casing", + "paint": { + "line-color": "hsl(35, 0%, 83%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "tunnel_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "major_rail", + "minor_rail" + ] + ], + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "tunnel_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_major_rail", + "paint": { + "line-color": "#194A57", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "road_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 12, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "motorway_link" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": 0 + } + }, + { + "id": "road_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 13, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "link" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-opacity": 0, + "line-width": 0 + } + }, + { + "id": "road_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#194A57", + "line-width": 0, + "line-opacity": 1 + } + }, + { + "id": "road_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 5, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "motorway" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "road_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "hsl(30, 0%, 73%)", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "road_motorway_link", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_motorway_link_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "road_service_track", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_service_track_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13, + 0 + ], + [ + 14, + 1 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "road_link", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_link_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "road_street", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_street_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0 + ], + [ + 14, + 2 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_secondary_tertiary_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 8, + 0.5 + ], + [ + 20, + 13 + ] + ] + } + } + }, + { + "id": "road_trunk_primary", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_trunk_primary_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "road_motorway", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_motorway_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 4, + 0 + ], + [ + 10, + 1 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "road_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "major_rail" + ] + ], + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "road_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_major_rail", + "paint": { + "line-color": "#194A57", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "bridge_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1 + ], + [ + 16, + 4 + ], + [ + 20, + 11 + ] + ] + } + } + }, + { + "id": "bridge_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "link" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0.5 + ], + [ + 13, + 1 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": { + "stops": [ + [ + 12, + 0 + ], + [ + 12.5, + 1 + ] + ] + } + } + }, + { + "id": "bridge_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 8, + 1.5 + ], + [ + 20, + 17 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "bridge_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "bridge_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "hsl(30, 0%, 73%)", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "bridge_motorway_link", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_motorway_link_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "bridge_service_track", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_service_track_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15.5, + 0 + ], + [ + 16, + 2 + ], + [ + 20, + 7.5 + ] + ] + } + } + }, + { + "id": "bridge_link", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_link_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "bridge_street", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_street_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13.5, + 0 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_secondary_tertiary_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 10 + ] + ] + } + } + }, + { + "id": "bridge_trunk_primary", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_trunk_primary_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "bridge_motorway", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_motorway_casing", + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "bridge_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "major_rail" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "paint": { + "line-color": "#194A57", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "bridge_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_major_rail", + "paint": { + "line-color": "#194A57", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_3", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "maritime", + 0 + ], + [ + ">=", + "admin_level", + 3 + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(248, 0%, 64%)", + "line-dasharray": [ + 3, + 1, + 1, + 1 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 0.4 + ], + [ + 5, + 1 + ], + [ + 12, + 3 + ] + ] + } + } + }, + { + "id": "admin_level_2", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "disputed", + 0 + ], + [ + "==", + "maritime", + 0 + ] + ], + "layout": { + "line-join": "round", + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(248, 0%, 64%)", + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_2_disputed", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "disputed", + 1 + ], + [ + "==", + "maritime", + 0 + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(248, 0%, 64%)", + "line-dasharray": [ + 2, + 2 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_3_maritime", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "maritime", + 1 + ], + [ + ">=", + "admin_level", + 3 + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#194A57", + "line-opacity": 0.5, + "line-dasharray": [ + 3, + 1, + 1, + 1 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 0.4 + ], + [ + 5, + 1 + ], + [ + 12, + 3 + ] + ] + } + } + }, + { + "id": "admin_level_2_maritime", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "maritime", + 1 + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#194A57", + "line-opacity": 0.5, + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "water_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849320558.5054" + }, + "source": "mapbox", + "source-layer": "water_label", + "filter": [ + "==", + "$type", + "Point" + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1.5 + } + }, + { + "id": "poi_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 16, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 4 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.5, + "text-halo-width": 1 + } + }, + { + "id": "poi_label_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 15, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 3 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.5, + "text-halo-width": 1 + } + }, + { + "id": "poi_label_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 14, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 2 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.5, + "text-halo-width": 1 + } + }, + { + "id": "rail_station_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "rail_station_label", + "layout": { + "text-size": 12, + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-padding": 2, + "visibility": "visible", + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-field": "{name_en}", + "text-max-width": 9 + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.5, + "text-halo-width": 1 + } + }, + { + "id": "poi_label_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 13, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 1 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.5, + "text-halo-width": 1 + } + }, + { + "id": "airport_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "airport_label", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "in", + "scalerank", + 1, + 2, + 3 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.5, + "text-halo-width": 1 + } + }, + { + "id": "road_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1456163609504.0715" + }, + "source": "mapbox", + "source-layer": "road_label", + "filter": [ + "!=", + "class", + "ferry" + ], + "layout": { + "text-field": "{name_en}", + "text-font": [ + "Open Sans Regular" + ], + "text-size": { + "base": 1, + "stops": [ + [ + 12, + 12 + ], + [ + 16, + 13 + ] + ] + }, + "symbol-placement": "line" + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "road_label_highway_shield", + "type": "symbol", + "metadata": { + "mapbox:group": "1456163609504.0715" + }, + "source": "mapbox", + "source-layer": "road_label", + "minzoom": 8, + "filter": [ + "<=", + "reflen", + 6 + ], + "layout": { + "text-field": "{ref}", + "text-font": [ + "Open Sans Semibold" + ], + "text-size": 11, + "icon-image": "motorway_{reflen}", + "symbol-placement": { + "base": 1, + "stops": [ + [ + 10, + "point" + ], + [ + 11, + "line" + ] + ] + }, + "symbol-spacing": 500, + "text-rotation-alignment": "viewport", + "icon-rotation-alignment": "viewport" + }, + "paint": { + "text-color": "#194A57" + } + }, + { + "id": "place_label_other", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "in", + "type", + "hamlet", + "island", + "islet", + "neighbourhood", + "suburb" + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-transform": "uppercase", + "text-letter-spacing": 0.1, + "text-field": "{name_en}", + "text-max-width": 9, + "text-size": { + "base": 1.2, + "stops": [ + [ + 12, + 10 + ], + [ + 15, + 14 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_village", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "village" + ], + "layout": { + "text-font": [ + "Open Sans Regular" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 10, + 12 + ], + [ + 15, + 22 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_town", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "town" + ], + "layout": { + "text-font": [ + "Open Sans Regular" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 10, + 14 + ], + [ + 15, + 24 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_city", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "city" + ], + "layout": { + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 7, + 14 + ], + [ + 11, + 24 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1.2 + } + }, + { + "id": "marine_label_line_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + ">=", + "labelrank", + 4 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 12 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.75, + "text-halo-width": 0.75 + } + }, + { + "id": "marine_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + ">=", + "labelrank", + 4 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 6, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 12 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.75, + "text-halo-width": 0.75 + } + }, + { + "id": "marine_label_line_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 3 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 14 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.75, + "text-halo-width": 0.75 + } + }, + { + "id": "marine_label_point_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 3 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 14 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.75, + "text-halo-width": 0.75 + } + }, + { + "id": "marine_label_line_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 2 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 14 + ], + [ + 4, + 16 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.75, + "text-halo-width": 0.75 + } + }, + { + "id": "marine_label_point_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 2 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 14 + ], + [ + 4, + 16 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.75, + "text-halo-width": 0.75 + } + }, + { + "id": "marine_label_line_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 1 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 18 + ], + [ + 4, + 22 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.75, + "text-halo-width": 0.75 + } + }, + { + "id": "marine_label_point_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 1 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "text-line-height": 1.6, + "symbol-placement": "point", + "text-offset": [ + 0, + 2.4 + ], + "text-size": { + "stops": [ + [ + 3, + 18 + ], + [ + 4, + 22 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 0.75, + "text-halo-width": 0.75 + } + }, + { + "id": "country_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + ">=", + "scalerank", + 4 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 4, + 11 + ], + [ + 6, + 15 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 1, + "text-halo-width": 2 + } + }, + { + "id": "country_label_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 3 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 7, + 17 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 1, + "text-halo-width": 2 + } + }, + { + "id": "country_label_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 2 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 2, + 11 + ], + [ + 5, + 17 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 1, + "text-halo-width": 2 + } + }, + { + "id": "country_label_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 1 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 1, + 11 + ], + [ + 4, + 17 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 100%)", + "text-halo-blur": 1, + "text-halo-width": 2 + } + } + ] +} diff --git a/map_files/styles/mono-bw.json b/map_files/styles/mono-bw.json new file mode 100755 index 0000000..e0f7d83 --- /dev/null +++ b/map_files/styles/mono-bw.json @@ -0,0 +1,3816 @@ +{ + "version": 8, + "name": "Mono-BW", + "sources": { + "mapbox": { + "url": "mbtiles://planet.mbtiles", + "type": "vector" + } + }, + "sprite": "mono", + "glyphs": "{fontstack}/{range}.pbf", + "metadata": { + "mapbox:autocomposite": true, + "mapbox:type": "template", + "mapbox:groups": { + "1444849364238.8171": { + "name": "Buildings", + "collapsed": true + }, + "1444849354174.1904": { + "name": "Tunnels", + "collapsed": true + }, + "1444849320558.5054": { + "name": "Water labels", + "collapsed": true + }, + "1444849371739.5945": { + "name": "Aeroways", + "collapsed": true + }, + "1444849258897.3083": { + "name": "Marine labels", + "collapsed": true + }, + "1444849388993.3071": { + "name": "Landuse", + "collapsed": true + }, + "1444849242106.713": { + "name": "Country labels", + "collapsed": true + }, + "1444849382550.77": { + "name": "Water", + "collapsed": true + }, + "1444849345966.4436": { + "name": "Roads", + "collapsed": true + }, + "1444849307123.581": { + "name": "Admin lines", + "collapsed": true + }, + "1456163609504.0715": { + "name": "Road labels", + "collapsed": true + }, + "1444849272561.29": { + "name": "Place labels", + "collapsed": true + }, + "1444849334699.1902": { + "name": "Bridges", + "collapsed": true + }, + "1444849297111.495": { + "name": "POI labels", + "collapsed": true + } + } + }, + "layers": [ + { + "id": "background", + "type": "background", + "paint": { + "background-color": "hsl(30, 0%, 91%)" + } + }, + { + "id": "landuse_overlay_national_park", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse_overlay", + "filter": [ + "==", + "class", + "national_park" + ], + "paint": { + "fill-color": "hsl(90, 0%, 85%)", + "fill-opacity": 0.75, + "fill-outline-color": "hsl(90, 0%, 85%)" + } + }, + { + "id": "landuse_park", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "park" + ], + "paint": { + "fill-color": "hsl(84, 0%, 77%)", + "fill-outline-color": "hsl(84, 0%, 77%)" + } + }, + { + "id": "landuse_cemetery", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "cemetery" + ], + "paint": { + "fill-color": "hsl(94, 0%, 88%)", + "fill-outline-color": "hsl(94, 0%, 88%)" + } + }, + { + "id": "landuse_hospital", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "hospital" + ], + "paint": { + "fill-color": "hsl(330, 0%, 94%)", + "fill-outline-color": "hsl(330, 0%, 94%)" + } + }, + { + "id": "landuse_school", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "school" + ], + "paint": { + "fill-color": "hsl(270,0%, 94%)", + "fill-outline-color": "hsl(270, 0%, 94%)" + } + }, + { + "id": "landuse_wood", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "wood" + ], + "paint": { + "fill-color": "hsl(100,0%, 47%)", + "fill-opacity": 0.2, + "fill-outline-color": "hsl(100, 0%, 47%)" + } + }, + { + "id": "waterway", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "all", + [ + "!=", + "class", + "canal" + ], + [ + "!=", + "class", + "river" + ], + [ + "!=", + "class", + "stream" + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(210,0%, 78%)", + "line-width": { + "base": 1.3, + "stops": [ + [ + 13, + 0.5 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "waterway_river", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "==", + "class", + "river" + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(210,0%, 78%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "waterway_stream_canal", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "in", + "class", + "canal", + "stream" + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(210,0%, 78%)", + "line-width": { + "base": 1.3, + "stops": [ + [ + 13, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "water", + "type": "fill", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "water", + "paint": { + "fill-color": "hsl(213, 0%, 82%)", + "fill-outline-color": "hsl(213, 0%, 82%)" + } + }, + { + "id": "aeroway_fill", + "type": "fill", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "==", + "$type", + "Polygon" + ], + "paint": { + "fill-color": "hsl(34, 0%, 93%)", + "fill-opacity": 0.7, + "fill-outline-color": "hsl(34, 0%, 93%)" + } + }, + { + "id": "aeroway_runway", + "type": "line", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "type", + "runway" + ] + ], + "paint": { + "line-color": "hsl(34, 0%, 93%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 3 + ], + [ + 20, + 16 + ] + ] + } + } + }, + { + "id": "aeroway_taxiway", + "type": "line", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "type", + "taxiway" + ] + ], + "paint": { + "line-color": "hsl(34, 0%, 93%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "building", + "type": "fill", + "metadata": { + "mapbox:group": "1444849364238.8171" + }, + "source": "mapbox", + "source-layer": "building", + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [ + 15.5, + "hsl(30, 0%, 92%)" + ], + [ + 16, + "hsl(30, 0%, 85%)" + ] + ] + } + } + }, + { + "id": "building_top", + "metadata": { + "mapbox:group": "1444849364238.8171" + }, + "ref": "building", + "paint": { + "fill-color": "hsl(30, 0%, 92%)", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 15, + 0 + ], + [ + 16, + 1 + ] + ] + }, + "fill-translate": { + "stops": [ + [ + 15, + [ + 0, + 0 + ] + ], + [ + 16, + [ + -2, + -2 + ] + ] + ], + "base": 1 + }, + "fill-outline-color": "hsl(30, 0%, 85%)" + } + }, + { + "id": "tunnel_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(36, 0%, 80%)", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1 + ], + [ + 16, + 4 + ], + [ + 20, + 11 + ] + ] + } + } + }, + { + "id": "tunnel_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "link" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(36, 0%, 80%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0.5 + ], + [ + 13, + 1 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": { + "stops": [ + [ + 12, + 0 + ], + [ + 12.5, + 1 + ] + ] + } + } + }, + { + "id": "tunnel_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 8, + 1.5 + ], + [ + 20, + 17 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "tunnel_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "tunnel_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "hsl(30, 0%, 73%)", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "tunnel_motorway_link", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_motorway_link_casing", + "paint": { + "line-color": "hsl(34, 0%, 77%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "tunnel_service_track", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_service_track_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15.5, + 0 + ], + [ + 16, + 2 + ], + [ + 20, + 7.5 + ] + ] + } + } + }, + { + "id": "tunnel_link", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_link_casing", + "paint": { + "line-color": "hsl(48, 0%, 89%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "tunnel_street", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_street_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13.5, + 0 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_secondary_tertiary_casing", + "paint": { + "line-color": "hsl(48, 0%, 89%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 10 + ] + ] + } + } + }, + { + "id": "tunnel_trunk_primary", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_trunk_primary_casing", + "paint": { + "line-color": "hsl(48, 0%, 89%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "tunnel_motorway", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_motorway_casing", + "paint": { + "line-color": "hsl(35, 0%, 83%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "tunnel_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "major_rail", + "minor_rail" + ] + ], + "paint": { + "line-color": "hsl(0, 0%, 73%)", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "tunnel_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_major_rail", + "paint": { + "line-color": "hsl(0, 0%, 73%)", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "road_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 12, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "motorway_link" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "hsl(36, 0%, 80%)", + "line-width": 0 + } + }, + { + "id": "road_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 13, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "link" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "hsl(36, 0%, 80%)", + "line-opacity": 0, + "line-width": 0 + } + }, + { + "id": "road_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": 0, + "line-opacity": 1 + } + }, + { + "id": "road_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 5, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "motorway" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "road_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "hsl(30, 0%, 73%)", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "road_motorway_link", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_motorway_link_casing", + "paint": { + "line-color": "hsl(34, 0%, 77%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "road_service_track", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_service_track_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13, + 0 + ], + [ + 14, + 1 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "road_link", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_link_casing", + "paint": { + "line-color": "hsl(48, 0%, 84%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "road_street", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_street_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0 + ], + [ + 14, + 2 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_secondary_tertiary_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 8, + 0.5 + ], + [ + 20, + 13 + ] + ] + } + } + }, + { + "id": "road_trunk_primary", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_trunk_primary_casing", + "paint": { + "line-color": "hsl(48, 0%, 84%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "road_motorway", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_motorway_casing", + "paint": { + "line-color": "hsl(34, 0%, 77%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 4, + 0 + ], + [ + 10, + 1 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "road_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "major_rail" + ] + ], + "paint": { + "line-color": "hsl(0, 0%, 73%)", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "road_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_major_rail", + "paint": { + "line-color": "hsl(0, 0%, 73%)", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "bridge_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(36, 0%, 80%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1 + ], + [ + 16, + 4 + ], + [ + 20, + 11 + ] + ] + } + } + }, + { + "id": "bridge_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "link" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(36, 0%, 80%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0.5 + ], + [ + 13, + 1 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": { + "stops": [ + [ + 12, + 0 + ], + [ + 12.5, + 1 + ] + ] + } + } + }, + { + "id": "bridge_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 8, + 1.5 + ], + [ + 20, + 17 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "bridge_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(28, 0%, 69%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "bridge_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "hsl(30, 0%, 73%)", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "bridge_motorway_link", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_motorway_link_casing", + "paint": { + "line-color": "hsl(34, 0%, 77%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "bridge_service_track", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_service_track_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15.5, + 0 + ], + [ + 16, + 2 + ], + [ + 20, + 7.5 + ] + ] + } + } + }, + { + "id": "bridge_link", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_link_casing", + "paint": { + "line-color": "hsl(48, 0%, 84%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "bridge_street", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_street_casing", + "paint": { + "line-color": "hsl(0, 0%, 100%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13.5, + 0 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_secondary_tertiary_casing", + "paint": { + "line-color": "hsl(48, 0%, 84%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 10 + ] + ] + } + } + }, + { + "id": "bridge_trunk_primary", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_trunk_primary_casing", + "paint": { + "line-color": "hsl(48, 0%, 84%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "bridge_motorway", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_motorway_casing", + "paint": { + "line-color": "hsl(34, 0%, 77%)", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "bridge_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "major_rail" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "paint": { + "line-color": "hsl(0, 0%, 73%)", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "bridge_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_major_rail", + "paint": { + "line-color": "hsl(0, 0%, 73%)", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_3", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "maritime", + 0 + ], + [ + ">=", + "admin_level", + 3 + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(248, 0%, 64%)", + "line-dasharray": [ + 3, + 1, + 1, + 1 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 0.4 + ], + [ + 5, + 1 + ], + [ + 12, + 3 + ] + ] + } + } + }, + { + "id": "admin_level_2", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "disputed", + 0 + ], + [ + "==", + "maritime", + 0 + ] + ], + "layout": { + "line-join": "round", + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(248, 0%, 64%)", + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_2_disputed", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "disputed", + 1 + ], + [ + "==", + "maritime", + 0 + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(248, 0%, 64%)", + "line-dasharray": [ + 2, + 2 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_3_maritime", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "maritime", + 1 + ], + [ + ">=", + "admin_level", + 3 + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "hsl(210,0%, 78%)", + "line-opacity": 0.5, + "line-dasharray": [ + 3, + 1, + 1, + 1 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 0.4 + ], + [ + 5, + 1 + ], + [ + 12, + 3 + ] + ] + } + } + }, + { + "id": "admin_level_2_maritime", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "maritime", + 1 + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "hsl(210,0%, 78%)", + "line-opacity": 0.5, + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "water_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849320558.5054" + }, + "source": "mapbox", + "source-layer": "water_label", + "filter": [ + "==", + "$type", + "Point" + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-size": 12 + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-width": 1.5, + "text-halo-color": "hsla(0, 0%, 100%, 0.7)" + } + }, + { + "id": "poi_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 16, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 4 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "poi_label_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 15, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 3 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "poi_label_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 14, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 2 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "rail_station_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "rail_station_label", + "layout": { + "text-size": 12, + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-padding": 2, + "visibility": "visible", + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-field": "{name_en}", + "text-max-width": 9 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "poi_label_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 13, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 1 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "airport_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "airport_label", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "in", + "scalerank", + 1, + 2, + 3 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "road_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1456163609504.0715" + }, + "source": "mapbox", + "source-layer": "road_label", + "filter": [ + "!=", + "class", + "ferry" + ], + "layout": { + "text-field": "{name_en}", + "text-font": [ + "Open Sans Regular" + ], + "text-size": { + "base": 1, + "stops": [ + [ + 12, + 12 + ], + [ + 16, + 13 + ] + ] + }, + "symbol-placement": "line" + }, + "paint": { + "text-color": "hsl(30, 0%, 40%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "road_label_highway_shield", + "type": "symbol", + "metadata": { + "mapbox:group": "1456163609504.0715" + }, + "source": "mapbox", + "source-layer": "road_label", + "minzoom": 8, + "filter": [ + "<=", + "reflen", + 6 + ], + "layout": { + "text-field": "{ref}", + "text-font": [ + "Open Sans Semibold" + ], + "text-size": 11, + "icon-image": "motorway_{reflen}", + "symbol-placement": { + "base": 1, + "stops": [ + [ + 10, + "point" + ], + [ + 11, + "line" + ] + ] + }, + "symbol-spacing": 500, + "text-rotation-alignment": "viewport", + "icon-rotation-alignment": "viewport" + }, + "paint": {} + }, + { + "id": "place_label_other", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "in", + "type", + "hamlet", + "island", + "islet", + "neighbourhood", + "suburb" + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-transform": "uppercase", + "text-letter-spacing": 0.1, + "text-field": "{name_en}", + "text-max-width": 9, + "text-size": { + "base": 1.2, + "stops": [ + [ + 12, + 10 + ], + [ + 15, + 14 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 30%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_village", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "village" + ], + "layout": { + "text-font": [ + "Open Sans Regular" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 10, + 12 + ], + [ + 15, + 22 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 20%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_town", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "town" + ], + "layout": { + "text-font": [ + "Open Sans Regular" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 10, + 14 + ], + [ + 15, + 24 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 20%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_city", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "city" + ], + "layout": { + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 7, + 14 + ], + [ + 11, + 24 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 20%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "marine_label_line_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + ">=", + "labelrank", + 4 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 12 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + ">=", + "labelrank", + 4 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 6, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 12 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_line_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 3 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 14 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_point_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 3 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 14 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_line_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 2 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 14 + ], + [ + 4, + 16 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_point_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 2 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 14 + ], + [ + 4, + 16 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_line_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 1 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 18 + ], + [ + 4, + 22 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_point_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 1 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "text-line-height": 1.6, + "symbol-placement": "point", + "text-offset": [ + 0, + 2.4 + ], + "text-size": { + "stops": [ + [ + 3, + 18 + ], + [ + 4, + 22 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "country_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + ">=", + "scalerank", + 4 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 4, + 11 + ], + [ + 6, + 15 + ] + ] + } + }, + "paint": { + "text-color": "hsl(240, 0%, 24%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + }, + { + "id": "country_label_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 3 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 7, + 17 + ] + ] + } + }, + "paint": { + "text-color": "hsl(240, 0%, 24%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + }, + { + "id": "country_label_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 2 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 2, + 11 + ], + [ + 5, + 17 + ] + ] + } + }, + "paint": { + "text-color": "hsl(240, 0%, 24%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + }, + { + "id": "country_label_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 1 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 1, + 11 + ], + [ + 4, + 17 + ] + ] + } + }, + "paint": { + "text-color": "hsl(240, 0%, 24%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + } + ] +} \ No newline at end of file diff --git a/map_files/styles/mono-chrome.json b/map_files/styles/mono-chrome.json new file mode 100755 index 0000000..de2cf87 --- /dev/null +++ b/map_files/styles/mono-chrome.json @@ -0,0 +1,3802 @@ +{ + "version": 8, + "name": "Mono-Chrome", + "sources": { + "mapbox": { + "url": "mbtiles://planet.mbtiles", + "type": "vector" + } + }, + "sprite": "mono", + "glyphs": "{fontstack}/{range}.pbf", + "metadata": { + "mapbox:autocomposite": true, + "mapbox:type": "template", + "mapbox:groups": { + "1444849364238.8171": { + "name": "Buildings", + "collapsed": true + }, + "1444849354174.1904": { + "name": "Tunnels", + "collapsed": true + }, + "1444849320558.5054": { + "name": "Water labels", + "collapsed": true + }, + "1444849371739.5945": { + "name": "Aeroways", + "collapsed": true + }, + "1444849258897.3083": { + "name": "Marine labels", + "collapsed": true + }, + "1444849388993.3071": { + "name": "Landuse", + "collapsed": true + }, + "1444849242106.713": { + "name": "Country labels", + "collapsed": true + }, + "1444849382550.77": { + "name": "Water", + "collapsed": true + }, + "1444849345966.4436": { + "name": "Roads", + "collapsed": true + }, + "1444849307123.581": { + "name": "Admin lines", + "collapsed": true + }, + "1456163609504.0715": { + "name": "Road labels", + "collapsed": true + }, + "1444849272561.29": { + "name": "Place labels", + "collapsed": true + }, + "1444849334699.1902": { + "name": "Bridges", + "collapsed": true + }, + "1444849297111.495": { + "name": "POI labels", + "collapsed": true + } + } + }, + "layers": [ + { + "id": "background", + "type": "background", + "paint": { + "background-color": "#FFFFFF" + } + }, + { + "id": "landuse_overlay_national_park", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse_overlay", + "filter": [ + "==", + "class", + "national_park" + ], + "paint": { + "fill-opacity": 0.75, + "fill-color": "hsla(0, 0%, 0%, 0)" + } + }, + { + "id": "landuse_park", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "park" + ], + "paint": { + "fill-color": "hsla(0, 0%, 77%, 0)", + "fill-outline-color": "hsla(0, 0%, 77%, 0)" + } + }, + { + "id": "landuse_cemetery", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "cemetery" + ], + "paint": { + "fill-color": "hsla(0, 0%, 88%, 0)", + "fill-outline-color": "hsla(0, 0%, 88%, 0)" + } + }, + { + "id": "landuse_hospital", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "hospital" + ], + "paint": { + "fill-color": "hsla(0, 0%, 94%, 0)", + "fill-outline-color": "hsla(0, 0%, 94%, 0)" + } + }, + { + "id": "landuse_school", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "school" + ], + "paint": { + "fill-color": "hsla(0, 0%, 94%, 0)", + "fill-outline-color": "hsla(0, 0%, 94%, 0)" + } + }, + { + "id": "landuse_wood", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "wood" + ], + "paint": { + "fill-color": "hsla(0, 0%, 47%, 0)", + "fill-opacity": 0.2, + "fill-outline-color": "hsla(0, 0%, 47%, 0)" + } + }, + { + "id": "waterway", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "all", + [ + "!=", + "class", + "canal" + ], + [ + "!=", + "class", + "river" + ], + [ + "!=", + "class", + "stream" + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.3, + "stops": [ + [ + 13, + 0.5 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "waterway_river", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "==", + "class", + "river" + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "waterway_stream_canal", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "in", + "class", + "canal", + "stream" + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.3, + "stops": [ + [ + 13, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "water", + "type": "fill", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "water", + "paint": { + "fill-color": "#EDF0F4", + "fill-outline-color": "#EDF0F4" + } + }, + { + "id": "aeroway_fill", + "type": "fill", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "==", + "$type", + "Polygon" + ], + "paint": { + "fill-outline-color": "hsla(0, 0%, 93%, 0)", + "fill-opacity": 0.7, + "fill-color": "hsla(0, 0%, 0%, 0)" + } + }, + { + "id": "aeroway_runway", + "type": "line", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "type", + "runway" + ] + ], + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 3 + ], + [ + 20, + 16 + ] + ] + } + } + }, + { + "id": "aeroway_taxiway", + "type": "line", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "type", + "taxiway" + ] + ], + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "building", + "type": "fill", + "metadata": { + "mapbox:group": "1444849364238.8171" + }, + "source": "mapbox", + "source-layer": "building", + "paint": { + "fill-color": "hsla(0, 0%, 0%, 0)" + } + }, + { + "id": "building_top", + "metadata": { + "mapbox:group": "1444849364238.8171" + }, + "ref": "building", + "paint": { + "fill-color": "hsla(0, 0%, 92%, 0)", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 15, + 0 + ], + [ + 16, + 1 + ] + ] + }, + "fill-translate": { + "stops": [ + [ + 15, + [ + 0, + 0 + ] + ], + [ + 16, + [ + -2, + -2 + ] + ] + ], + "base": 1 + } + } + }, + { + "id": "tunnel_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#E2E4E6", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1 + ], + [ + 16, + 4 + ], + [ + 20, + 11 + ] + ] + } + } + }, + { + "id": "tunnel_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "link" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0.5 + ], + [ + 13, + 1 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": { + "stops": [ + [ + 12, + 0 + ], + [ + 12.5, + 1 + ] + ] + } + } + }, + { + "id": "tunnel_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 8, + 1.5 + ], + [ + 20, + 17 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "tunnel_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#E2E4E6", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "tunnel_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "#E2E4E6", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "tunnel_motorway_link", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_motorway_link_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "tunnel_service_track", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_service_track_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15.5, + 0 + ], + [ + 16, + 2 + ], + [ + 20, + 7.5 + ] + ] + } + } + }, + { + "id": "tunnel_link", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_link_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "tunnel_street", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_street_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13.5, + 0 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_secondary_tertiary_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 10 + ] + ] + } + } + }, + { + "id": "tunnel_trunk_primary", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_trunk_primary_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "tunnel_motorway", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_motorway_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "tunnel_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "major_rail", + "minor_rail" + ] + ], + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "tunnel_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_major_rail", + "paint": { + "line-color": "#E2E4E6", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "road_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 12, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "motorway_link" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": 0 + } + }, + { + "id": "road_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 13, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "link" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-opacity": 0, + "line-width": 0 + } + }, + { + "id": "road_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": 0, + "line-opacity": 1 + } + }, + { + "id": "road_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 5, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "motorway" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "road_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "#E2E4E6", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "road_motorway_link", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_motorway_link_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "road_service_track", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_service_track_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13, + 0 + ], + [ + 14, + 1 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "road_link", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_link_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "road_street", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_street_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0 + ], + [ + 14, + 2 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_secondary_tertiary_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 8, + 0.5 + ], + [ + 20, + 13 + ] + ] + } + } + }, + { + "id": "road_trunk_primary", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_trunk_primary_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "road_motorway", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_motorway_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 4, + 0 + ], + [ + 10, + 1 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "road_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "major_rail" + ] + ], + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "road_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_major_rail", + "paint": { + "line-color": "#E2E4E6", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "bridge_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1 + ], + [ + 16, + 4 + ], + [ + 20, + 11 + ] + ] + } + } + }, + { + "id": "bridge_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "link" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0.5 + ], + [ + 13, + 1 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": { + "stops": [ + [ + 12, + 0 + ], + [ + 12.5, + 1 + ] + ] + } + } + }, + { + "id": "bridge_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 8, + 1.5 + ], + [ + 20, + 17 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "bridge_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "bridge_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "#E2E4E6", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "bridge_motorway_link", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_motorway_link_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "bridge_service_track", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_service_track_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15.5, + 0 + ], + [ + 16, + 2 + ], + [ + 20, + 7.5 + ] + ] + } + } + }, + { + "id": "bridge_link", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_link_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "bridge_street", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_street_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13.5, + 0 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_secondary_tertiary_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 10 + ] + ] + } + } + }, + { + "id": "bridge_trunk_primary", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_trunk_primary_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "bridge_motorway", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_motorway_casing", + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "bridge_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "major_rail" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "bridge_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_major_rail", + "paint": { + "line-color": "#E2E4E6", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_3", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "maritime", + 0 + ], + [ + ">=", + "admin_level", + 3 + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-dasharray": [ + 3, + 1, + 1, + 1 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 0.4 + ], + [ + 5, + 1 + ], + [ + 12, + 3 + ] + ] + } + } + }, + { + "id": "admin_level_2", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "disputed", + 0 + ], + [ + "==", + "maritime", + 0 + ] + ], + "layout": { + "line-join": "round", + "line-cap": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_2_disputed", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "disputed", + 1 + ], + [ + "==", + "maritime", + 0 + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-dasharray": [ + 2, + 2 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_3_maritime", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "maritime", + 1 + ], + [ + ">=", + "admin_level", + 3 + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-opacity": 0.5, + "line-dasharray": [ + 3, + 1, + 1, + 1 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 0.4 + ], + [ + 5, + 1 + ], + [ + 12, + 3 + ] + ] + } + } + }, + { + "id": "admin_level_2_maritime", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "maritime", + 1 + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#E2E4E6", + "line-opacity": 0.5, + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "water_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849320558.5054" + }, + "source": "mapbox", + "source-layer": "water_label", + "filter": [ + "==", + "$type", + "Point" + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-size": 12 + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-width": 1.5, + "text-halo-color": "hsla(0, 0%, 100%, 0.7)" + } + }, + { + "id": "poi_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 16, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 4 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "poi_label_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 15, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 3 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "poi_label_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 14, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 2 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "rail_station_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "rail_station_label", + "layout": { + "text-size": 12, + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-padding": 2, + "visibility": "visible", + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-field": "{name_en}", + "text-max-width": 9 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "poi_label_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 13, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 1 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "airport_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "airport_label", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "in", + "scalerank", + 1, + 2, + 3 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "hsl(0, 0%, 40%)", + "text-halo-color": "hsl(0, 0%, 100%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "road_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1456163609504.0715" + }, + "source": "mapbox", + "source-layer": "road_label", + "filter": [ + "!=", + "class", + "ferry" + ], + "layout": { + "text-field": "{name_en}", + "text-font": [ + "Open Sans Regular" + ], + "text-size": { + "base": 1, + "stops": [ + [ + 12, + 12 + ], + [ + 16, + 13 + ] + ] + }, + "symbol-placement": "line" + }, + "paint": { + "text-color": "hsl(30, 0%, 40%)", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "road_label_highway_shield", + "type": "symbol", + "metadata": { + "mapbox:group": "1456163609504.0715" + }, + "source": "mapbox", + "source-layer": "road_label", + "minzoom": 8, + "filter": [ + "<=", + "reflen", + 6 + ], + "layout": { + "text-field": "{ref}", + "text-font": [ + "Open Sans Semibold" + ], + "text-size": 11, + "icon-image": "motorway_{reflen}", + "symbol-placement": { + "base": 1, + "stops": [ + [ + 10, + "point" + ], + [ + 11, + "line" + ] + ] + }, + "symbol-spacing": 500, + "text-rotation-alignment": "viewport", + "icon-rotation-alignment": "viewport" + }, + "paint": {} + }, + { + "id": "place_label_other", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "in", + "type", + "hamlet", + "island", + "islet", + "neighbourhood", + "suburb" + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-transform": "uppercase", + "text-letter-spacing": 0.1, + "text-field": "{name_en}", + "text-max-width": 9, + "text-size": { + "base": 1.2, + "stops": [ + [ + 12, + 10 + ], + [ + 15, + 14 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 30%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_village", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "village" + ], + "layout": { + "text-font": [ + "Open Sans Regular" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 10, + 12 + ], + [ + 15, + 22 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 20%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_town", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "town" + ], + "layout": { + "text-font": [ + "Open Sans Regular" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 10, + 14 + ], + [ + 15, + 24 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 20%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_city", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "city" + ], + "layout": { + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 7, + 14 + ], + [ + 11, + 24 + ] + ] + } + }, + "paint": { + "text-color": "hsl(0, 0%, 20%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "marine_label_line_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + ">=", + "labelrank", + 4 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 12 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + ">=", + "labelrank", + 4 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 6, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 12 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_line_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 3 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 14 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_point_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 3 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 14 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_line_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 2 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 14 + ], + [ + 4, + 16 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_point_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 2 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 14 + ], + [ + 4, + 16 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_line_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 1 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 18 + ], + [ + 4, + 22 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_point_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 1 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "text-line-height": 1.6, + "symbol-placement": "point", + "text-offset": [ + 0, + 2.4 + ], + "text-size": { + "stops": [ + [ + 3, + 18 + ], + [ + 4, + 22 + ] + ] + } + }, + "paint": { + "text-color": "hsl(210, 0%, 68%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "country_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + ">=", + "scalerank", + 4 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 4, + 11 + ], + [ + 6, + 15 + ] + ] + } + }, + "paint": { + "text-color": "hsl(240, 0%, 24%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + }, + { + "id": "country_label_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 3 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 7, + 17 + ] + ] + } + }, + "paint": { + "text-color": "hsl(240, 0%, 24%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + }, + { + "id": "country_label_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 2 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 2, + 11 + ], + [ + 5, + 17 + ] + ] + } + }, + "paint": { + "text-color": "hsl(240, 0%, 24%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + }, + { + "id": "country_label_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 1 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 1, + 11 + ], + [ + 4, + 17 + ] + ] + } + }, + "paint": { + "text-color": "hsl(240, 0%, 24%)", + "text-halo-color": "hsla(0, 0%, 100%, 0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + } + ] +} \ No newline at end of file diff --git a/map_files/styles/mono.json b/map_files/styles/mono.json new file mode 100644 index 0000000..c5cecac --- /dev/null +++ b/map_files/styles/mono.json @@ -0,0 +1,3812 @@ +{ + "version": 8, + "name": "Mono", + "sources": { + "mapbox": { + "url": "mbtiles://planet.mbtiles", + "type": "vector" + } + }, + "sprite": "mono", + "glyphs": "{fontstack}/{range}.pbf", + "metadata": { + "mapbox:autocomposite": true, + "mapbox:type": "template", + "mapbox:groups": { + "1444849364238.8171": { + "name": "Buildings", + "collapsed": true + }, + "1444849354174.1904": { + "name": "Tunnels", + "collapsed": true + }, + "1444849320558.5054": { + "name": "Water labels", + "collapsed": true + }, + "1444849371739.5945": { + "name": "Aeroways", + "collapsed": true + }, + "1444849258897.3083": { + "name": "Marine labels", + "collapsed": true + }, + "1444849388993.3071": { + "name": "Landuse", + "collapsed": true + }, + "1444849242106.713": { + "name": "Country labels", + "collapsed": true + }, + "1444849382550.77": { + "name": "Water", + "collapsed": true + }, + "1444849345966.4436": { + "name": "Roads", + "collapsed": true + }, + "1444849307123.581": { + "name": "Admin lines", + "collapsed": true + }, + "1456163609504.0715": { + "name": "Road labels", + "collapsed": true + }, + "1444849272561.29": { + "name": "Place labels", + "collapsed": true + }, + "1444849290021.1838": { + "name": "Road labels", + "collapsed": true + }, + "1444849334699.1902": { + "name": "Bridges", + "collapsed": true + }, + "1444849297111.495": { + "name": "POI labels", + "collapsed": true + } + } + }, + "layers": [ + { + "id": "background", + "type": "background", + "paint": { + "background-color": "#E9E8E7" + } + }, + { + "id": "landuse_overlay_national_park", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse_overlay", + "filter": [ + "==", + "class", + "national_park" + ], + "paint": { + "fill-color": "#d8e8c8", + "fill-opacity": 0.75 + } + }, + { + "id": "waterway", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "all", + [ + "!=", + "class", + "canal" + ], + [ + "!=", + "class", + "river" + ], + [ + "!=", + "class", + "stream" + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#a0c8f0", + "line-width": { + "base": 1.3, + "stops": [ + [ + 13, + 0.5 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "waterway_river", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "==", + "class", + "river" + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#a0c8f0", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "waterway_stream_canal", + "type": "line", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "waterway", + "filter": [ + "in", + "class", + "canal", + "stream" + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#a0c8f0", + "line-width": { + "base": 1.3, + "stops": [ + [ + 13, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "water", + "type": "fill", + "metadata": { + "mapbox:group": "1444849382550.77" + }, + "source": "mapbox", + "source-layer": "water", + "paint": { + "fill-color": "#A5CDFD" + } + }, + { + "id": "landuse_park", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "park" + ], + "paint": { + "fill-color": "#CCE5A6" + } + }, + { + "id": "landuse_cemetery", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "cemetery" + ], + "paint": { + "fill-color": "#e0e4dd" + } + }, + { + "id": "landuse_hospital", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "hospital" + ], + "paint": { + "fill-color": "#fde" + } + }, + { + "id": "landuse_school", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "school" + ], + "paint": { + "fill-color": "#f0e8f8" + } + }, + { + "id": "landuse_wood", + "type": "fill", + "metadata": { + "mapbox:group": "1444849388993.3071" + }, + "source": "mapbox", + "source-layer": "landuse", + "filter": [ + "==", + "class", + "wood" + ], + "paint": { + "fill-color": "#6a4", + "fill-opacity": 0.2 + } + }, + { + "id": "aeroway_fill", + "type": "fill", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "==", + "$type", + "Polygon" + ], + "paint": { + "fill-color": "#f0ede9", + "fill-opacity": 0.7 + } + }, + { + "id": "aeroway_runway", + "type": "line", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "type", + "runway" + ] + ], + "paint": { + "line-color": "#f0ede9", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 3 + ], + [ + 20, + 16 + ] + ] + } + } + }, + { + "id": "aeroway_taxiway", + "type": "line", + "metadata": { + "mapbox:group": "1444849371739.5945" + }, + "source": "mapbox", + "source-layer": "aeroway", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "type", + "taxiway" + ] + ], + "paint": { + "line-color": "#f0ede9", + "line-width": { + "base": 1.2, + "stops": [ + [ + 11, + 0.5 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "building", + "type": "fill", + "metadata": { + "mapbox:group": "1444849364238.8171" + }, + "source": "mapbox", + "source-layer": "building", + "paint": { + "fill-color": { + "base": 1, + "stops": [ + [ + 15.5, + "#f2eae2" + ], + [ + 16, + "#dfdbd7" + ] + ] + } + } + }, + { + "id": "building_top", + "metadata": { + "mapbox:group": "1444849364238.8171" + }, + "ref": "building", + "paint": { + "fill-color": "#f2eae2", + "fill-opacity": { + "base": 1, + "stops": [ + [ + 15, + 0 + ], + [ + 16, + 1 + ] + ] + }, + "fill-translate": { + "stops": [ + [ + 15, + [ + 0, + 0 + ] + ], + [ + 16, + [ + -2, + -2 + ] + ] + ], + "base": 1 + }, + "fill-outline-color": "#dfdbd7" + } + }, + { + "id": "tunnel_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#e9ac77", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#cfcdca", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1 + ], + [ + 16, + 4 + ], + [ + 20, + 11 + ] + ] + } + } + }, + { + "id": "tunnel_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "link" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#e9ac77", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#cfcdca", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0.5 + ], + [ + 13, + 1 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": { + "stops": [ + [ + 12, + 0 + ], + [ + 12.5, + 1 + ] + ] + } + } + }, + { + "id": "tunnel_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#e9ac77", + "line-width": { + "base": 1.2, + "stops": [ + [ + 8, + 1.5 + ], + [ + 20, + 17 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#e9ac77", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "tunnel_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "tunnel" + ] + ], + "layout": { + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#e9ac77", + "line-dasharray": [ + 0.5, + 0.25 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "tunnel_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "#cba", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "tunnel_motorway_link", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_motorway_link_casing", + "paint": { + "line-color": "#fc8", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "tunnel_service_track", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_service_track_casing", + "paint": { + "line-color": "#fff", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15.5, + 0 + ], + [ + 16, + 2 + ], + [ + 20, + 7.5 + ] + ] + } + } + }, + { + "id": "tunnel_link", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_link_casing", + "paint": { + "line-color": "#fff4c6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "tunnel_street", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_street_casing", + "paint": { + "line-color": "#fff", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13.5, + 0 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "tunnel_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_secondary_tertiary_casing", + "paint": { + "line-color": "#fff4c6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 10 + ] + ] + } + } + }, + { + "id": "tunnel_trunk_primary", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_trunk_primary_casing", + "paint": { + "line-color": "#fff4c6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "tunnel_motorway", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_motorway_casing", + "paint": { + "line-color": "#ffdaa6", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "tunnel_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "tunnel" + ], + [ + "in", + "class", + "major_rail", + "minor_rail" + ] + ], + "paint": { + "line-color": "#bbb", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "tunnel_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849354174.1904" + }, + "ref": "tunnel_major_rail", + "paint": { + "line-color": "#bbb", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "road_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 12, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "motorway_link" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "#e9ac77", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "#cfcdca", + "line-width": 0 + } + }, + { + "id": "road_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 13, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "link" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#e9ac77", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round" + }, + "paint": { + "line-color": "#cfcdca", + "line-opacity": 0, + "line-width": 0 + } + }, + { + "id": "road_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#fff", + "line-width": 0, + "line-opacity": 1 + } + }, + { + "id": "road_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#e9ac77", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "minzoom": 5, + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "motorway" + ] + ], + "layout": { + "line-cap": "round", + "line-join": "round", + "visibility": "visible" + }, + "paint": { + "line-color": "#e9ac77", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "road_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "#cba", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "road_motorway_link", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_motorway_link_casing", + "paint": { + "line-color": "#fc8", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "road_service_track", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_service_track_casing", + "paint": { + "line-color": "#fff", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13, + 0 + ], + [ + 14, + 1 + ], + [ + 20, + 6 + ] + ] + } + } + }, + { + "id": "road_link", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_link_casing", + "paint": { + "line-color": "#fea", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "road_street", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_street_casing", + "paint": { + "line-color": "#fff", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0 + ], + [ + 14, + 2 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "road_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_secondary_tertiary_casing", + "paint": { + "line-color": "#fff", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 8, + 0.5 + ], + [ + 20, + 13 + ] + ] + } + } + }, + { + "id": "road_trunk_primary", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_trunk_primary_casing", + "paint": { + "line-color": "#fea", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "road_motorway", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_motorway_casing", + "paint": { + "line-color": "#fc8", + "line-width": { + "base": 1.2, + "stops": [ + [ + 4, + 0 + ], + [ + 10, + 1 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "road_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "!in", + "structure", + "bridge", + "tunnel" + ], + [ + "==", + "class", + "major_rail" + ] + ], + "paint": { + "line-color": "#bbb", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "road_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849345966.4436" + }, + "ref": "road_major_rail", + "paint": { + "line-color": "#bbb", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "bridge_motorway_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway_link" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#e9ac77", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_service_track_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "service", + "track" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#cfcdca", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1 + ], + [ + 16, + 4 + ], + [ + 20, + 11 + ] + ] + } + } + }, + { + "id": "bridge_link_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "link" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#e9ac77", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 1 + ], + [ + 13, + 3 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_street_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "street", + "street_limited" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#cfcdca", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12, + 0.5 + ], + [ + 13, + 1 + ], + [ + 14, + 4 + ], + [ + 20, + 15 + ] + ] + }, + "line-opacity": { + "stops": [ + [ + 12, + 0 + ], + [ + 12.5, + 1 + ] + ] + } + } + }, + { + "id": "bridge_secondary_tertiary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "secondary", + "tertiary" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#e9ac77", + "line-width": { + "base": 1.2, + "stops": [ + [ + 8, + 1.5 + ], + [ + 20, + 17 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_trunk_primary_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "primary", + "trunk" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#e9ac77", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "bridge_motorway_casing", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "motorway" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#e9ac77", + "line-width": { + "base": 1.2, + "stops": [ + [ + 5, + 0.4 + ], + [ + 6, + 0.6 + ], + [ + 7, + 1.5 + ], + [ + 20, + 22 + ] + ] + } + } + }, + { + "id": "bridge_path_pedestrian", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "all", + [ + "==", + "structure", + "bridge" + ], + [ + "in", + "class", + "path", + "pedestrian" + ] + ] + ], + "paint": { + "line-color": "#cba", + "line-dasharray": [ + 1.5, + 0.75 + ], + "line-width": { + "base": 1.2, + "stops": [ + [ + 15, + 1.2 + ], + [ + 20, + 4 + ] + ] + } + } + }, + { + "id": "bridge_motorway_link", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_motorway_link_casing", + "paint": { + "line-color": "#fc8", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "bridge_service_track", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_service_track_casing", + "paint": { + "line-color": "#fff", + "line-width": { + "base": 1.2, + "stops": [ + [ + 15.5, + 0 + ], + [ + 16, + 2 + ], + [ + 20, + 7.5 + ] + ] + } + } + }, + { + "id": "bridge_link", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_link_casing", + "paint": { + "line-color": "#fea", + "line-width": { + "base": 1.2, + "stops": [ + [ + 12.5, + 0 + ], + [ + 13, + 1.5 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + } + } + }, + { + "id": "bridge_street", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_street_casing", + "paint": { + "line-color": "#fff", + "line-width": { + "base": 1.2, + "stops": [ + [ + 13.5, + 0 + ], + [ + 14, + 2.5 + ], + [ + 20, + 11.5 + ] + ] + }, + "line-opacity": 1 + } + }, + { + "id": "bridge_secondary_tertiary", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_secondary_tertiary_casing", + "paint": { + "line-color": "#fea", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 10 + ] + ] + } + } + }, + { + "id": "bridge_trunk_primary", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_trunk_primary_casing", + "paint": { + "line-color": "#fea", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "bridge_motorway", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_motorway_casing", + "paint": { + "line-color": "#fc8", + "line-width": { + "base": 1.2, + "stops": [ + [ + 6.5, + 0 + ], + [ + 7, + 0.5 + ], + [ + 20, + 18 + ] + ] + } + } + }, + { + "id": "bridge_major_rail", + "type": "line", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "source": "mapbox", + "source-layer": "road", + "filter": [ + "all", + [ + "==", + "class", + "major_rail" + ], + [ + "==", + "structure", + "bridge" + ] + ], + "paint": { + "line-color": "#bbb", + "line-width": { + "base": 1.4, + "stops": [ + [ + 14, + 0.4 + ], + [ + 15, + 0.75 + ], + [ + 20, + 2 + ] + ] + } + } + }, + { + "id": "bridge_major_rail_hatching", + "metadata": { + "mapbox:group": "1444849334699.1902" + }, + "ref": "bridge_major_rail", + "paint": { + "line-color": "#bbb", + "line-dasharray": [ + 0.2, + 8 + ], + "line-width": { + "base": 1.4, + "stops": [ + [ + 14.5, + 0 + ], + [ + 15, + 3 + ], + [ + 20, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_3", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "maritime", + 0 + ], + [ + ">=", + "admin_level", + 3 + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#9e9cab", + "line-dasharray": [ + 3, + 1, + 1, + 1 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 0.4 + ], + [ + 5, + 1 + ], + [ + 12, + 3 + ] + ] + } + } + }, + { + "id": "admin_level_2", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "disputed", + 0 + ], + [ + "==", + "maritime", + 0 + ] + ], + "layout": { + "line-join": "round", + "line-cap": "round" + }, + "paint": { + "line-color": "#9e9cab", + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_2_disputed", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "disputed", + 1 + ], + [ + "==", + "maritime", + 0 + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#9e9cab", + "line-dasharray": [ + 2, + 2 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "admin_level_3_maritime", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "maritime", + 1 + ], + [ + ">=", + "admin_level", + 3 + ] + ], + "layout": { + "line-join": "round" + }, + "paint": { + "line-color": "#a0c8f0", + "line-opacity": 0.5, + "line-dasharray": [ + 3, + 1, + 1, + 1 + ], + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 0.4 + ], + [ + 5, + 1 + ], + [ + 12, + 3 + ] + ] + } + } + }, + { + "id": "admin_level_2_maritime", + "type": "line", + "metadata": { + "mapbox:group": "1444849307123.581" + }, + "source": "mapbox", + "source-layer": "admin", + "filter": [ + "all", + [ + "==", + "admin_level", + 2 + ], + [ + "==", + "maritime", + 1 + ] + ], + "layout": { + "line-cap": "round" + }, + "paint": { + "line-color": "#a0c8f0", + "line-opacity": 0.5, + "line-width": { + "base": 1, + "stops": [ + [ + 4, + 1.4 + ], + [ + 5, + 2 + ], + [ + 12, + 8 + ] + ] + } + } + }, + { + "id": "water_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849320558.5054" + }, + "source": "mapbox", + "source-layer": "water_label", + "filter": [ + "==", + "$type", + "Point" + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-size": 12 + }, + "paint": { + "text-color": "#74aee9", + "text-halo-width": 1.5, + "text-halo-color": "rgba(255,255,255,0.7)" + } + }, + { + "id": "poi_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 16, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 4 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "#666", + "text-halo-color": "#ffffff", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "poi_label_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 15, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 3 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "#666", + "text-halo-color": "#ffffff", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "poi_label_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 14, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 2 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "#666", + "text-halo-color": "#ffffff", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "rail_station_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "rail_station_label", + "layout": { + "text-size": 12, + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-padding": 2, + "visibility": "visible", + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-field": "{name_en}", + "text-max-width": 9 + }, + "paint": { + "text-color": "#666", + "text-halo-color": "#ffffff", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "poi_label_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "poi_label", + "minzoom": 13, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "scalerank", + 1 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "#666", + "text-halo-color": "#ffffff", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "airport_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849297111.495" + }, + "source": "mapbox", + "source-layer": "airport_label", + "minzoom": 11, + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "in", + "scalerank", + 1, + 2, + 3 + ] + ], + "layout": { + "icon-image": "{maki}-11", + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 9, + "text-padding": 2, + "text-offset": [ + 0, + 0.6 + ], + "text-anchor": "top", + "text-size": 12 + }, + "paint": { + "text-color": "#666", + "text-halo-color": "#ffffff", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "road_label", + "type": "symbol", + "metadata": { + "mapbox:group": "1456163609504.0715" + }, + "source": "mapbox", + "source-layer": "road_label", + "filter": [ + "!=", + "class", + "ferry" + ], + "layout": { + "text-field": "{name_en}", + "text-font": [ + "Open Sans Regular" + ], + "text-size": { + "base": 1, + "stops": [ + [ + 12, + 12 + ], + [ + 16, + 13 + ] + ] + }, + "symbol-placement": "line" + }, + "paint": { + "text-color": "#765", + "text-halo-width": 1, + "text-halo-blur": 0.5 + } + }, + { + "id": "road_label_highway_shield", + "type": "symbol", + "metadata": { + "mapbox:group": "1456163609504.0715" + }, + "source": "mapbox", + "source-layer": "road_label", + "minzoom": 8, + "filter": [ + "<=", + "reflen", + 6 + ], + "layout": { + "text-field": "{ref}", + "text-font": [ + "Open Sans Semibold" + ], + "text-size": 11, + "icon-image": "motorway_{reflen}", + "symbol-placement": { + "base": 1, + "stops": [ + [ + 10, + "point" + ], + [ + 11, + "line" + ] + ] + }, + "symbol-spacing": 500, + "text-rotation-alignment": "viewport", + "icon-rotation-alignment": "viewport" + }, + "paint": {} + }, + { + "id": "place_label_other", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "in", + "type", + "hamlet", + "island", + "islet", + "neighbourhood", + "suburb" + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-transform": "uppercase", + "text-letter-spacing": 0.1, + "text-field": "{name_en}", + "text-max-width": 9, + "text-size": { + "base": 1.2, + "stops": [ + [ + 12, + 10 + ], + [ + 15, + 14 + ] + ] + } + }, + "paint": { + "text-color": "#633", + "text-halo-color": "rgba(255,255,255,0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_village", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "village" + ], + "layout": { + "text-font": [ + "Open Sans Regular" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 10, + 12 + ], + [ + 15, + 22 + ] + ] + } + }, + "paint": { + "text-color": "#333", + "text-halo-color": "rgba(255,255,255,0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_town", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "town" + ], + "layout": { + "text-font": [ + "Open Sans Regular" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 10, + 14 + ], + [ + 15, + 24 + ] + ] + } + }, + "paint": { + "text-color": "#333", + "text-halo-color": "rgba(255,255,255,0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "place_label_city", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849272561.29" + }, + "source": "mapbox", + "source-layer": "place_label", + "filter": [ + "==", + "type", + "city" + ], + "layout": { + "text-font": [ + "Open Sans Semibold" + ], + "text-field": "{name_en}", + "text-max-width": 8, + "text-size": { + "base": 1.2, + "stops": [ + [ + 7, + 14 + ], + [ + 11, + 24 + ] + ] + } + }, + "paint": { + "text-color": "#333", + "text-halo-color": "rgba(255,255,255,0.8)", + "text-halo-width": 1.2 + } + }, + { + "id": "marine_label_line_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + ">=", + "labelrank", + 4 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 12 + ] + ] + } + }, + "paint": { + "text-color": "#74aee9", + "text-halo-color": "rgba(255,255,255,0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + ">=", + "labelrank", + 4 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 6, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 12 + ] + ] + } + }, + "paint": { + "text-color": "#74aee9", + "text-halo-color": "rgba(255,255,255,0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_line_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 3 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 14 + ] + ] + } + }, + "paint": { + "text-color": "#74aee9", + "text-halo-color": "rgba(255,255,255,0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_point_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 3 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 4, + 14 + ] + ] + } + }, + "paint": { + "text-color": "#74aee9", + "text-halo-color": "rgba(255,255,255,0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_line_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 2 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 14 + ], + [ + 4, + 16 + ] + ] + } + }, + "paint": { + "text-color": "#74aee9", + "text-halo-color": "rgba(255,255,255,0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_point_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 2 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "symbol-placement": "point", + "text-size": { + "stops": [ + [ + 3, + 14 + ], + [ + 4, + 16 + ] + ] + } + }, + "paint": { + "text-color": "#74aee9", + "text-halo-color": "rgba(255,255,255,0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_line_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "LineString" + ], + [ + "==", + "labelrank", + 1 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-letter-spacing": 0.2, + "symbol-placement": "line", + "text-size": { + "stops": [ + [ + 3, + 18 + ], + [ + 4, + 22 + ] + ] + } + }, + "paint": { + "text-color": "#74aee9", + "text-halo-color": "rgba(255,255,255,0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "marine_label_point_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849258897.3083" + }, + "source": "mapbox", + "source-layer": "marine_label", + "filter": [ + "all", + [ + "==", + "$type", + "Point" + ], + [ + "==", + "labelrank", + 1 + ] + ], + "layout": { + "text-font": [ + "Open Sans Italic" + ], + "text-field": "{name_en}", + "text-max-width": 5, + "text-letter-spacing": 0.2, + "text-line-height": 1.6, + "symbol-placement": "point", + "text-offset": [ + 0, + 2.4 + ], + "text-size": { + "stops": [ + [ + 3, + 18 + ], + [ + 4, + 22 + ] + ] + } + }, + "paint": { + "text-color": "#74aee9", + "text-halo-color": "rgba(255,255,255,0.7)", + "text-halo-width": 0.75, + "text-halo-blur": 0.75 + } + }, + { + "id": "country_label_4", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + ">=", + "scalerank", + 4 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 4, + 11 + ], + [ + 6, + 15 + ] + ] + } + }, + "paint": { + "text-color": "#334", + "text-halo-color": "rgba(255,255,255,0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + }, + { + "id": "country_label_3", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 3 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 3, + 11 + ], + [ + 7, + 17 + ] + ] + } + }, + "paint": { + "text-color": "#334", + "text-halo-color": "rgba(255,255,255,0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + }, + { + "id": "country_label_2", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 2 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 2, + 11 + ], + [ + 5, + 17 + ] + ] + } + }, + "paint": { + "text-color": "#334", + "text-halo-color": "rgba(255,255,255,0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + }, + { + "id": "country_label_1", + "type": "symbol", + "metadata": { + "mapbox:group": "1444849242106.713" + }, + "source": "mapbox", + "source-layer": "country_label", + "filter": [ + "==", + "scalerank", + 1 + ], + "layout": { + "text-font": [ + "Open Sans Bold" + ], + "text-field": "{name_en}", + "text-max-width": 6.25, + "text-transform": "uppercase", + "text-size": { + "stops": [ + [ + 1, + 11 + ], + [ + 4, + 17 + ] + ] + } + }, + "paint": { + "text-color": "#334", + "text-halo-color": "rgba(255,255,255,0.8)", + "text-halo-width": 2, + "text-halo-blur": 1 + } + } + ] +}