-
Notifications
You must be signed in to change notification settings - Fork 110
Mona Sans Display styles and Mona Sans Mono #93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 11 commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
0dd1d50
New exports, added folders
kylewaynebenson 0359ee8
Update .github/workflows/release.yml
kylewaynebenson 12ae30f
Update .github/workflows/release.yml
kylewaynebenson a2d5eac
Update .github/workflows/release.yml
kylewaynebenson 22d4188
Removing the build files
kylewaynebenson 2178d34
Delete MonaSans[ital,wdth,wght].woff2
kylewaynebenson a4826d7
Remove Python setup and dependencies from release.yml
kylewaynebenson 4219b93
Update release.yml
kylewaynebenson b2e20db
Initial commit of sources for adding OPSZ and mono styles to the desi…
kylewaynebenson b6eafe5
Fixing intermediate layers, updating ligatures to component build
kylewaynebenson 097a077
Adding VF exports for mono
kylewaynebenson 2756e4f
Update .github/workflows/release.yml
kylewaynebenson b1b972d
Adjusting opsz range up to 8
kylewaynebenson de970b1
Switching OPSZ value to 20 on the standard styles.
kylewaynebenson 6ec85b6
Removing autosaved glyphs file
kylewaynebenson 9e44cee
Dialing in optical size changes
kylewaynebenson e1130eb
Readme updates
kylewaynebenson c4b79dc
New builds of all fonts
kylewaynebenson 9ee84ae
Redesigning circle figures and dnom, etc, to be mono
kylewaynebenson 4bae99c
Switching source name to Display so we can keep google fonts build un…
kylewaynebenson c0382cd
Restoring last MonaSans.glyphs so the googlefonts build still works
kylewaynebenson a89ce47
Update .github/workflows/release.yml
kylewaynebenson 49a9583
Updated mono to remove extra axis
kylewaynebenson 2229977
Update README.md
kylewaynebenson 064025d
Update README.md
kylewaynebenson File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,137 @@ | ||
| name: Create Release | ||
| # Release workflow for Mona Sans | ||
|
|
||
| on: | ||
| push: | ||
| tags: | ||
| - 'v*.*' # Matches tags like v1.300, etc. | ||
| workflow_dispatch: | ||
| inputs: | ||
| version: | ||
| description: 'Version for testing (e.g., "test-1.4" or "dev-2024-01-01")' | ||
| required: true | ||
| default: 'test-1.4' | ||
| type: string | ||
|
|
||
| permissions: | ||
| contents: write # Required to create releases and upload assets | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 # Full history for proper release notes | ||
|
|
||
| - name: Extract version from tag or input | ||
| id: version | ||
| run: | | ||
| if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then | ||
| VERSION="${{ github.event.inputs.version }}" | ||
| if [[ "$VERSION" == v* ]]; then | ||
| TAG="$VERSION" | ||
| else | ||
| TAG="v$VERSION" | ||
| fi | ||
| echo "version=${VERSION}" >> $GITHUB_OUTPUT | ||
| echo "tag=${TAG}" >> $GITHUB_OUTPUT | ||
| else | ||
| VERSION=${GITHUB_REF#refs/tags/v} | ||
| echo "version=${VERSION}" >> $GITHUB_OUTPUT | ||
| echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | ||
| fi | ||
|
|
||
| - name: Build fonts | ||
| run: | | ||
| cd sources | ||
| bash build.sh | ||
| cd .. | ||
| env: | ||
| FB_CONTINUE_ON_ERROR: true | ||
|
|
||
| - name: Prepare release artifacts | ||
| run: | | ||
| mkdir -p release-artifacts | ||
|
|
||
| # Create static fonts package (OTF + TTF) | ||
| zip -r "release-artifacts/mona-sans-static-v${{ steps.version.outputs.version }}.zip" \ | ||
| fonts/static/ OFL.txt README.md | ||
|
|
||
| # Create variable fonts package | ||
| zip -r "release-artifacts/mona-sans-variable-v${{ steps.version.outputs.version }}.zip" \ | ||
| fonts/variable/ OFL.txt README.md | ||
|
|
||
| # Create webfonts package | ||
| if [ -d "fonts/webfonts" ]; then | ||
| zip -r "release-artifacts/mona-sans-webfonts-v${{ steps.version.outputs.version }}.zip" \ | ||
| fonts/webfonts/ OFL.txt README.md | ||
| fi | ||
|
|
||
| # Create complete package with all formats | ||
| zip -r "release-artifacts/mona-sans-complete-v${{ steps.version.outputs.version }}.zip" \ | ||
| fonts/ -x "fonts/googlefonts/*" \ | ||
|
kylewaynebenson marked this conversation as resolved.
Outdated
|
||
| OFL.txt README.md | ||
|
|
||
| - name: Create release notes | ||
| id: release_notes | ||
| run: | | ||
| cat > release_notes.md << 'EOF' | ||
| # Mona Sans ${{ steps.version.outputs.tag }} | ||
|
|
||
| A versatile typeface, designed by GitHub together with Degarism and inspired by industrial-era grotesques. Mona Sans works well across product, web, and print. | ||
|
|
||
| ## Font Packages | ||
|
|
||
| - **Static Fonts** - Individual OTF and TTF files for each weight, width, and style | ||
| - **Variable Fonts** - Modern variable font files with adjustable weight and width | ||
| - **Web Fonts** - WOFF/WOFF2 files optimized for web use | ||
| - **Complete Package** - All font formats in one download | ||
|
|
||
| See the [README](https://github.com/github/mona-sans#readme) for detailed installation instructions. | ||
|
|
||
| ## Font Specifications | ||
|
|
||
| - **Weight Range**: 100-900 (Thin to Black) | ||
|
kylewaynebenson marked this conversation as resolved.
Outdated
|
||
| - **Width Range**: 75-125 (Condensed to Expanded) | ||
| - **Styles**: Roman and Italic | ||
| - **Format Support**: OTF, TTF, Variable TTF, WOFF, WOFF2 | ||
| EOF | ||
|
|
||
| - name: Create draft release with assets | ||
| uses: softprops/action-gh-release@v2 | ||
| with: | ||
| tag_name: ${{ steps.version.outputs.tag }} | ||
| name: Mona Sans ${{ steps.version.outputs.tag }} | ||
| body_path: release_notes.md | ||
| draft: true | ||
| prerelease: false | ||
| files: | | ||
| release-artifacts/mona-sans-static-v${{ steps.version.outputs.version }}.zip | ||
| release-artifacts/mona-sans-variable-v${{ steps.version.outputs.version }}.zip | ||
| release-artifacts/mona-sans-webfonts-v${{ steps.version.outputs.version }}.zip | ||
| release-artifacts/mona-sans-complete-v${{ steps.version.outputs.version }}.zip | ||
|
|
||
| - name: Upload build artifacts | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: mona-sans-fonts-v${{ steps.version.outputs.version }} | ||
| path: fonts/ | ||
|
|
||
| - name: Summary | ||
| run: | | ||
| echo "## Release Summary" >> $GITHUB_STEP_SUMMARY | ||
| echo "Created draft release: **Mona Sans ${{ steps.version.outputs.tag }}**" >> $GITHUB_STEP_SUMMARY | ||
| echo "" >> $GITHUB_STEP_SUMMARY | ||
| echo "### Uploaded Assets:" >> $GITHUB_STEP_SUMMARY | ||
| find release-artifacts -maxdepth 1 -name '*.zip' -print0 | while IFS= read -r -d '' file; do | ||
| filename=$(basename "$file") | ||
| size=$(stat -c %s "$file") | ||
| # Convert size in bytes to human-readable format | ||
| hr_size=$(numfmt --to=iec-i --suffix=B "$size") | ||
| echo "- $filename ($hr_size)" >> $GITHUB_STEP_SUMMARY | ||
| done | ||
| echo "" >> $GITHUB_STEP_SUMMARY | ||
| echo "🔗 **[View Draft Release](https://github.com/${{ github.repository }}/releases/tag/${{ steps.version.outputs.tag }})**" >> $GITHUB_STEP_SUMMARY | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,7 @@ | ||
| .DS_Store | ||
| *).glyphs | ||
| *).glyphs | ||
|
|
||
| # Ignore ninja and ufo build files | ||
| sources/instance_ufos | ||
| sources/.ninja_log | ||
| sources/build.ninja |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,55 @@ | ||
| Starting Mona Sans Google Fonts build process... | ||
| /Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 | ||
| warnings.warn( | ||
| [1/841] buildVariable | ||
| FAILED: /var/folders/c8/prxw74zj4qsczvrt0l8cjm7w0000gn/T/tmp4eaghyil | ||
| /Library/Developer/CommandLineTools/usr/bin/python3 -m gftools.builder.jobrunner fontmake --output-path /var/folders/c8/prxw74zj4qsczvrt0l8cjm7w0000gn/T/tmp4eaghyil -o variable -g MonaSans.glyphspackage --filter ... --filter FlattenComponentsFilter --filter DecomposeTransformedComponentsFilter | ||
| /Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 | ||
| warnings.warn( | ||
|
|
||
| Command failed: | ||
| fontmake --output-path /var/folders/c8/prxw74zj4qsczvrt0l8cjm7w0000gn/T/tmp4eaghyil -o variable -g MonaSans.glyphspackage --filter ... --filter FlattenComponentsFilter --filter DecomposeTransformedComponentsFilter | ||
|
|
||
| INFO:fontmake.font_project:Building master UFOs and designspace from Glyphs source | ||
| INFO:glyphsLib.parser:Parsing .glyphs file | ||
| INFO:glyphsLib.builder:Running 'propagate_all_anchors' transformation | ||
| INFO:fontmake.font_project:Loading 36 DesignSpace source UFOs | ||
| fontmake: Error: In 'MonaSans.glyphspackage' -> 'master_ufo/MonaSans.designspace': can't specify output path because there are several VFs to build | ||
|
|
||
| [2/841] instantiateUfo | ||
| /Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 | ||
| warnings.warn( | ||
| fontmake -i Mona Sans Display ExtraLight -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos | ||
| [3/841] instantiateUfo | ||
| /Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 | ||
| warnings.warn( | ||
| fontmake -i Mona Sans Display Light -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos | ||
| [4/841] instantiateUfo | ||
| /Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 | ||
| warnings.warn( | ||
| fontmake -i Mona Sans Display SemiCondensed Black -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos | ||
| [5/841] instantiateUfo | ||
| /Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 | ||
| warnings.warn( | ||
| fontmake -i Mona Sans Display SemiCondensed Regular -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos | ||
| [6/841] instantiateUfo | ||
| /Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 | ||
| warnings.warn( | ||
| fontmake -i Mona Sans Display SemiCondensed ExtraBold -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos | ||
| [7/841] instantiateUfo | ||
| /Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 | ||
| warnings.warn( | ||
| fontmake -i Mona Sans Display SemiCondensed Light -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos | ||
| [8/841] instantiateUfo | ||
| /Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 | ||
| warnings.warn( | ||
| fontmake -i Mona Sans Display SemiCondensed Medium -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos | ||
| [9/841] instantiateUfo | ||
| /Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 | ||
| warnings.warn( | ||
| fontmake -i Mona Sans Display SemiCondensed SemiBold -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos | ||
| [10/841] instantiateUfo | ||
| /Users/kylebenson/Library/Python/3.9/lib/python/site-packages/urllib3/__init__.py:35: NotOpenSSLWarning: urllib3 v2 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 | ||
| warnings.warn( | ||
| fontmake -i Mona Sans Display SemiCondensed Bold -o ufo -g MonaSans.glyphspackage --ufo-structure=json --instance-dir instance_ufos | ||
| ninja: build stopped: subcommand failed. |
Binary file renamed
BIN
+352 KB
...s/variable/MonaSans-Italic[wdth,wght].ttf → ...ooglefonts/MonaSans-Italic[wdth,wght].ttf
Binary file not shown.
Binary file renamed
BIN
+341 KB
fonts/variable/MonaSans[wdth,wght].ttf → fonts/googlefonts/MonaSans[wdth,wght].ttf
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+87.1 KB
fonts/otf/MonaSans-BlackItalic.otf → fonts/static/otf/MonaSans-BlackItalic.otf
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+92.3 KB
fonts/otf/MonaSans-BoldItalic.otf → fonts/static/otf/MonaSans-BoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+88.9 KB
fonts/otf/MonaSans-ExtraBold.otf → fonts/static/otf/MonaSans-ExtraBold.otf
Binary file not shown.
Binary file renamed
BIN
+92.5 KB
fonts/otf/MonaSans-ExtraBoldItalic.otf → ...s/static/otf/MonaSans-ExtraBoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+85.4 KB
fonts/otf/MonaSans-ExtraLight.otf → fonts/static/otf/MonaSans-ExtraLight.otf
Binary file not shown.
Binary file renamed
BIN
+87.6 KB
fonts/otf/MonaSans-ExtraLightItalic.otf → .../static/otf/MonaSans-ExtraLightItalic.otf
Binary file not shown.
Binary file renamed
BIN
+91.5 KB
fonts/otf/MonaSans-Italic.otf → fonts/static/otf/MonaSans-Italic.otf
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+92.1 KB
fonts/otf/MonaSans-LightItalic.otf → fonts/static/otf/MonaSans-LightItalic.otf
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+92.1 KB
fonts/otf/MonaSans-MediumItalic.otf → fonts/static/otf/MonaSans-MediumItalic.otf
Binary file not shown.
Binary file renamed
BIN
+88.9 KB
fonts/otf/MonaSans-Regular.otf → fonts/static/otf/MonaSans-Regular.otf
Binary file not shown.
Binary file renamed
BIN
+89.5 KB
fonts/otf/MonaSans-SemiBold.otf → fonts/static/otf/MonaSans-SemiBold.otf
Binary file not shown.
Binary file renamed
BIN
+92.4 KB
fonts/otf/MonaSans-SemiBoldItalic.otf → fonts/static/otf/MonaSans-SemiBoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+84.7 KB
fonts/otf/MonaSansCondensed-Black.otf → fonts/static/otf/MonaSansCondensed-Black.otf
Binary file not shown.
Binary file renamed
BIN
+87.9 KB
fonts/otf/MonaSansCondensed-BlackItalic.otf → ...tic/otf/MonaSansCondensed-BlackItalic.otf
Binary file not shown.
Binary file renamed
BIN
+88 KB
fonts/otf/MonaSansCondensed-Bold.otf → fonts/static/otf/MonaSansCondensed-Bold.otf
Binary file not shown.
Binary file renamed
BIN
+92.2 KB
fonts/otf/MonaSansCondensed-BoldItalic.otf → ...atic/otf/MonaSansCondensed-BoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+88.7 KB
fonts/otf/MonaSansCondensed-ExtraBold.otf → ...tatic/otf/MonaSansCondensed-ExtraBold.otf
Binary file not shown.
Binary file renamed
BIN
+92.9 KB
...otf/MonaSansCondensed-ExtraBoldItalic.otf → ...otf/MonaSansCondensed-ExtraBoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+84.2 KB
fonts/otf/MonaSansCondensed-ExtraLight.otf → ...atic/otf/MonaSansCondensed-ExtraLight.otf
Binary file not shown.
Binary file renamed
BIN
+87.4 KB
...tf/MonaSansCondensed-ExtraLightItalic.otf → ...tf/MonaSansCondensed-ExtraLightItalic.otf
Binary file not shown.
Binary file renamed
BIN
+91.9 KB
fonts/otf/MonaSansCondensed-Italic.otf → ...s/static/otf/MonaSansCondensed-Italic.otf
Binary file not shown.
Binary file renamed
BIN
+88.6 KB
fonts/otf/MonaSansCondensed-Light.otf → fonts/static/otf/MonaSansCondensed-Light.otf
Binary file not shown.
Binary file renamed
BIN
+92.9 KB
fonts/otf/MonaSansCondensed-LightItalic.otf → ...tic/otf/MonaSansCondensed-LightItalic.otf
Binary file not shown.
Binary file renamed
BIN
+88.2 KB
fonts/otf/MonaSansCondensed-Medium.otf → ...s/static/otf/MonaSansCondensed-Medium.otf
Binary file not shown.
Binary file renamed
BIN
+92.3 KB
fonts/otf/MonaSansCondensed-MediumItalic.otf → ...ic/otf/MonaSansCondensed-MediumItalic.otf
Binary file not shown.
Binary file renamed
BIN
+87.8 KB
fonts/otf/MonaSansCondensed-Regular.otf → .../static/otf/MonaSansCondensed-Regular.otf
Binary file not shown.
Binary file renamed
BIN
+88.5 KB
fonts/otf/MonaSansCondensed-SemiBold.otf → ...static/otf/MonaSansCondensed-SemiBold.otf
Binary file not shown.
Binary file renamed
BIN
+92.5 KB
.../otf/MonaSansCondensed-SemiBoldItalic.otf → .../otf/MonaSansCondensed-SemiBoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+85.2 KB
fonts/otf/MonaSansExpanded-Black.otf → fonts/static/otf/MonaSansExpanded-Black.otf
Binary file not shown.
Binary file renamed
BIN
+87.4 KB
fonts/otf/MonaSansExpanded-BlackItalic.otf → ...atic/otf/MonaSansExpanded-BlackItalic.otf
Binary file not shown.
Binary file renamed
BIN
+89.7 KB
fonts/otf/MonaSansExpanded-Bold.otf → fonts/static/otf/MonaSansExpanded-Bold.otf
Binary file not shown.
Binary file renamed
BIN
+93.3 KB
fonts/otf/MonaSansExpanded-BoldItalic.otf → ...tatic/otf/MonaSansExpanded-BoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+89.5 KB
fonts/otf/MonaSansExpanded-ExtraBold.otf → ...static/otf/MonaSansExpanded-ExtraBold.otf
Binary file not shown.
Binary file renamed
BIN
+92.7 KB
.../otf/MonaSansExpanded-ExtraBoldItalic.otf → .../otf/MonaSansExpanded-ExtraBoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+85.7 KB
fonts/otf/MonaSansExpanded-ExtraLight.otf → ...tatic/otf/MonaSansExpanded-ExtraLight.otf
Binary file not shown.
Binary file renamed
BIN
+88 KB
...otf/MonaSansExpanded-ExtraLightItalic.otf → ...otf/MonaSansExpanded-ExtraLightItalic.otf
Binary file not shown.
Binary file renamed
BIN
+92.8 KB
fonts/otf/MonaSansExpanded-Italic.otf → fonts/static/otf/MonaSansExpanded-Italic.otf
Binary file not shown.
Binary file renamed
BIN
+89.2 KB
fonts/otf/MonaSansExpanded-Light.otf → fonts/static/otf/MonaSansExpanded-Light.otf
Binary file not shown.
Binary file renamed
BIN
+92.8 KB
fonts/otf/MonaSansExpanded-LightItalic.otf → ...atic/otf/MonaSansExpanded-LightItalic.otf
Binary file not shown.
Binary file renamed
BIN
+90.4 KB
fonts/otf/MonaSansExpanded-Medium.otf → fonts/static/otf/MonaSansExpanded-Medium.otf
Binary file not shown.
Binary file renamed
BIN
+93.1 KB
fonts/otf/MonaSansExpanded-MediumItalic.otf → ...tic/otf/MonaSansExpanded-MediumItalic.otf
Binary file not shown.
Binary file renamed
BIN
+89.9 KB
fonts/otf/MonaSansExpanded-Regular.otf → ...s/static/otf/MonaSansExpanded-Regular.otf
Binary file not shown.
Binary file renamed
BIN
+90.4 KB
fonts/otf/MonaSansExpanded-SemiBold.otf → .../static/otf/MonaSansExpanded-SemiBold.otf
Binary file not shown.
Binary file renamed
BIN
+93.3 KB
...s/otf/MonaSansExpanded-SemiBoldItalic.otf → ...c/otf/MonaSansExpanded-SemiBoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+87 KB
fonts/otf/MonaSansSemiCondensed-Black.otf → ...tatic/otf/MonaSansSemiCondensed-Black.otf
Binary file not shown.
Binary file renamed
BIN
+90.8 KB
...otf/MonaSansSemiCondensed-BlackItalic.otf → ...otf/MonaSansSemiCondensed-BlackItalic.otf
Binary file not shown.
Binary file renamed
BIN
+89.6 KB
fonts/otf/MonaSansSemiCondensed-Bold.otf → ...static/otf/MonaSansSemiCondensed-Bold.otf
Binary file not shown.
Binary file renamed
BIN
+93 KB
.../otf/MonaSansSemiCondensed-BoldItalic.otf → .../otf/MonaSansSemiCondensed-BoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+89.8 KB
...s/otf/MonaSansSemiCondensed-ExtraBold.otf → ...c/otf/MonaSansSemiCondensed-ExtraBold.otf
Binary file not shown.
Binary file renamed
BIN
+93.8 KB
...MonaSansSemiCondensed-ExtraBoldItalic.otf → ...MonaSansSemiCondensed-ExtraBoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+87.5 KB
.../otf/MonaSansSemiCondensed-ExtraLight.otf → .../otf/MonaSansSemiCondensed-ExtraLight.otf
Binary file not shown.
Binary file renamed
BIN
+90.9 KB
...onaSansSemiCondensed-ExtraLightItalic.otf → ...onaSansSemiCondensed-ExtraLightItalic.otf
Binary file not shown.
Binary file renamed
BIN
+93 KB
fonts/otf/MonaSansSemiCondensed-Italic.otf → ...atic/otf/MonaSansSemiCondensed-Italic.otf
Binary file not shown.
Binary file renamed
BIN
+89.4 KB
fonts/otf/MonaSansSemiCondensed-Light.otf → ...tatic/otf/MonaSansSemiCondensed-Light.otf
Binary file not shown.
Binary file renamed
BIN
+93.1 KB
...otf/MonaSansSemiCondensed-LightItalic.otf → ...otf/MonaSansSemiCondensed-LightItalic.otf
Binary file not shown.
Binary file renamed
BIN
+89.7 KB
fonts/otf/MonaSansSemiCondensed-Medium.otf → ...atic/otf/MonaSansSemiCondensed-Medium.otf
Binary file not shown.
Binary file renamed
BIN
+93.3 KB
...tf/MonaSansSemiCondensed-MediumItalic.otf → ...tf/MonaSansSemiCondensed-MediumItalic.otf
Binary file not shown.
Binary file renamed
BIN
+89.3 KB
fonts/otf/MonaSansSemiCondensed-Regular.otf → ...tic/otf/MonaSansSemiCondensed-Regular.otf
Binary file not shown.
Binary file renamed
BIN
+89.4 KB
fonts/otf/MonaSansSemiCondensed-SemiBold.otf → ...ic/otf/MonaSansSemiCondensed-SemiBold.otf
Binary file not shown.
Binary file renamed
BIN
+93.4 KB
.../MonaSansSemiCondensed-SemiBoldItalic.otf → .../MonaSansSemiCondensed-SemiBoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+87.5 KB
fonts/otf/MonaSansSemiExpanded-Black.otf → ...static/otf/MonaSansSemiExpanded-Black.otf
Binary file not shown.
Binary file renamed
BIN
+90.3 KB
.../otf/MonaSansSemiExpanded-BlackItalic.otf → .../otf/MonaSansSemiExpanded-BlackItalic.otf
Binary file not shown.
Binary file renamed
BIN
+90.4 KB
fonts/otf/MonaSansSemiExpanded-Bold.otf → .../static/otf/MonaSansSemiExpanded-Bold.otf
Binary file not shown.
Binary file renamed
BIN
+93.1 KB
...s/otf/MonaSansSemiExpanded-BoldItalic.otf → ...c/otf/MonaSansSemiExpanded-BoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+90.4 KB
fonts/otf/MonaSansSemiExpanded-ExtraBold.otf → ...ic/otf/MonaSansSemiExpanded-ExtraBold.otf
Binary file not shown.
Binary file renamed
BIN
+93.6 KB
.../MonaSansSemiExpanded-ExtraBoldItalic.otf → .../MonaSansSemiExpanded-ExtraBoldItalic.otf
Binary file not shown.
Binary file renamed
BIN
+87.1 KB
...s/otf/MonaSansSemiExpanded-ExtraLight.otf → ...c/otf/MonaSansSemiExpanded-ExtraLight.otf
Binary file not shown.
Binary file renamed
BIN
+90.7 KB
...MonaSansSemiExpanded-ExtraLightItalic.otf → ...MonaSansSemiExpanded-ExtraLightItalic.otf
Binary file not shown.
Binary file renamed
BIN
+93.1 KB
fonts/otf/MonaSansSemiExpanded-Italic.otf → ...tatic/otf/MonaSansSemiExpanded-Italic.otf
Binary file not shown.
Binary file renamed
BIN
+90 KB
fonts/otf/MonaSansSemiExpanded-Light.otf → ...static/otf/MonaSansSemiExpanded-Light.otf
Binary file not shown.
Binary file renamed
BIN
+93.6 KB
.../otf/MonaSansSemiExpanded-LightItalic.otf → .../otf/MonaSansSemiExpanded-LightItalic.otf
Binary file not shown.
Binary file renamed
BIN
+90.2 KB
fonts/otf/MonaSansSemiExpanded-Medium.otf → ...tatic/otf/MonaSansSemiExpanded-Medium.otf
Binary file not shown.
Binary file renamed
BIN
+93.6 KB
...otf/MonaSansSemiExpanded-MediumItalic.otf → ...otf/MonaSansSemiExpanded-MediumItalic.otf
Binary file not shown.
Binary file renamed
BIN
+90 KB
fonts/otf/MonaSansSemiExpanded-Regular.otf → ...atic/otf/MonaSansSemiExpanded-Regular.otf
Binary file not shown.
Binary file renamed
BIN
+90.4 KB
fonts/otf/MonaSansSemiExpanded-SemiBold.otf → ...tic/otf/MonaSansSemiExpanded-SemiBold.otf
Binary file not shown.
Binary file renamed
BIN
+93.8 KB
...f/MonaSansSemiExpanded-SemiBoldItalic.otf → ...f/MonaSansSemiExpanded-SemiBoldItalic.otf
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+128 KB
fonts/ttf/MonaSans-BlackItalic.ttf → fonts/static/ttf/MonaSans-BlackItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+126 KB
fonts/ttf/MonaSans-BoldItalic.ttf → fonts/static/ttf/MonaSans-BoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
fonts/ttf/MonaSans-ExtraBold.ttf → fonts/static/ttf/MonaSans-ExtraBold.ttf
Binary file not shown.
Binary file renamed
BIN
+127 KB
fonts/ttf/MonaSans-ExtraBoldItalic.ttf → ...s/static/ttf/MonaSans-ExtraBoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+122 KB
fonts/ttf/MonaSans-ExtraLight.ttf → fonts/static/ttf/MonaSans-ExtraLight.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSans-ExtraLightItalic.ttf → .../static/ttf/MonaSans-ExtraLightItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+124 KB
fonts/ttf/MonaSans-Italic.ttf → fonts/static/ttf/MonaSans-Italic.ttf
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSans-LightItalic.ttf → fonts/static/ttf/MonaSans-LightItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSans-Medium.ttf → fonts/static/ttf/MonaSans-Medium.ttf
Binary file not shown.
Binary file renamed
BIN
+124 KB
fonts/ttf/MonaSans-MediumItalic.ttf → fonts/static/ttf/MonaSans-MediumItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSans-Regular.ttf → fonts/static/ttf/MonaSans-Regular.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSans-SemiBold.ttf → fonts/static/ttf/MonaSans-SemiBold.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
fonts/ttf/MonaSans-SemiBoldItalic.ttf → fonts/static/ttf/MonaSans-SemiBoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+127 KB
fonts/ttf/MonaSansCondensed-Black.ttf → fonts/static/ttf/MonaSansCondensed-Black.ttf
Binary file not shown.
Binary file renamed
BIN
+128 KB
fonts/ttf/MonaSansCondensed-BlackItalic.ttf → ...tic/ttf/MonaSansCondensed-BlackItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
fonts/ttf/MonaSansCondensed-Bold.ttf → fonts/static/ttf/MonaSansCondensed-Bold.ttf
Binary file not shown.
Binary file renamed
BIN
+127 KB
fonts/ttf/MonaSansCondensed-BoldItalic.ttf → ...atic/ttf/MonaSansCondensed-BoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
fonts/ttf/MonaSansCondensed-ExtraBold.ttf → ...tatic/ttf/MonaSansCondensed-ExtraBold.ttf
Binary file not shown.
Binary file renamed
BIN
+127 KB
...ttf/MonaSansCondensed-ExtraBoldItalic.ttf → ...ttf/MonaSansCondensed-ExtraBoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+121 KB
fonts/ttf/MonaSansCondensed-ExtraLight.ttf → ...atic/ttf/MonaSansCondensed-ExtraLight.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
...tf/MonaSansCondensed-ExtraLightItalic.ttf → ...tf/MonaSansCondensed-ExtraLightItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
fonts/ttf/MonaSansCondensed-Italic.ttf → ...s/static/ttf/MonaSansCondensed-Italic.ttf
Binary file not shown.
Binary file renamed
BIN
+122 KB
fonts/ttf/MonaSansCondensed-Light.ttf → fonts/static/ttf/MonaSansCondensed-Light.ttf
Binary file not shown.
Binary file renamed
BIN
+124 KB
fonts/ttf/MonaSansCondensed-LightItalic.ttf → ...tic/ttf/MonaSansCondensed-LightItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+124 KB
fonts/ttf/MonaSansCondensed-Medium.ttf → ...s/static/ttf/MonaSansCondensed-Medium.ttf
Binary file not shown.
Binary file renamed
BIN
+126 KB
fonts/ttf/MonaSansCondensed-MediumItalic.ttf → ...ic/ttf/MonaSansCondensed-MediumItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+122 KB
fonts/ttf/MonaSansCondensed-Regular.ttf → .../static/ttf/MonaSansCondensed-Regular.ttf
Binary file not shown.
Binary file renamed
BIN
+124 KB
fonts/ttf/MonaSansCondensed-SemiBold.ttf → ...static/ttf/MonaSansCondensed-SemiBold.ttf
Binary file not shown.
Binary file renamed
BIN
+126 KB
.../ttf/MonaSansCondensed-SemiBoldItalic.ttf → .../ttf/MonaSansCondensed-SemiBoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+126 KB
fonts/ttf/MonaSansExpanded-Black.ttf → fonts/static/ttf/MonaSansExpanded-Black.ttf
Binary file not shown.
Binary file renamed
BIN
+129 KB
fonts/ttf/MonaSansExpanded-BlackItalic.ttf → ...atic/ttf/MonaSansExpanded-BlackItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
fonts/ttf/MonaSansExpanded-Bold.ttf → fonts/static/ttf/MonaSansExpanded-Bold.ttf
Binary file not shown.
Binary file renamed
BIN
+127 KB
fonts/ttf/MonaSansExpanded-BoldItalic.ttf → ...tatic/ttf/MonaSansExpanded-BoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
fonts/ttf/MonaSansExpanded-ExtraBold.ttf → ...static/ttf/MonaSansExpanded-ExtraBold.ttf
Binary file not shown.
Binary file renamed
BIN
+128 KB
.../ttf/MonaSansExpanded-ExtraBoldItalic.ttf → .../ttf/MonaSansExpanded-ExtraBoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+122 KB
fonts/ttf/MonaSansExpanded-ExtraLight.ttf → ...tatic/ttf/MonaSansExpanded-ExtraLight.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
...ttf/MonaSansExpanded-ExtraLightItalic.ttf → ...ttf/MonaSansExpanded-ExtraLightItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
fonts/ttf/MonaSansExpanded-Italic.ttf → fonts/static/ttf/MonaSansExpanded-Italic.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSansExpanded-Light.ttf → fonts/static/ttf/MonaSansExpanded-Light.ttf
Binary file not shown.
Binary file renamed
BIN
+124 KB
fonts/ttf/MonaSansExpanded-LightItalic.ttf → ...atic/ttf/MonaSansExpanded-LightItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSansExpanded-Medium.ttf → fonts/static/ttf/MonaSansExpanded-Medium.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
fonts/ttf/MonaSansExpanded-MediumItalic.ttf → ...tic/ttf/MonaSansExpanded-MediumItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSansExpanded-Regular.ttf → ...s/static/ttf/MonaSansExpanded-Regular.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSansExpanded-SemiBold.ttf → .../static/ttf/MonaSansExpanded-SemiBold.ttf
Binary file not shown.
Binary file renamed
BIN
+126 KB
...s/ttf/MonaSansExpanded-SemiBoldItalic.ttf → ...c/ttf/MonaSansExpanded-SemiBoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+127 KB
fonts/ttf/MonaSansSemiCondensed-Black.ttf → ...tatic/ttf/MonaSansSemiCondensed-Black.ttf
Binary file not shown.
Binary file renamed
BIN
+129 KB
...ttf/MonaSansSemiCondensed-BlackItalic.ttf → ...ttf/MonaSansSemiCondensed-BlackItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+124 KB
fonts/ttf/MonaSansSemiCondensed-Bold.ttf → ...static/ttf/MonaSansSemiCondensed-Bold.ttf
Binary file not shown.
Binary file renamed
BIN
+126 KB
.../ttf/MonaSansSemiCondensed-BoldItalic.ttf → .../ttf/MonaSansSemiCondensed-BoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+126 KB
...s/ttf/MonaSansSemiCondensed-ExtraBold.ttf → ...c/ttf/MonaSansSemiCondensed-ExtraBold.ttf
Binary file not shown.
Binary file renamed
BIN
+127 KB
...MonaSansSemiCondensed-ExtraBoldItalic.ttf → ...MonaSansSemiCondensed-ExtraBoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+122 KB
.../ttf/MonaSansSemiCondensed-ExtraLight.ttf → .../ttf/MonaSansSemiCondensed-ExtraLight.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
...onaSansSemiCondensed-ExtraLightItalic.ttf → ...onaSansSemiCondensed-ExtraLightItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
fonts/ttf/MonaSansSemiCondensed-Italic.ttf → ...atic/ttf/MonaSansSemiCondensed-Italic.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSansSemiCondensed-Light.ttf → ...tatic/ttf/MonaSansSemiCondensed-Light.ttf
Binary file not shown.
Binary file renamed
BIN
+124 KB
...ttf/MonaSansSemiCondensed-LightItalic.ttf → ...ttf/MonaSansSemiCondensed-LightItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSansSemiCondensed-Medium.ttf → ...atic/ttf/MonaSansSemiCondensed-Medium.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
...tf/MonaSansSemiCondensed-MediumItalic.ttf → ...tf/MonaSansSemiCondensed-MediumItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+122 KB
fonts/ttf/MonaSansSemiCondensed-Regular.ttf → ...tic/ttf/MonaSansSemiCondensed-Regular.ttf
Binary file not shown.
Binary file renamed
BIN
+124 KB
fonts/ttf/MonaSansSemiCondensed-SemiBold.ttf → ...ic/ttf/MonaSansSemiCondensed-SemiBold.ttf
Binary file not shown.
Binary file renamed
BIN
+126 KB
.../MonaSansSemiCondensed-SemiBoldItalic.ttf → .../MonaSansSemiCondensed-SemiBoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+126 KB
fonts/ttf/MonaSansSemiExpanded-Black.ttf → ...static/ttf/MonaSansSemiExpanded-Black.ttf
Binary file not shown.
Binary file renamed
BIN
+129 KB
.../ttf/MonaSansSemiExpanded-BlackItalic.ttf → .../ttf/MonaSansSemiExpanded-BlackItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
fonts/ttf/MonaSansSemiExpanded-Bold.ttf → .../static/ttf/MonaSansSemiExpanded-Bold.ttf
Binary file not shown.
Binary file renamed
BIN
+126 KB
...s/ttf/MonaSansSemiExpanded-BoldItalic.ttf → ...c/ttf/MonaSansSemiExpanded-BoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+126 KB
fonts/ttf/MonaSansSemiExpanded-ExtraBold.ttf → ...ic/ttf/MonaSansSemiExpanded-ExtraBold.ttf
Binary file not shown.
Binary file renamed
BIN
+127 KB
.../MonaSansSemiExpanded-ExtraBoldItalic.ttf → .../MonaSansSemiExpanded-ExtraBoldItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+122 KB
...s/ttf/MonaSansSemiExpanded-ExtraLight.ttf → ...c/ttf/MonaSansSemiExpanded-ExtraLight.ttf
Binary file not shown.
Binary file renamed
BIN
+124 KB
...MonaSansSemiExpanded-ExtraLightItalic.ttf → ...MonaSansSemiExpanded-ExtraLightItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
fonts/ttf/MonaSansSemiExpanded-Italic.ttf → ...tatic/ttf/MonaSansSemiExpanded-Italic.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSansSemiExpanded-Light.ttf → ...static/ttf/MonaSansSemiExpanded-Light.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
.../ttf/MonaSansSemiExpanded-LightItalic.ttf → .../ttf/MonaSansSemiExpanded-LightItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSansSemiExpanded-Medium.ttf → ...tatic/ttf/MonaSansSemiExpanded-Medium.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
...ttf/MonaSansSemiExpanded-MediumItalic.ttf → ...ttf/MonaSansSemiExpanded-MediumItalic.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSansSemiExpanded-Regular.ttf → ...atic/ttf/MonaSansSemiExpanded-Regular.ttf
Binary file not shown.
Binary file renamed
BIN
+123 KB
fonts/ttf/MonaSansSemiExpanded-SemiBold.ttf → ...tic/ttf/MonaSansSemiExpanded-SemiBold.ttf
Binary file not shown.
Binary file renamed
BIN
+125 KB
...f/MonaSansSemiExpanded-SemiBoldItalic.ttf → ...f/MonaSansSemiExpanded-SemiBoldItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.