fix group classification

This commit is contained in:
Alexander Wang 2022-12-05 11:36:19 -08:00
parent 5deb9b2d7d
commit bed4ef7fae
No known key found for this signature in database
GPG key ID: D89FA31966BDBECE
148 changed files with 43 additions and 162 deletions

View file

@ -33,7 +33,7 @@ func (obj *Object) IsSequenceDiagramGroup() bool {
return false
}
}
return true
return obj.ContainsAnyObject(obj.Graph.Objects) || obj.ContainsAnyEdge(obj.Graph.Edges)
}
// notes are descendant of actors with no edges and no children
@ -54,6 +54,28 @@ func (obj *Object) hasEdgeRef() bool {
return false
}
func (obj *Object) ContainsAnyObject(objects []*Object) bool {
for _, o := range objects {
if o.ContainedBy(obj) {
return true
}
}
return false
}
func (o *Object) ContainedBy(obj *Object) bool {
for _, ref := range o.References {
curr := ref.UnresolvedScopeObj
for curr != nil {
if curr == obj {
return true
}
curr = curr.Parent
}
}
return false
}
func (obj *Object) ContainsAnyEdge(edges []*Edge) bool {
for _, e := range edges {
if e.ContainedBy(obj) {

View file

@ -6,7 +6,6 @@
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

View file

@ -12,7 +12,6 @@ width="486" height="552" viewBox="-100 -100 486 552"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 325 KiB

After

Width:  |  Height:  |  Size: 325 KiB

View file

@ -12,7 +12,6 @@ width="446" height="552" viewBox="-88 -88 446 552"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 325 KiB

After

Width:  |  Height:  |  Size: 325 KiB

View file

@ -12,7 +12,6 @@ width="313" height="552" viewBox="-100 -100 313 552"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 324 KiB

After

Width:  |  Height:  |  Size: 324 KiB

View file

@ -12,7 +12,6 @@ width="313" height="552" viewBox="-88 -88 313 552"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 324 KiB

After

Width:  |  Height:  |  Size: 324 KiB

View file

@ -12,7 +12,6 @@ width="414" height="752" viewBox="-100 -100 414 752"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 649 KiB

After

Width:  |  Height:  |  Size: 649 KiB

View file

@ -12,7 +12,6 @@ width="464" height="862" viewBox="-88 -88 464 862"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 648 KiB

After

Width:  |  Height:  |  Size: 648 KiB

View file

@ -12,7 +12,6 @@ width="313" height="552" viewBox="-100 -100 313 552"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 468 KiB

After

Width:  |  Height:  |  Size: 468 KiB

View file

@ -12,7 +12,6 @@ width="313" height="673" viewBox="-88 -88 313 673"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 468 KiB

After

Width:  |  Height:  |  Size: 468 KiB

View file

@ -12,7 +12,6 @@ width="202" height="202" viewBox="9223372036854775707 9223372036854775707 202 20
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 511 B

After

Width:  |  Height:  |  Size: 510 B

View file

@ -12,7 +12,6 @@ width="202" height="202" viewBox="9223372036854775707 9223372036854775707 202 20
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 511 B

After

Width:  |  Height:  |  Size: 510 B

View file

@ -12,7 +12,6 @@ width="1539" height="824" viewBox="-100 -100 1539 824"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 334 KiB

After

Width:  |  Height:  |  Size: 334 KiB

View file

@ -12,7 +12,6 @@ width="1352" height="824" viewBox="-88 -88 1352 824"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 334 KiB

After

Width:  |  Height:  |  Size: 334 KiB

View file

@ -12,7 +12,6 @@ width="1539" height="824" viewBox="-100 -100 1539 824"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 339 KiB

After

Width:  |  Height:  |  Size: 339 KiB

View file

@ -12,7 +12,6 @@ width="1352" height="824" viewBox="-88 -88 1352 824"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 338 KiB

After

Width:  |  Height:  |  Size: 338 KiB

View file

@ -12,7 +12,6 @@ width="1539" height="824" viewBox="-100 -100 1539 824"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 335 KiB

After

Width:  |  Height:  |  Size: 335 KiB

View file

@ -12,7 +12,6 @@ width="1352" height="824" viewBox="-88 -88 1352 824"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 335 KiB

After

Width:  |  Height:  |  Size: 335 KiB

View file

@ -12,7 +12,6 @@ width="480" height="778" viewBox="-100 -100 480 778"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 471 KiB

After

Width:  |  Height:  |  Size: 471 KiB

View file

@ -12,7 +12,6 @@ width="433" height="788" viewBox="-88 -88 433 788"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 471 KiB

After

Width:  |  Height:  |  Size: 471 KiB

View file

@ -12,7 +12,6 @@ width="401" height="552" viewBox="-144 -100 401 552"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 468 KiB

After

Width:  |  Height:  |  Size: 468 KiB

View file

@ -12,7 +12,6 @@ width="401" height="673" viewBox="14 -88 401 673"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 468 KiB

After

Width:  |  Height:  |  Size: 468 KiB

View file

@ -12,7 +12,6 @@ width="1518" height="1004" viewBox="-100 -100 1518 1004"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 331 KiB

After

Width:  |  Height:  |  Size: 331 KiB

View file

@ -12,7 +12,6 @@ width="1238" height="1004" viewBox="-88 -88 1238 1004"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 332 KiB

After

Width:  |  Height:  |  Size: 332 KiB

View file

@ -12,7 +12,6 @@ width="634" height="652" viewBox="-100 -100 634 652"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 793 KiB

After

Width:  |  Height:  |  Size: 793 KiB

View file

@ -12,7 +12,6 @@ width="630" height="869" viewBox="-88 -88 630 869"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 793 KiB

After

Width:  |  Height:  |  Size: 793 KiB

View file

@ -12,7 +12,6 @@ width="1317" height="1854" viewBox="-100 -100 1317 1854"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 812 KiB

After

Width:  |  Height:  |  Size: 812 KiB

View file

@ -12,7 +12,6 @@ width="1092" height="1907" viewBox="-88 -88 1092 1907"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 812 KiB

After

Width:  |  Height:  |  Size: 812 KiB

View file

@ -12,7 +12,6 @@ width="724" height="626" viewBox="-100 -100 724 626"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 650 KiB

After

Width:  |  Height:  |  Size: 650 KiB

View file

@ -12,7 +12,6 @@ width="774" height="801" viewBox="-88 -88 774 801"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 649 KiB

After

Width:  |  Height:  |  Size: 649 KiB

View file

@ -12,7 +12,6 @@ width="313" height="778" viewBox="-100 -100 313 778"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 325 KiB

After

Width:  |  Height:  |  Size: 325 KiB

View file

@ -12,7 +12,6 @@ width="313" height="778" viewBox="-88 -88 313 778"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 325 KiB

After

Width:  |  Height:  |  Size: 325 KiB

View file

@ -12,7 +12,6 @@ width="539" height="568" viewBox="-100 -100 539 568"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 327 KiB

After

Width:  |  Height:  |  Size: 327 KiB

View file

@ -12,7 +12,6 @@ width="539" height="568" viewBox="-88 -88 539 568"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 327 KiB

After

Width:  |  Height:  |  Size: 327 KiB

View file

@ -12,7 +12,6 @@ width="955" height="818" viewBox="-100 -100 955 818"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 508 KiB

After

Width:  |  Height:  |  Size: 508 KiB

View file

@ -12,7 +12,6 @@ width="955" height="818" viewBox="-88 -88 955 818"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 507 KiB

After

Width:  |  Height:  |  Size: 507 KiB

View file

@ -12,7 +12,6 @@ width="494" height="1178" viewBox="-100 -100 494 1178"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 650 KiB

After

Width:  |  Height:  |  Size: 650 KiB

View file

@ -12,7 +12,6 @@ width="614" height="1403" viewBox="-88 -88 614 1403"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 650 KiB

After

Width:  |  Height:  |  Size: 650 KiB

View file

@ -12,7 +12,6 @@ width="786" height="1530" viewBox="-100 -100 786 1530"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 651 KiB

After

Width:  |  Height:  |  Size: 651 KiB

View file

@ -12,7 +12,6 @@ width="754" height="1308" viewBox="-88 -88 754 1308"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 651 KiB

After

Width:  |  Height:  |  Size: 651 KiB

View file

@ -12,7 +12,6 @@ width="1590" height="1682" viewBox="-100 -100 1590 1682"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 335 KiB

After

Width:  |  Height:  |  Size: 335 KiB

View file

@ -12,7 +12,6 @@ width="997" height="1968" viewBox="-88 -88 997 1968"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 336 KiB

After

Width:  |  Height:  |  Size: 336 KiB

View file

@ -12,7 +12,6 @@ width="2542" height="1104" viewBox="-100 -100 2542 1104"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 658 KiB

After

Width:  |  Height:  |  Size: 658 KiB

View file

@ -12,7 +12,6 @@ width="1668" height="1376" viewBox="-88 -88 1668 1376"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 658 KiB

After

Width:  |  Height:  |  Size: 658 KiB

View file

@ -12,7 +12,6 @@ width="1021" height="1656" viewBox="-100 -100 1021 1656"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 654 KiB

After

Width:  |  Height:  |  Size: 654 KiB

View file

@ -12,7 +12,6 @@ width="614" height="2698" viewBox="-88 -88 614 2698"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 654 KiB

After

Width:  |  Height:  |  Size: 654 KiB

View file

@ -12,7 +12,6 @@ width="345" height="552" viewBox="-100 -100 345 552"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 468 KiB

After

Width:  |  Height:  |  Size: 468 KiB

View file

@ -12,7 +12,6 @@ width="345" height="673" viewBox="-88 -88 345 673"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 468 KiB

After

Width:  |  Height:  |  Size: 468 KiB

View file

@ -12,7 +12,6 @@ width="2360" height="632" viewBox="-100 -100 2360 632"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 471 KiB

After

Width:  |  Height:  |  Size: 471 KiB

View file

@ -12,7 +12,6 @@ width="1965" height="793" viewBox="-88 -88 1965 793"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 471 KiB

After

Width:  |  Height:  |  Size: 471 KiB

View file

@ -12,7 +12,6 @@ width="3251" height="5500" viewBox="-100 -100 3251 5500"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 993 KiB

After

Width:  |  Height:  |  Size: 993 KiB

View file

@ -12,7 +12,6 @@ width="3251" height="5500" viewBox="-88 -88 3251 5500"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 993 KiB

After

Width:  |  Height:  |  Size: 993 KiB

View file

@ -12,7 +12,6 @@ width="938" height="786" viewBox="-100 -100 938 786"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 660 KiB

After

Width:  |  Height:  |  Size: 660 KiB

View file

@ -12,7 +12,6 @@ width="938" height="786" viewBox="-88 -88 938 786"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 660 KiB

After

Width:  |  Height:  |  Size: 660 KiB

View file

@ -12,7 +12,6 @@ width="340" height="357" viewBox="-100 -131 340 357"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 324 KiB

After

Width:  |  Height:  |  Size: 324 KiB

View file

@ -12,7 +12,6 @@ width="340" height="357" viewBox="-88 -119 340 357"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 324 KiB

After

Width:  |  Height:  |  Size: 324 KiB

View file

@ -12,7 +12,6 @@ width="328" height="587" viewBox="-100 -131 328 587"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 324 KiB

After

Width:  |  Height:  |  Size: 324 KiB

View file

@ -12,7 +12,6 @@ width="328" height="587" viewBox="-88 -119 328 587"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 324 KiB

After

Width:  |  Height:  |  Size: 324 KiB

View file

@ -12,7 +12,6 @@ width="1011" height="4426" viewBox="-100 -100 1011 4426"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 813 KiB

After

Width:  |  Height:  |  Size: 813 KiB

View file

@ -12,7 +12,6 @@ width="860" height="4868" viewBox="-82 -88 860 4868"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 809 KiB

After

Width:  |  Height:  |  Size: 809 KiB

View file

@ -12,7 +12,6 @@ width="3244" height="1780" viewBox="-100 -100 3244 1780"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 664 KiB

After

Width:  |  Height:  |  Size: 664 KiB

View file

@ -12,7 +12,6 @@ width="1958" height="2718" viewBox="-88 -88 1958 2718"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 662 KiB

After

Width:  |  Height:  |  Size: 662 KiB

View file

@ -12,7 +12,6 @@ width="913" height="929" viewBox="-100 -100 913 929"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 506 KiB

After

Width:  |  Height:  |  Size: 506 KiB

View file

@ -12,7 +12,6 @@ width="833" height="1050" viewBox="-88 -88 833 1050"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 506 KiB

After

Width:  |  Height:  |  Size: 506 KiB

View file

@ -12,7 +12,6 @@ width="579" height="752" viewBox="-100 -100 579 752"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 660 KiB

After

Width:  |  Height:  |  Size: 660 KiB

View file

@ -12,7 +12,6 @@ width="579" height="752" viewBox="-88 -88 579 752"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 660 KiB

After

Width:  |  Height:  |  Size: 660 KiB

View file

@ -12,7 +12,6 @@ width="445" height="728" viewBox="-100 -100 445 728"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 803 KiB

After

Width:  |  Height:  |  Size: 803 KiB

View file

@ -12,7 +12,6 @@ width="445" height="728" viewBox="-88 -88 445 728"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 803 KiB

After

Width:  |  Height:  |  Size: 803 KiB

View file

@ -12,7 +12,6 @@ width="547" height="1164" viewBox="-100 -100 547 1164"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 660 KiB

After

Width:  |  Height:  |  Size: 660 KiB

View file

@ -12,7 +12,6 @@ width="547" height="1164" viewBox="-88 -88 547 1164"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 660 KiB

After

Width:  |  Height:  |  Size: 660 KiB

View file

@ -12,7 +12,6 @@ width="1120" height="1028" viewBox="-100 -100 1120 1028"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 841 KiB

After

Width:  |  Height:  |  Size: 841 KiB

View file

@ -12,7 +12,6 @@ width="1120" height="1028" viewBox="-88 -88 1120 1028"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 841 KiB

After

Width:  |  Height:  |  Size: 841 KiB

View file

@ -12,7 +12,6 @@ width="466" height="702" viewBox="-100 -100 466 702"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 660 KiB

After

Width:  |  Height:  |  Size: 660 KiB

View file

@ -12,7 +12,6 @@ width="466" height="702" viewBox="-88 -88 466 702"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 660 KiB

After

Width:  |  Height:  |  Size: 660 KiB

View file

@ -12,7 +12,6 @@ width="731" height="838" viewBox="-100 -100 731 838"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 803 KiB

After

Width:  |  Height:  |  Size: 803 KiB

View file

@ -12,7 +12,6 @@ width="731" height="838" viewBox="-88 -88 731 838"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 803 KiB

After

Width:  |  Height:  |  Size: 803 KiB

View file

@ -12,7 +12,6 @@ width="759" height="348" viewBox="-100 -100 759 348"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 336 KiB

After

Width:  |  Height:  |  Size: 336 KiB

View file

@ -12,7 +12,6 @@ width="809" height="398" viewBox="-88 -88 809 398"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 336 KiB

After

Width:  |  Height:  |  Size: 336 KiB

View file

@ -12,7 +12,6 @@ width="759" height="348" viewBox="-100 -100 759 348"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 336 KiB

After

Width:  |  Height:  |  Size: 336 KiB

View file

@ -12,7 +12,6 @@ width="809" height="398" viewBox="-88 -88 809 398"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 336 KiB

After

Width:  |  Height:  |  Size: 336 KiB

View file

@ -12,7 +12,6 @@ width="396" height="763" viewBox="-100 -100 396 763"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 840 KiB

After

Width:  |  Height:  |  Size: 840 KiB

View file

@ -12,7 +12,6 @@ width="396" height="763" viewBox="-88 -88 396 763"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 840 KiB

After

Width:  |  Height:  |  Size: 840 KiB

View file

@ -12,7 +12,6 @@ width="412" height="803" viewBox="-100 -100 412 803"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 840 KiB

After

Width:  |  Height:  |  Size: 840 KiB

View file

@ -12,7 +12,6 @@ width="412" height="803" viewBox="-88 -88 412 803"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 840 KiB

After

Width:  |  Height:  |  Size: 840 KiB

View file

@ -12,7 +12,6 @@ width="313" height="676" viewBox="-100 -100 313 676"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 840 KiB

After

Width:  |  Height:  |  Size: 840 KiB

View file

@ -12,7 +12,6 @@ width="313" height="676" viewBox="-88 -88 313 676"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 840 KiB

After

Width:  |  Height:  |  Size: 840 KiB

View file

@ -12,7 +12,6 @@ width="402" height="358" viewBox="-100 -100 402 358"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 324 KiB

After

Width:  |  Height:  |  Size: 324 KiB

View file

@ -12,7 +12,6 @@ width="402" height="358" viewBox="-88 -88 402 358"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 324 KiB

After

Width:  |  Height:  |  Size: 324 KiB

View file

@ -12,7 +12,6 @@ width="1950" height="1456" viewBox="-100 -100 1950 1456"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 335 KiB

After

Width:  |  Height:  |  Size: 335 KiB

View file

@ -12,7 +12,6 @@ width="1539" height="1476" viewBox="-88 -88 1539 1476"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 336 KiB

After

Width:  |  Height:  |  Size: 336 KiB

View file

@ -12,7 +12,6 @@ width="1354" height="1908" viewBox="-150 -100 1354 1908"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 340 KiB

After

Width:  |  Height:  |  Size: 340 KiB

View file

@ -12,7 +12,6 @@ width="882" height="1948" viewBox="-88 -88 882 1948"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 340 KiB

After

Width:  |  Height:  |  Size: 340 KiB

View file

@ -12,7 +12,6 @@ width="532" height="552" viewBox="-100 -100 532 552"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 325 KiB

After

Width:  |  Height:  |  Size: 325 KiB

View file

@ -12,7 +12,6 @@ width="492" height="552" viewBox="-88 -88 492 552"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 325 KiB

After

Width:  |  Height:  |  Size: 325 KiB

View file

@ -12,7 +12,6 @@ width="679" height="1330" viewBox="-100 -100 679 1330"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 652 KiB

After

Width:  |  Height:  |  Size: 652 KiB

View file

@ -12,7 +12,6 @@ width="596" height="1385" viewBox="-88 -88 596 1385"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 652 KiB

After

Width:  |  Height:  |  Size: 652 KiB

View file

@ -12,7 +12,6 @@ width="706" height="978" viewBox="-100 -100 706 978"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 651 KiB

After

Width:  |  Height:  |  Size: 651 KiB

View file

@ -12,7 +12,6 @@ width="631" height="1098" viewBox="-88 -88 631 1098"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 651 KiB

After

Width:  |  Height:  |  Size: 651 KiB

View file

@ -12,7 +12,6 @@ width="2057" height="676" viewBox="-100 -100 2057 676"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 660 KiB

After

Width:  |  Height:  |  Size: 660 KiB

View file

@ -12,7 +12,6 @@ width="2057" height="676" viewBox="-88 -88 2057 676"><style type="text/css">
stroke-linecap: round;
stroke-linejoin: round;
}
.blend {
mix-blend-mode: multiply;
}

Before

Width:  |  Height:  |  Size: 660 KiB

After

Width:  |  Height:  |  Size: 660 KiB

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