Fix application of CV/SS on certain composites and some of the sample images (#1433).

This commit is contained in:
be5invis 2022-10-09 16:29:24 -07:00
parent 45d1f7479b
commit dd69cf9c89
149 changed files with 389 additions and 369 deletions

1
changes/16.3.3.md Normal file
View file

@ -0,0 +1 @@
* Fix application of CV/SS on certain composites and some of the sample images (#1433).

View file

@ -1,4 +1,4 @@
import [AddCommonFeature AddFeature AddLookup AdeFeatureLookup ChainRuleBuilder BeginLookupBlock EndLookupBlock UkMapToLookup UkMap2ToLookup] from"./table-util.mjs"
import [AddCommonFeature AddFeature AddLookup AddFeatureLookup ChainRuleBuilder BeginLookupBlock EndLookupBlock UkMapToLookup UkMap2ToLookup] from"./table-util.mjs"
import [AnyCv Dotless TieMark TieGlyph CcmpDecompose] from"../support/gr.mjs"
import as UnicodeKnowledge from"../meta/unicode-knowledge.mjs"
@ -221,7 +221,7 @@ export : define [buildCCMP sink glyphStore markGlyphs] : begin
define lookupCcmp-Decompose : AddLookup sink : object
.type 'gsub_multiple'
.substitutions decompositions
AdeFeatureLookup ccmp lookupCcmp-Decompose
AddFeatureLookup ccmp lookupCcmp-Decompose
AddCommonFeature sink ccmp
EndLookupBlock rec sink

View file

@ -1,4 +1,4 @@
import [AddLookup AddCommonFeature PickFeature AdeFeatureLookup PickLookup BeginLookupBlock EndLookupBlock ChainRuleBuilder] from"./table-util.mjs"
import [AddLookup AddCommonFeature PickCommonFeature AddFeatureLookup PickLookup BeginLookupBlock EndLookupBlock ChainRuleBuilder] from"./table-util.mjs"
import [Cv AnyCv CvDecompose RightDependentLink RightDependentTrigger] from"../support/gr.mjs"
extern Map
@ -9,63 +9,80 @@ define-operator "~>" 880 'right' : syntax-rules
`(@l ~> @r) `{.left @l .right @r}
define [FeatureName tag] : tag + '_cvss'
define [CvLookupName tag] : 'lookup_cv_' + tag
define [SsLookupName tag] : 'lookup_ss_' + tag
define [CvLookupName tag] : 'lookup_cv_' + tag
define [CvDecomposeLookupName tag] : 'lookup_cv_decompose_' + tag
export : define [buildCVSS sink para glyphStore] : begin
define {chain-rule} : ChainRuleBuilder sink
local rec : BeginLookupBlock sink
local cvLookupNameSet : new Set
local cvDecompositionLookupNameSet : new Set
local ssLookupNameSet : new Set
# Decomposition of enclosures
define decompositions {.}
foreach { gid g } [glyphStore.namedEntries] : begin
local parts : CvDecompose.get g
if (parts && parts.length) : set decompositions.(gid) parts
define [addCvMapping tag src dst rank] : begin
define feature : PickCommonFeature sink [FeatureName tag]
define lookupName : CvLookupName tag
define lookup : PickLookup sink lookupName {.type 'gsub_alternate' .substitutions {.}}
define lookupNameCvDecompose : AddLookup sink : object
.type 'gsub_multiple'
.substitutions decompositions
if [not : cvLookupNameSet.has lookupName] : begin
AddFeatureLookup feature lookupName
cvLookupNameSet.add lookupName
define [addFeatureAndLookup tag lookupName init] : begin
define feature : PickFeature sink [FeatureName tag]
AddCommonFeature sink feature
if [not lookup.substitutions.(src)] : set lookup.substitutions.(src) { }
set lookup.substitutions.(src).(rank - 1) dst
define lookup : PickLookup sink lookupName init
AdeFeatureLookup feature lookupNameCvDecompose
AdeFeatureLookup feature lookupName
sink.lookupDep.push { lookupNameCvDecompose lookupName }
cvLookupNameSet.add lookupName
define [addCvDecomposition tag gn parts] : begin
define feature : PickCommonFeature sink [FeatureName tag]
define lookupName : CvDecomposeLookupName tag
define lookup : PickLookup sink lookupName {.type 'gsub_multiple' .substitutions {.}}
if [not : cvDecompositionLookupNameSet.has lookupName] : begin
AddFeatureLookup feature lookupName
cvDecompositionLookupNameSet.add lookupName
define lookupNameCv : CvLookupName tag
sink.lookupDep.push { lookupName lookupNameCv }
set lookup.substitutions.(gn) parts
define [addSsSubstitution tag decomp src dst] : begin
define feature : PickCommonFeature sink [FeatureName tag]
define lookupName : SsLookupName composition.tag
define lookup : PickLookup sink lookupName {.type 'gsub_single' .substitutions {.}}
if [not : ssLookupNameSet.has lookupName] : begin
AddFeatureLookup feature lookupName
ssLookupNameSet.add lookupName
foreach { prime pv } [items-of decomp] : if (pv.tag && pv.rank) : begin
local pvDecomp : CvDecomposeLookupName pv.tag
if [cvDecompositionLookupNameSet.has pvDecomp] : begin
AddFeatureLookup feature pvDecomp
sink.lookupDep.push { pvDecomp lookupName }
set lookup.substitutions.(src) dst
# cvxx
foreach {gn glyph} [glyphStore.namedEntries] : if [not : CvDecompose.get glyph] : do
foreach [gr : items-of : AnyCv.query glyph] : if gr.tag : begin
define lookupName : CvLookupName gr.tag
if [not : cvLookupNameSet.has lookupName] : begin
addFeatureAndLookup gr.tag lookupName {.type 'gsub_alternate' .substitutions {.}}
cvLookupNameSet.add lookupName
addCvMapping gr.tag gn [glyphStore.ensureExists : gr.get glyph] gr.rank
local st [PickLookup sink lookupName].substitutions
if [not st.(gn)] : set st.(gn) { }
set st.(gn).(gr.rank - 1) : glyphStore.ensureExists : gr.get glyph
foreach {gn glyph} [glyphStore.namedEntries] : if [CvDecompose.get glyph] : do
local parts : CvDecompose.get glyph
foreach part [items-of parts] : begin
local gPart : glyphStore.queryByName part
if gPart : foreach [gr : items-of : AnyCv.query gPart] : if gr.tag : begin
addCvDecomposition gr.tag gn parts
# ssxx
foreach {name composition} para.variants.composites : if composition.tag : do
define lookupName : SsLookupName composition.tag
if [not : ssLookupNameSet.has lookupName] : begin
addFeatureAndLookup composition.tag lookupName {.type 'gsub_single' .substitutions {.}}
cvLookupNameSet.add lookupName
define st [PickLookup sink lookupName].substitutions
define decomp : composition.decompose para para.variants.selectorTree
foreach { prime pv } [items-of decomp] : if (pv.tag && pv.rank) : begin
local gr : Cv pv.tag pv.rank
foreach {gn glyph} [glyphStore.namedEntries] : if [not : CvDecompose.get glyph] : begin
local substituted : gr.get glyph
if substituted : set st.(gn) substituted
if substituted : addSsSubstitution composition.tag decomp gn substituted
# If there are holes in the alternates list, fill them
foreach lutn cvLookupNameSet : begin

View file

@ -883,24 +883,19 @@ define [buildLigationsImpl sink para featureName mappedFeature rankedLookups] :
greaterAndEquiv ~> [just 'greaterArrow']
# [| |] {| |}
do "brack-bar" : if [hasLG 'brack-bar'] : begin
CreateLigationLookup : list
chain-rule
{'bracketLeft'} ~> {'ligExtBracketLeft'}
{'bar'} ~> {'ligBarInsideBracketLeft'}
chain-rule
{'bar'} ~> {'ligBarInsideBracketRight'}
{'bracketRight'} ~> {'ligExtBracketRight'}
do "brace-bar" : if [hasLG 'brace-bar'] : begin
CreateLigationLookup : list
chain-rule
{'braceLeft'} ~> {'ligExtBraceLeft'}
{'bar'} ~> {'ligBarInsideBracketLeft'}
chain-rule
{'bar'} ~> {'ligBarInsideBracketRight'}
{'braceRight'} ~> {'ligExtBraceRight'}
CreateLigationLookup : list
if [hasLG 'brack-bar'] : chain-rule
{'bracketLeft'} ~> {'ligExtBracketLeft'}
{'bar'} ~> {'ligBarInsideBracketLeft'}
if [hasLG 'brack-bar'] : chain-rule
{'bar'} ~> {'ligBarInsideBracketRight'}
{'bracketRight'} ~> {'ligExtBracketRight'}
if [hasLG 'brace-bar'] : chain-rule
{'braceLeft'} ~> {'ligExtBraceLeft'}
{'bar'} ~> {'ligBarInsideBracketLeft'}
if [hasLG 'brace-bar'] : chain-rule
{'bar'} ~> {'ligBarInsideBracketRight'}
{'braceRight'} ~> {'ligExtBraceRight'}
do "Plus chains" : if [hasLG 'plusplus'] : begin
CreateLigationLookup : list

View file

@ -36,7 +36,14 @@ export : define [PickFeature sink name] : begin
set sink.features.(name) featObj.lookups
return featObj
export : define [AdeFeatureLookup fea lookupName] : begin
export : define [PickCommonFeature sink name] : begin
if sink.features.(name) : return { .name name .lookups sink.features.(name) }
define featObj { .name name .lookups {} }
set sink.features.(name) featObj.lookups
AddCommonFeature sink featObj
return featObj
export : define [AddFeatureLookup fea lookupName] : begin
define index : fea.lookups.indexOf lookupName
if (index < 0) : fea.lookups.push lookupName

View file

@ -1,2 +1,2 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" height="160" viewBox="0 0 128 160" width="128"><defs><path d="M 247 8 Q 221 8 194 2.5 Q 167 -3 144 -16.5 Q 121 -30 103.5 -50.5 Q 86 -71 75 -95.5 Q 64 -120 60 -146.5 Q 56 -173 56 -200 L 56 -320 Q 56 -347 60 -373.5 Q 64 -400 75 -424.5 Q 86 -449 103.5 -469.5 Q 121 -490 144 -503.5 Q 167 -517 194 -522.5 Q 221 -528 247 -528 Q 272 -528 297 -523.5 Q 322 -519 344.5 -508 Q 367 -497 385 -479.5 Q 403 -462 415 -440 Q 427 -418 432.5 -393.5 Q 438 -369 438 -344 Q 438 -344 438 -343.5 Q 438 -343 438 -342 L 360 -342 Q 360 -342 360 -342.5 Q 360 -343 360 -343 Q 360 -366 353 -388 Q 346 -410 330 -426.5 Q 314 -443 292 -450.5 Q 270 -458 247 -458 Q 230 -458 213.5 -454 Q 197 -450 183 -440 Q 169 -430 159.5 -416 Q 150 -402 144 -386.5 Q 138 -371 136 -354 Q 134 -337 134 -320 L 134 -200 Q 134 -183 136 -166 Q 138 -149 144 -133.5 Q 150 -118 159.5 -104 Q 169 -90 183 -80 Q 197 -70 213.5 -66 Q 230 -62 247 -62 Q 270 -62 292 -69.5 Q 314 -77 330 -93.5 Q 346 -110 353 -132 Q 360 -154 360 -177 Q 360 -177 360 -177.5 Q 360 -178 360 -178 L 438 -178 Q 438 -177 438 -176.5 Q 438 -176 438 -176 Q 438 -151 432.5 -126.5 Q 427 -102 415 -80 Q 403 -58 385 -40.5 Q 367 -23 344.5 -12 Q 322 -1 297 3.5 Q 272 8 247 8 Z M 211 107 L 211 -35 L 218 -35 L 218 -485 L 211 -485 L 211 -628 L 289 -628 L 289 -485 L 282 -485 L 282 -35 L 289 -35 L 289 107 Z " id="path1"/></defs><g><g data-source-text="¢" fill="#dee4e3" transform="translate(40 104.99201) rotate(0) scale(0.09599999)"><use href="#path1" transform="translate(0 0)"/></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="160" viewBox="0 0 128 160" width="128"><defs><path d="M -282 -293 L -284 -485 L -289 -485 L -289 -628 L -211 -628 L -211 -485 L -216 -485 L -218 -293 Z M -289 107 L -289 -35 L -284 -35 L -282 -228 L -218 -228 L -216 -35 L -211 -35 L -211 107 Z " id="path2"/><path d="M 247 8 Q 221 8 194 2.5 Q 167 -3 144 -16.5 Q 121 -30 103.5 -50.5 Q 86 -71 75 -95.5 Q 64 -120 60 -146.5 Q 56 -173 56 -200 L 56 -320 Q 56 -347 60 -373.5 Q 64 -400 75 -424.5 Q 86 -449 103.5 -469.5 Q 121 -490 144 -503.5 Q 167 -517 194 -522.5 Q 221 -528 247 -528 Q 272 -528 297 -523.5 Q 322 -519 344.5 -508 Q 367 -497 385 -479.5 Q 403 -462 415 -440 Q 427 -418 432.5 -393.5 Q 438 -369 438 -344 Q 438 -344 438 -343.5 Q 438 -343 438 -342 L 360 -342 Q 360 -342 360 -342.5 Q 360 -343 360 -343 Q 360 -366 353 -388 Q 346 -410 330 -426.5 Q 314 -443 292 -450.5 Q 270 -458 247 -458 Q 230 -458 213.5 -454 Q 197 -450 183 -440 Q 169 -430 159.5 -416 Q 150 -402 144 -386.5 Q 138 -371 136 -354 Q 134 -337 134 -320 L 134 -200 Q 134 -183 136 -166 Q 138 -149 144 -133.5 Q 150 -118 159.5 -104 Q 169 -90 183 -80 Q 197 -70 213.5 -66 Q 230 -62 247 -62 Q 270 -62 292 -69.5 Q 314 -77 330 -93.5 Q 346 -110 353 -132 Q 360 -154 360 -177 Q 360 -177 360 -177.5 Q 360 -178 360 -178 L 438 -178 Q 438 -177 438 -176.5 Q 438 -176 438 -176 Q 438 -151 432.5 -126.5 Q 427 -102 415 -80 Q 403 -58 385 -40.5 Q 367 -23 344.5 -12 Q 322 -1 297 3.5 Q 272 8 247 8 Z " id="path1"/></defs><g><g data-source-text="¢" fill="#dee4e3" transform="translate(40 104.99201) rotate(0) scale(0.09599999)"><use href="#path1" transform="translate(0 0)"/><use href="#path2" transform="translate(500 0)"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Before After
Before After

View file

@ -1,2 +1,2 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" height="160" viewBox="0 0 128 160" width="128"><defs><path d="M 247 8 Q 221 8 194 2.5 Q 167 -3 144 -16.5 Q 121 -30 103.5 -50.5 Q 86 -71 75 -95.5 Q 64 -120 60 -146.5 Q 56 -173 56 -200 L 56 -320 Q 56 -347 60 -373.5 Q 64 -400 75 -424.5 Q 86 -449 103.5 -469.5 Q 121 -490 144 -503.5 Q 167 -517 194 -522.5 Q 221 -528 247 -528 Q 272 -528 297 -523.5 Q 322 -519 344.5 -508 Q 367 -497 385 -479.5 Q 403 -462 415 -440 Q 427 -418 432.5 -393.5 Q 438 -369 438 -344 Q 438 -344 438 -343.5 Q 438 -343 438 -342 L 360 -342 Q 360 -342 360 -342.5 Q 360 -343 360 -343 Q 360 -366 353 -388 Q 346 -410 330 -426.5 Q 314 -443 292 -450.5 Q 270 -458 247 -458 Q 230 -458 213.5 -454 Q 197 -450 183 -440 Q 169 -430 159.5 -416 Q 150 -402 144 -386.5 Q 138 -371 136 -354 Q 134 -337 134 -320 L 134 -200 Q 134 -183 136 -166 Q 138 -149 144 -133.5 Q 150 -118 159.5 -104 Q 169 -90 183 -80 Q 197 -70 213.5 -66 Q 230 -62 247 -62 Q 270 -62 292 -69.5 Q 314 -77 330 -93.5 Q 346 -110 353 -132 Q 360 -154 360 -177 Q 360 -177 360 -177.5 Q 360 -178 360 -178 L 438 -178 Q 438 -177 438 -176.5 Q 438 -176 438 -176 Q 438 -151 432.5 -126.5 Q 427 -102 415 -80 Q 403 -58 385 -40.5 Q 367 -23 344.5 -12 Q 322 -1 297 3.5 Q 272 8 247 8 Z M 211 107 L 211 -35 L 218 -35 L 218 -485 L 211 -485 L 211 -628 L 289 -628 L 289 -485 L 282 -485 L 282 -35 L 289 -35 L 289 107 Z " id="path1"/></defs><g><g data-source-text="¢" fill="#20242e" transform="translate(40 104.99201) rotate(0) scale(0.09599999)"><use href="#path1" transform="translate(0 0)"/></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="160" viewBox="0 0 128 160" width="128"><defs><path d="M -282 -293 L -284 -485 L -289 -485 L -289 -628 L -211 -628 L -211 -485 L -216 -485 L -218 -293 Z M -289 107 L -289 -35 L -284 -35 L -282 -228 L -218 -228 L -216 -35 L -211 -35 L -211 107 Z " id="path2"/><path d="M 247 8 Q 221 8 194 2.5 Q 167 -3 144 -16.5 Q 121 -30 103.5 -50.5 Q 86 -71 75 -95.5 Q 64 -120 60 -146.5 Q 56 -173 56 -200 L 56 -320 Q 56 -347 60 -373.5 Q 64 -400 75 -424.5 Q 86 -449 103.5 -469.5 Q 121 -490 144 -503.5 Q 167 -517 194 -522.5 Q 221 -528 247 -528 Q 272 -528 297 -523.5 Q 322 -519 344.5 -508 Q 367 -497 385 -479.5 Q 403 -462 415 -440 Q 427 -418 432.5 -393.5 Q 438 -369 438 -344 Q 438 -344 438 -343.5 Q 438 -343 438 -342 L 360 -342 Q 360 -342 360 -342.5 Q 360 -343 360 -343 Q 360 -366 353 -388 Q 346 -410 330 -426.5 Q 314 -443 292 -450.5 Q 270 -458 247 -458 Q 230 -458 213.5 -454 Q 197 -450 183 -440 Q 169 -430 159.5 -416 Q 150 -402 144 -386.5 Q 138 -371 136 -354 Q 134 -337 134 -320 L 134 -200 Q 134 -183 136 -166 Q 138 -149 144 -133.5 Q 150 -118 159.5 -104 Q 169 -90 183 -80 Q 197 -70 213.5 -66 Q 230 -62 247 -62 Q 270 -62 292 -69.5 Q 314 -77 330 -93.5 Q 346 -110 353 -132 Q 360 -154 360 -177 Q 360 -177 360 -177.5 Q 360 -178 360 -178 L 438 -178 Q 438 -177 438 -176.5 Q 438 -176 438 -176 Q 438 -151 432.5 -126.5 Q 427 -102 415 -80 Q 403 -58 385 -40.5 Q 367 -23 344.5 -12 Q 322 -1 297 3.5 Q 272 8 247 8 Z " id="path1"/></defs><g><g data-source-text="¢" fill="#20242e" transform="translate(40 104.99201) rotate(0) scale(0.09599999)"><use href="#path1" transform="translate(0 0)"/><use href="#path2" transform="translate(500 0)"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Before After
Before After

View file

@ -1,2 +1,2 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" height="160" viewBox="0 0 128 160" width="128"><defs><path d="M 247 8 Q 221 8 194 2.5 Q 167 -3 144 -16.5 Q 121 -30 103.5 -50.5 Q 86 -71 75 -95.5 Q 64 -120 60 -146.5 Q 56 -173 56 -200 L 56 -320 Q 56 -347 60 -373.5 Q 64 -400 75 -424.5 Q 86 -449 103.5 -469.5 Q 121 -490 144 -503.5 Q 167 -517 194 -522.5 Q 221 -528 247 -528 Q 272 -528 297 -523.5 Q 322 -519 344.5 -508 Q 367 -497 385 -479.5 Q 403 -462 415 -440 Q 427 -418 432.5 -393.5 Q 438 -369 438 -344 Q 438 -344 438 -343.5 Q 438 -343 438 -342 L 360 -342 Q 360 -342 360 -342.5 Q 360 -343 360 -343 Q 360 -366 353 -388 Q 346 -410 330 -426.5 Q 314 -443 292 -450.5 Q 270 -458 247 -458 Q 230 -458 213.5 -454 Q 197 -450 183 -440 Q 169 -430 159.5 -416 Q 150 -402 144 -386.5 Q 138 -371 136 -354 Q 134 -337 134 -320 L 134 -200 Q 134 -183 136 -166 Q 138 -149 144 -133.5 Q 150 -118 159.5 -104 Q 169 -90 183 -80 Q 197 -70 213.5 -66 Q 230 -62 247 -62 Q 270 -62 292 -69.5 Q 314 -77 330 -93.5 Q 346 -110 353 -132 Q 360 -154 360 -177 Q 360 -177 360 -177.5 Q 360 -178 360 -178 L 438 -178 Q 438 -177 438 -176.5 Q 438 -176 438 -176 Q 438 -151 432.5 -126.5 Q 427 -102 415 -80 Q 403 -58 385 -40.5 Q 367 -23 344.5 -12 Q 322 -1 297 3.5 Q 272 8 247 8 Z M 211 107 L 211 -35 L 218 -35 L 218 -485 L 211 -485 L 211 -628 L 289 -628 L 289 -485 L 282 -485 L 282 -35 L 289 -35 L 289 107 Z " id="path1"/></defs><g><g data-source-text="¢" fill="#dee4e3" transform="translate(40 104.99201) rotate(0) scale(0.09599999)"><use href="#path1" transform="translate(0 0)"/></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="160" viewBox="0 0 128 160" width="128"><defs><path d="M -289 -485 L -289 -628 L -211 -628 L -211 -485 Z M -289 107 L -289 -35 L -211 -35 L -211 107 Z " id="path2"/><path d="M 247 8 Q 221 8 194 2.5 Q 167 -3 144 -16.5 Q 121 -30 103.5 -50.5 Q 86 -71 75 -95.5 Q 64 -120 60 -146.5 Q 56 -173 56 -200 L 56 -320 Q 56 -347 60 -373.5 Q 64 -400 75 -424.5 Q 86 -449 103.5 -469.5 Q 121 -490 144 -503.5 Q 167 -517 194 -522.5 Q 221 -528 247 -528 Q 272 -528 297 -523.5 Q 322 -519 344.5 -508 Q 367 -497 385 -479.5 Q 403 -462 415 -440 Q 427 -418 432.5 -393.5 Q 438 -369 438 -344 Q 438 -344 438 -343.5 Q 438 -343 438 -342 L 360 -342 Q 360 -342 360 -342.5 Q 360 -343 360 -343 Q 360 -366 353 -388 Q 346 -410 330 -426.5 Q 314 -443 292 -450.5 Q 270 -458 247 -458 Q 230 -458 213.5 -454 Q 197 -450 183 -440 Q 169 -430 159.5 -416 Q 150 -402 144 -386.5 Q 138 -371 136 -354 Q 134 -337 134 -320 L 134 -200 Q 134 -183 136 -166 Q 138 -149 144 -133.5 Q 150 -118 159.5 -104 Q 169 -90 183 -80 Q 197 -70 213.5 -66 Q 230 -62 247 -62 Q 270 -62 292 -69.5 Q 314 -77 330 -93.5 Q 346 -110 353 -132 Q 360 -154 360 -177 Q 360 -177 360 -177.5 Q 360 -178 360 -178 L 438 -178 Q 438 -177 438 -176.5 Q 438 -176 438 -176 Q 438 -151 432.5 -126.5 Q 427 -102 415 -80 Q 403 -58 385 -40.5 Q 367 -23 344.5 -12 Q 322 -1 297 3.5 Q 272 8 247 8 Z " id="path1"/></defs><g><g data-source-text="¢" fill="#dee4e3" transform="translate(40 104.99201) rotate(0) scale(0.09599999)"><use href="#path1" transform="translate(0 0)"/><use href="#path2" transform="translate(500 0)"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Before After
Before After

View file

@ -1,2 +1,2 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" height="160" viewBox="0 0 128 160" width="128"><defs><path d="M 247 8 Q 221 8 194 2.5 Q 167 -3 144 -16.5 Q 121 -30 103.5 -50.5 Q 86 -71 75 -95.5 Q 64 -120 60 -146.5 Q 56 -173 56 -200 L 56 -320 Q 56 -347 60 -373.5 Q 64 -400 75 -424.5 Q 86 -449 103.5 -469.5 Q 121 -490 144 -503.5 Q 167 -517 194 -522.5 Q 221 -528 247 -528 Q 272 -528 297 -523.5 Q 322 -519 344.5 -508 Q 367 -497 385 -479.5 Q 403 -462 415 -440 Q 427 -418 432.5 -393.5 Q 438 -369 438 -344 Q 438 -344 438 -343.5 Q 438 -343 438 -342 L 360 -342 Q 360 -342 360 -342.5 Q 360 -343 360 -343 Q 360 -366 353 -388 Q 346 -410 330 -426.5 Q 314 -443 292 -450.5 Q 270 -458 247 -458 Q 230 -458 213.5 -454 Q 197 -450 183 -440 Q 169 -430 159.5 -416 Q 150 -402 144 -386.5 Q 138 -371 136 -354 Q 134 -337 134 -320 L 134 -200 Q 134 -183 136 -166 Q 138 -149 144 -133.5 Q 150 -118 159.5 -104 Q 169 -90 183 -80 Q 197 -70 213.5 -66 Q 230 -62 247 -62 Q 270 -62 292 -69.5 Q 314 -77 330 -93.5 Q 346 -110 353 -132 Q 360 -154 360 -177 Q 360 -177 360 -177.5 Q 360 -178 360 -178 L 438 -178 Q 438 -177 438 -176.5 Q 438 -176 438 -176 Q 438 -151 432.5 -126.5 Q 427 -102 415 -80 Q 403 -58 385 -40.5 Q 367 -23 344.5 -12 Q 322 -1 297 3.5 Q 272 8 247 8 Z M 211 107 L 211 -35 L 218 -35 L 218 -485 L 211 -485 L 211 -628 L 289 -628 L 289 -485 L 282 -485 L 282 -35 L 289 -35 L 289 107 Z " id="path1"/></defs><g><g data-source-text="¢" fill="#20242e" transform="translate(40 104.99201) rotate(0) scale(0.09599999)"><use href="#path1" transform="translate(0 0)"/></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="160" viewBox="0 0 128 160" width="128"><defs><path d="M -289 -485 L -289 -628 L -211 -628 L -211 -485 Z M -289 107 L -289 -35 L -211 -35 L -211 107 Z " id="path2"/><path d="M 247 8 Q 221 8 194 2.5 Q 167 -3 144 -16.5 Q 121 -30 103.5 -50.5 Q 86 -71 75 -95.5 Q 64 -120 60 -146.5 Q 56 -173 56 -200 L 56 -320 Q 56 -347 60 -373.5 Q 64 -400 75 -424.5 Q 86 -449 103.5 -469.5 Q 121 -490 144 -503.5 Q 167 -517 194 -522.5 Q 221 -528 247 -528 Q 272 -528 297 -523.5 Q 322 -519 344.5 -508 Q 367 -497 385 -479.5 Q 403 -462 415 -440 Q 427 -418 432.5 -393.5 Q 438 -369 438 -344 Q 438 -344 438 -343.5 Q 438 -343 438 -342 L 360 -342 Q 360 -342 360 -342.5 Q 360 -343 360 -343 Q 360 -366 353 -388 Q 346 -410 330 -426.5 Q 314 -443 292 -450.5 Q 270 -458 247 -458 Q 230 -458 213.5 -454 Q 197 -450 183 -440 Q 169 -430 159.5 -416 Q 150 -402 144 -386.5 Q 138 -371 136 -354 Q 134 -337 134 -320 L 134 -200 Q 134 -183 136 -166 Q 138 -149 144 -133.5 Q 150 -118 159.5 -104 Q 169 -90 183 -80 Q 197 -70 213.5 -66 Q 230 -62 247 -62 Q 270 -62 292 -69.5 Q 314 -77 330 -93.5 Q 346 -110 353 -132 Q 360 -154 360 -177 Q 360 -177 360 -177.5 Q 360 -178 360 -178 L 438 -178 Q 438 -177 438 -176.5 Q 438 -176 438 -176 Q 438 -151 432.5 -126.5 Q 427 -102 415 -80 Q 403 -58 385 -40.5 Q 367 -23 344.5 -12 Q 322 -1 297 3.5 Q 272 8 247 8 Z " id="path1"/></defs><g><g data-source-text="¢" fill="#20242e" transform="translate(40 104.99201) rotate(0) scale(0.09599999)"><use href="#path1" transform="translate(0 0)"/><use href="#path2" transform="translate(500 0)"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Before After
Before After

View file

@ -1,2 +1,2 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" height="160" viewBox="0 0 128 160" width="128"><defs><path d="M 247 8 Q 221 8 194 2.5 Q 167 -3 144 -16.5 Q 121 -30 103.5 -50.5 Q 86 -71 75 -95.5 Q 64 -120 60 -146.5 Q 56 -173 56 -200 L 56 -320 Q 56 -347 60 -373.5 Q 64 -400 75 -424.5 Q 86 -449 103.5 -469.5 Q 121 -490 144 -503.5 Q 167 -517 194 -522.5 Q 221 -528 247 -528 Q 272 -528 297 -523.5 Q 322 -519 344.5 -508 Q 367 -497 385 -479.5 Q 403 -462 415 -440 Q 427 -418 432.5 -393.5 Q 438 -369 438 -344 Q 438 -344 438 -343.5 Q 438 -343 438 -342 L 360 -342 Q 360 -342 360 -342.5 Q 360 -343 360 -343 Q 360 -366 353 -388 Q 346 -410 330 -426.5 Q 314 -443 292 -450.5 Q 270 -458 247 -458 Q 230 -458 213.5 -454 Q 197 -450 183 -440 Q 169 -430 159.5 -416 Q 150 -402 144 -386.5 Q 138 -371 136 -354 Q 134 -337 134 -320 L 134 -200 Q 134 -183 136 -166 Q 138 -149 144 -133.5 Q 150 -118 159.5 -104 Q 169 -90 183 -80 Q 197 -70 213.5 -66 Q 230 -62 247 -62 Q 270 -62 292 -69.5 Q 314 -77 330 -93.5 Q 346 -110 353 -132 Q 360 -154 360 -177 Q 360 -177 360 -177.5 Q 360 -178 360 -178 L 438 -178 Q 438 -177 438 -176.5 Q 438 -176 438 -176 Q 438 -151 432.5 -126.5 Q 427 -102 415 -80 Q 403 -58 385 -40.5 Q 367 -23 344.5 -12 Q 322 -1 297 3.5 Q 272 8 247 8 Z M 211 107 L 211 -35 L 218 -35 L 218 -485 L 211 -485 L 211 -628 L 289 -628 L 289 -485 L 282 -485 L 282 -35 L 289 -35 L 289 107 Z " id="path1"/></defs><g><g data-source-text="¢" fill="#dee4e3" transform="translate(40 104.99201) rotate(0) scale(0.09599999)"><use href="#path1" transform="translate(0 0)"/></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="160" viewBox="0 0 128 160" width="128"><defs><path d="M -289 107 L -289 -35 L -282 -35 L -282 -485 L -289 -485 L -289 -628 L -211 -628 L -211 -485 L -218 -485 L -218 -35 L -211 -35 L -211 107 Z " id="path2"/><path d="M 247 8 Q 221 8 194 2.5 Q 167 -3 144 -16.5 Q 121 -30 103.5 -50.5 Q 86 -71 75 -95.5 Q 64 -120 60 -146.5 Q 56 -173 56 -200 L 56 -320 Q 56 -347 60 -373.5 Q 64 -400 75 -424.5 Q 86 -449 103.5 -469.5 Q 121 -490 144 -503.5 Q 167 -517 194 -522.5 Q 221 -528 247 -528 Q 272 -528 297 -523.5 Q 322 -519 344.5 -508 Q 367 -497 385 -479.5 Q 403 -462 415 -440 Q 427 -418 432.5 -393.5 Q 438 -369 438 -344 Q 438 -344 438 -343.5 Q 438 -343 438 -342 L 360 -342 Q 360 -342 360 -342.5 Q 360 -343 360 -343 Q 360 -366 353 -388 Q 346 -410 330 -426.5 Q 314 -443 292 -450.5 Q 270 -458 247 -458 Q 230 -458 213.5 -454 Q 197 -450 183 -440 Q 169 -430 159.5 -416 Q 150 -402 144 -386.5 Q 138 -371 136 -354 Q 134 -337 134 -320 L 134 -200 Q 134 -183 136 -166 Q 138 -149 144 -133.5 Q 150 -118 159.5 -104 Q 169 -90 183 -80 Q 197 -70 213.5 -66 Q 230 -62 247 -62 Q 270 -62 292 -69.5 Q 314 -77 330 -93.5 Q 346 -110 353 -132 Q 360 -154 360 -177 Q 360 -177 360 -177.5 Q 360 -178 360 -178 L 438 -178 Q 438 -177 438 -176.5 Q 438 -176 438 -176 Q 438 -151 432.5 -126.5 Q 427 -102 415 -80 Q 403 -58 385 -40.5 Q 367 -23 344.5 -12 Q 322 -1 297 3.5 Q 272 8 247 8 Z " id="path1"/></defs><g><g data-source-text="¢" fill="#dee4e3" transform="translate(40 104.99201) rotate(0) scale(0.09599999)"><use href="#path1" transform="translate(0 0)"/><use href="#path2" transform="translate(500 0)"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Before After
Before After

View file

@ -1,2 +1,2 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" height="160" viewBox="0 0 128 160" width="128"><defs><path d="M 247 8 Q 221 8 194 2.5 Q 167 -3 144 -16.5 Q 121 -30 103.5 -50.5 Q 86 -71 75 -95.5 Q 64 -120 60 -146.5 Q 56 -173 56 -200 L 56 -320 Q 56 -347 60 -373.5 Q 64 -400 75 -424.5 Q 86 -449 103.5 -469.5 Q 121 -490 144 -503.5 Q 167 -517 194 -522.5 Q 221 -528 247 -528 Q 272 -528 297 -523.5 Q 322 -519 344.5 -508 Q 367 -497 385 -479.5 Q 403 -462 415 -440 Q 427 -418 432.5 -393.5 Q 438 -369 438 -344 Q 438 -344 438 -343.5 Q 438 -343 438 -342 L 360 -342 Q 360 -342 360 -342.5 Q 360 -343 360 -343 Q 360 -366 353 -388 Q 346 -410 330 -426.5 Q 314 -443 292 -450.5 Q 270 -458 247 -458 Q 230 -458 213.5 -454 Q 197 -450 183 -440 Q 169 -430 159.5 -416 Q 150 -402 144 -386.5 Q 138 -371 136 -354 Q 134 -337 134 -320 L 134 -200 Q 134 -183 136 -166 Q 138 -149 144 -133.5 Q 150 -118 159.5 -104 Q 169 -90 183 -80 Q 197 -70 213.5 -66 Q 230 -62 247 -62 Q 270 -62 292 -69.5 Q 314 -77 330 -93.5 Q 346 -110 353 -132 Q 360 -154 360 -177 Q 360 -177 360 -177.5 Q 360 -178 360 -178 L 438 -178 Q 438 -177 438 -176.5 Q 438 -176 438 -176 Q 438 -151 432.5 -126.5 Q 427 -102 415 -80 Q 403 -58 385 -40.5 Q 367 -23 344.5 -12 Q 322 -1 297 3.5 Q 272 8 247 8 Z M 211 107 L 211 -35 L 218 -35 L 218 -485 L 211 -485 L 211 -628 L 289 -628 L 289 -485 L 282 -485 L 282 -35 L 289 -35 L 289 107 Z " id="path1"/></defs><g><g data-source-text="¢" fill="#20242e" transform="translate(40 104.99201) rotate(0) scale(0.09599999)"><use href="#path1" transform="translate(0 0)"/></g></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" height="160" viewBox="0 0 128 160" width="128"><defs><path d="M -289 107 L -289 -35 L -282 -35 L -282 -485 L -289 -485 L -289 -628 L -211 -628 L -211 -485 L -218 -485 L -218 -35 L -211 -35 L -211 107 Z " id="path2"/><path d="M 247 8 Q 221 8 194 2.5 Q 167 -3 144 -16.5 Q 121 -30 103.5 -50.5 Q 86 -71 75 -95.5 Q 64 -120 60 -146.5 Q 56 -173 56 -200 L 56 -320 Q 56 -347 60 -373.5 Q 64 -400 75 -424.5 Q 86 -449 103.5 -469.5 Q 121 -490 144 -503.5 Q 167 -517 194 -522.5 Q 221 -528 247 -528 Q 272 -528 297 -523.5 Q 322 -519 344.5 -508 Q 367 -497 385 -479.5 Q 403 -462 415 -440 Q 427 -418 432.5 -393.5 Q 438 -369 438 -344 Q 438 -344 438 -343.5 Q 438 -343 438 -342 L 360 -342 Q 360 -342 360 -342.5 Q 360 -343 360 -343 Q 360 -366 353 -388 Q 346 -410 330 -426.5 Q 314 -443 292 -450.5 Q 270 -458 247 -458 Q 230 -458 213.5 -454 Q 197 -450 183 -440 Q 169 -430 159.5 -416 Q 150 -402 144 -386.5 Q 138 -371 136 -354 Q 134 -337 134 -320 L 134 -200 Q 134 -183 136 -166 Q 138 -149 144 -133.5 Q 150 -118 159.5 -104 Q 169 -90 183 -80 Q 197 -70 213.5 -66 Q 230 -62 247 -62 Q 270 -62 292 -69.5 Q 314 -77 330 -93.5 Q 346 -110 353 -132 Q 360 -154 360 -177 Q 360 -177 360 -177.5 Q 360 -178 360 -178 L 438 -178 Q 438 -177 438 -176.5 Q 438 -176 438 -176 Q 438 -151 432.5 -126.5 Q 427 -102 415 -80 Q 403 -58 385 -40.5 Q 367 -23 344.5 -12 Q 322 -1 297 3.5 Q 272 8 247 8 Z " id="path1"/></defs><g><g data-source-text="¢" fill="#20242e" transform="translate(40 104.99201) rotate(0) scale(0.09599999)"><use href="#path1" transform="translate(0 0)"/><use href="#path2" transform="translate(500 0)"/></g></g></svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 104 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 104 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 100 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 100 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 104 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 104 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 100 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 100 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 99 KiB

After

Width:  |  Height:  |  Size: 98 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 99 KiB

After

Width:  |  Height:  |  Size: 98 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 96 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 96 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 91 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 91 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 91 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 91 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 99 KiB

After

Width:  |  Height:  |  Size: 98 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 99 KiB

After

Width:  |  Height:  |  Size: 98 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 96 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 96 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 91 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 91 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 93 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 91 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 91 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 104 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 104 KiB

After

Width:  |  Height:  |  Size: 104 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 100 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 100 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Before After
Before After

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Before After
Before After

Some files were not shown because too many files have changed in this diff Show more