Skip to content
This repository was archived by the owner on Jun 28, 2021. It is now read-only.
Merged
  •  
  •  
  •  
Next Next commit
added word rendering comparision
  • Loading branch information
naveed-ahmad committed Mar 7, 2017
commit 076b422e1cda9d4202ffb0c139c56e44d230b861
41 changes: 33 additions & 8 deletions src/components/Verse/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export default class Verse extends Component {
// NOTE: Some 'word's are glyphs (jeem). Not words and should not be clicked for audio
let wordAudioPosition = -1;

const text = verse.words.map(word => ( // eslint-disable-line
const textCode = verse.words.map(word => ( // eslint-disable-line
<Word
word={word}
key={`${word.position}-${word.code}-${word.lineNum}`}
Expand All @@ -141,18 +141,43 @@ export default class Verse extends Component {
audioActions={audioActions}
audioPosition={word.wordId ? wordAudioPosition += 1 : null}
isSearched={isSearched}
useTextFont={false}
/>
));

const textText = verse.words.map(word => ( // eslint-disable-line
<Word
word={word}
key={`${word.position}-${word.code}-${word.lineNum}`}
currentVerse={currentVerse}
tooltip={tooltip}
isPlaying={isPlaying}
audioActions={audioActions}
audioPosition={word.wordId ? wordAudioPosition += 1 : null}
isSearched={isSearched}
useTextFont={true}
/>
));

return (
<h1 className={`${styles.font} text-right text-arabic`}>
{text}
<p
dir="rtl"
lang="ar"
className={`text-tashkeel text-p${verse.pageNumber}`}
dangerouslySetInnerHTML={{ __html: verse.textMadani }}
/>
<p>
<small>WORD CODE</small>
<br/>
{textCode}
</p>

<p>
<small>WORD TEXT</small>
<br/>
{textText}
</p>

<p className={`text-p${verse.pageNumber}`}>
<small>VERSE TEXT</small>
<br/>
{verse.textMadani}
</p>
</h1>
);
}
Expand Down
9 changes: 9 additions & 0 deletions src/components/Verse/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,14 @@
}
}

p{
display: block;
clear: both;
text-align: right;
direction: rtl;
float: right;
}

@media (max-width: $screen-xs-max) {
font-size: 300%;
line-height: 130%;
Expand Down Expand Up @@ -134,3 +142,4 @@
width: 100%;
margin: 0px auto;
}

9 changes: 5 additions & 4 deletions src/components/Word/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export default class Word extends Component {
audioPosition: PropTypes.number,
currentVerse: PropTypes.string.isRequired,
isPlaying: PropTypes.bool,
isSearched: PropTypes.bool
isSearched: PropTypes.bool,
useTextFont: PropTypes.bool // tmp change to compare text and code based rendering
};

buildTooltip = (word, tooltip) => {
Expand Down Expand Up @@ -58,11 +59,11 @@ export default class Word extends Component {
}

render() {
const { tooltip, word, currentVerse, isPlaying, audioPosition } = this.props;
const { tooltip, word, currentVerse, isPlaying, audioPosition, useTextFont } = this.props;

let id = null;
const highlight = currentVerse === word.verseKey && isPlaying ? 'highlight' : '';
const className = `${word.className} ${highlight} ${word.highlight ? word.highlight : ''}`;
const className = `${useTextFont ? 'text-' : ''}${word.className} ${highlight} ${word.highlight ? word.highlight : ''}`;

if (word.charType === CHAR_TYPE_WORD) {
id = `word-${word.verseKey.replace(/:/, '-')}-${audioPosition || word.position}`;
Expand All @@ -77,7 +78,7 @@ export default class Word extends Component {
onClick={this.handleWordPlay}
className={`${className} pointer`}
title={this.buildTooltip(word, tooltip)}
dangerouslySetInnerHTML={{ __html: word.code }}
dangerouslySetInnerHTML={{ __html: useTextFont ? word.textMadani : word.code }}
/>
);
}
Expand Down
1 change: 0 additions & 1 deletion src/containers/App/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ class App extends Component {
return (
<div>
<Helmet {...config.app.head} />
<FontStyles />
<NoScript>
<div className="row noscript-warning">
<div className="col-md-12">
Expand Down
38 changes: 37 additions & 1 deletion src/styles/fonts/_fonts.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
@mixin word_font($page) {
@font-face {
font-family: p#{$page};
src: url('../../static/fonts/ttf/p#{$page}.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: text#{$page};
src: url('../../static/fonts/embed_ttf/tp#{$page}.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

.p#{$page} {
font-family: p#{$page};
}

.text-p#{$page} {
font-family: text#{$page};
float: right;
}
}

@for $i from 1 through 604 {
@include word_font($i);
}

@font-face {
font-family: quran-common;
src: url('../../static/fonts/quran-common/quran_common.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Montserrat';
src: url('../../static/fonts/montserrat/Montserrat-Regular.otf');
Expand Down Expand Up @@ -666,7 +702,7 @@ html:hover [class^="ss-"] {
}

.ss-plus:before, .ss-plus.right:after {
content: '+'
content: ''
}

.ss-hyphen:before, .ss-hyphen.right:after {
Expand Down
Binary file added static/fonts/embed_ttf/tp1.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp10.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp100.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp101.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp102.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp103.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp104.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp105.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp106.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp107.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp108.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp109.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp11.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp110.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp111.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp112.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp113.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp114.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp115.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp116.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp117.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp118.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp119.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp12.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp120.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp121.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp122.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp123.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp124.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp125.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp126.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp127.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp128.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp129.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp13.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp130.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp131.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp132.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp133.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp134.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp135.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp136.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp137.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp138.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp139.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp14.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp140.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp141.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp142.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp143.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp144.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp145.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp146.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp147.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp148.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp149.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp15.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp150.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp151.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp152.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp153.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp154.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp155.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp156.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp157.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp158.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp159.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp16.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp160.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp161.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp162.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp163.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp164.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp165.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp166.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp167.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp168.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp169.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp17.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp170.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp171.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp172.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp173.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp174.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp175.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp176.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp177.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp178.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp179.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp18.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp180.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp181.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp182.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp183.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp184.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp185.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp186.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp187.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp188.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp189.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp19.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp190.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp191.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp192.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp193.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp194.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp195.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp196.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp197.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp198.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp199.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp2.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp20.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp200.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp201.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp202.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp203.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp204.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp205.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp206.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp207.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp208.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp209.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp21.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp210.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp211.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp212.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp213.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp214.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp215.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp216.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp217.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp218.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp219.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp22.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp220.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp221.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp222.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp223.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp224.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp225.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp226.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp227.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp228.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp229.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp23.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp230.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp231.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp232.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp233.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp234.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp235.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp236.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp237.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp238.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp239.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp24.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp240.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp241.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp242.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp243.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp244.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp245.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp246.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp247.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp248.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp249.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp25.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp250.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp251.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp252.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp253.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp254.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp255.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp256.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp257.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp258.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp259.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp26.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp260.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp261.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp262.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp263.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp264.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp265.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp266.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp267.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp268.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp269.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp27.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp270.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp271.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp272.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp273.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp274.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp275.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp276.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp277.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp278.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp279.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp28.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp280.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp281.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp282.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp283.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp284.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp285.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp286.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp287.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp288.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp289.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp29.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp290.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp291.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp292.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp293.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp294.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp295.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp296.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp297.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp298.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp299.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp3.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp30.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp300.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp301.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp302.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp303.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp304.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp305.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp306.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp307.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp308.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp309.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp31.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp310.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp311.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp312.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp313.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp314.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp315.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp316.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp317.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp318.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp319.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp32.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp320.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp321.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp322.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp323.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp324.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp325.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp326.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp327.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp328.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp329.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp33.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp330.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp331.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp332.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp333.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp334.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp335.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp336.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp337.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp338.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp339.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp34.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp340.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp341.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp342.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp343.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp344.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp345.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp346.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp347.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp348.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp349.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp35.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp350.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp351.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp352.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp353.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp354.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp355.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp356.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp357.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp358.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp359.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp36.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp360.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp361.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp362.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp363.ttf
Binary file not shown.
Binary file added static/fonts/embed_ttf/tp364.ttf
Binary file not shown.
Loading