-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
2858 lines (2851 loc) · 243 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>logo-bricks</title>
<meta name="description" content="Technologies, in brick form!" />
<meta name="author" content="Scott Logic" />
<meta name="image" content="https://logo-bricks.com/thumbnail.png">
<meta itemprop="name" content="Logo Bricks">
<meta itemprop="description" content="Technologies, in brick form!">
<meta itemprop="image" content="https://logo-bricks.com/thumbnail.png">
<meta property="og:title" content="Logo Bricks">
<meta property="og:site_name" content="Logo Bricks">
<meta property="og:url" content="https://logo-bricks.com/">
<meta property="og:description" content="Technologies, in brick form!">
<meta property="og:type" content="article">
<meta property="og:image" content="https://logo-bricks.com/thumbnail.png">
<link rel="stylesheet" href="https://use.typekit.net/zhk0dtj.css">
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-262131-8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-262131-8');
</script>
</head>
<body></body>
<header>
<h1>Logo Bricks</h1>
<h2>technologies in brick form</h2>
</header>
<section class="logos">
<div class="logo javascript">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 700">
<defs>
<linearGradient id="js-yellow-gradient">
<stop offset="0" stop-color="#a47e30"/>
<stop offset="1" stop-color="#ffde8f"/>
</linearGradient>
<linearGradient id="js-black-gradient">
<stop offset="0" stop-color="#212121"/>
<stop offset="1" stop-color="#4f4f4f"/>
</linearGradient>
</defs>
<g class="row-1 piece-3 primary piece">
<polygon class="standard" points="451 529.17 520 515.17 520 565.17 451 579.17 451 529.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-1 piece-4 primary piece">
<polygon class="standard" points="313 557.17 451 529.17 451 579.17 313 607.17 313 557.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-1 piece-5 primary piece">
<polygon class="standard" points="175 585.17 313 557.17 313 607.17 175 635.17 175 585.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-1 piece-6 primary piece">
<polygon class="standard" points="106 599.17 175 585.17 175 635.17 106 649.17 106 599.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 599.17 80 589.17 80 639.17 106 649.17 106 599.17" fill="#a47e30" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-1 primary piece">
<polygon class="standard" points="485.5 472.03 520 465.17 520 515.17 485.5 522.03 485.5 472.03" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-2 contrast piece">
<polygon class="standard" points="416.5 486.03 485.5 472.03 485.5 522.03 416.5 536.03 416.5 486.03" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-3 contrast piece">
<polygon class="standard" points="382 492.89 416.5 486.03 416.5 536.03 382 542.89 382 492.89" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-4 primary piece">
<polygon class="standard" points="347.5 500.03 382 493.17 382 543.17 347.5 550.03 347.5 500.03" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-5 contrast piece">
<polygon class="standard" points="278.5 514.03 347.5 500.03 347.5 550.03 278.5 564.03 278.5 514.03" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-6 contrast piece">
<polygon class="standard" points="244 521.17 278.5 514.31 278.5 564.31 244 571.17 244 521.17" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-7 primary piece">
<polygon class="standard" points="106 549.17 244 521.17 244 571.17 106 599.17 106 549.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 549.17 80 539.17 80 589.17 106 599.17 106 549.17" fill="#a47e30" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-1 primary piece">
<polygon class="standard" points="485.5 422.03 520 415.17 520 465.17 485.5 472.03 485.5 422.03" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-2 contrast piece">
<polygon class="standard" points="451 462.23 485.5 455.37 485.5 472.03 451 478.89 451 462.23" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-3 contrast piece">
<polygon class="standard" points="451 445.87 485.5 439.01 485.5 455.68 451 462.54 451 445.87" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-4 primary piece">
<polygon class="standard" points="382 476.23 451 462.23 451 478.89 382 492.89 382 476.23" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-5 primary piece">
<polygon class="standard" points="382 459.56 451 445.56 451 462.23 382 476.23 382 459.56" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-6 contrast piece">
<polygon class="standard" points="381 442.89 485.5 421.64 485.5 438.31 381 459.56 381 442.89" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-7 primary piece">
<polygon class="standard" points="347.5 450.03 382 443.17 382 493.17 347.5 500.03 347.5 450.03" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-8 contrast piece">
<polygon class="standard" points="313 456.89 347.5 450.03 347.5 500.03 313 506.89 313 456.89" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-9 primary piece">
<polygon class="standard" points="278.5 463.75 313 456.89 313 506.89 278.5 513.75 278.5 463.75" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-10 contrast piece">
<polygon class="standard" points="244 504.17 278.5 497.31 278.5 513.98 244 520.84 244 504.17" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-11 primary piece">
<polygon class="standard" points="244 487.28 278.5 480.42 278.5 497.09 244 503.95 244 487.28" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-12 primary piece">
<polygon class="standard" points="244 470.92 278.5 464.06 278.5 480.73 244 487.59 244 470.92" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-13 primary piece">
<polygon class="standard" points="106 499.17 244 471.17 244 521.17 106 549.17 106 499.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 499.17 80 489.17 80 539.17 106 549.17 106 499.17" fill="#a47e30" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-1 primary piece">
<polygon class="standard" points="485.5 372.03 520 365.17 520 415.17 485.5 422.03 485.5 372.03" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-2 contrast piece">
<polygon class="standard" points="381 426.62 485.5 405.37 485.5 422.03 381 443.29 381 426.62" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-3 primary piece">
<polygon class="standard" points="416.5 402.7 485.5 388.7 485.5 405.37 416.5 419.37 416.5 402.7" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-4 primary piece">
<polygon class="standard" points="416.5 386.04 485.5 372.04 485.5 388.7 416.5 402.7 416.5 386.04" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-5 contrast piece">
<polygon class="standard" points="382 409.53 416.5 402.67 416.5 419.34 382 426.2 382 409.53" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-6 contrast piece">
<polygon class="standard" points="382 393.17 416.5 386.31 416.5 402.98 382 409.84 382 393.17" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-7 primary piece">
<polygon class="standard" points="347.5 400.03 382 393.17 382 443.17 347.5 450.03 347.5 400.03" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-8 contrast piece">
<polygon class="standard" points="313 406.89 347.5 400.03 347.5 450.03 313 456.89 313 406.89" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-9 primary piece">
<polygon class="standard" points="175 435.17 313 407.17 313 457.17 175 485.17 175 435.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-10 primary piece">
<polygon class="standard" points="106 449.17 175 435.17 175 485.17 106 499.17 106 449.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 449.17 80 439.17 80 489.17 106 499.17 106 449.17" fill="#a47e30" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-1 primary piece">
<polygon class="standard" points="485.5 322.03 520 315.17 520 365.17 485.5 372.03 485.5 322.03" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-2 contrast piece">
<polygon class="standard" points="416.5 336.07 485.5 322.07 485.5 372.07 416.5 386.07 416.5 336.07" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-3 contrast piece">
<polygon class="standard" points="382 343.17 416.5 336.31 416.5 386.31 382 393.17 382 343.17" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-4 primary piece">
<polygon class="standard" points="347.5 350.03 382 343.17 382 393.17 347.5 400.03 347.5 350.03" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-5 contrast piece">
<polygon class="standard" points="313 356.89 347.5 350.03 347.5 400.03 313 406.89 313 356.89" fill="#333" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-6 primary piece">
<polygon class="standard" points="244 371.17 313 357.17 313 407.17 244 421.17 244 371.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-7 primary piece">
<polygon class="standard" points="106 399.17 244 371.17 244 421.17 106 449.17 106 399.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 399.17 80 389.17 80 439.17 106 449.17 106 399.17" fill="#a47e30" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-6 piece-1 primary piece">
<polygon class="standard" points="451 279.17 520 265.17 520 315.17 451 329.17 451 279.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-6 piece-2 primary piece">
<polygon class="standard" points="313 307.17 451 279.17 451 329.17 313 357.17 313 307.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-6 piece-3 primary piece">
<polygon class="standard" points="175 335.17 313 307.17 313 357.17 175 385.17 175 335.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-6 piece-4 primary piece">
<polygon class="standard" points="106 349.17 175 335.17 175 385.17 106 399.17 106 349.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 349.17 80 339.17 80 389.17 106 399.17 106 349.17" fill="#a47e30" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-7 piece-1 primary piece">
<polygon class="standard" points="382 243.17 520 215.17 520 265.17 382 293.17 382 243.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-7 piece-2 primary piece">
<polygon class="standard" points="244 271.17 382 243.17 382 293.17 244 321.17 244 271.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-7 piece-3 primary piece">
<polygon class="standard" points="106 299.17 244 271.17 244 321.17 106 349.17 106 299.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 299.17 80 289.17 80 339.17 106 349.17 106 299.17" fill="#a47e30" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-8 piece-1 primary piece">
<polygon class="standard" points="451 179.17 520 165.17 520 215.17 451 229.17 451 179.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-8 piece-2 primary piece">
<polygon class="standard" points="313 207.17 451 179.17 451 229.17 313 257.17 313 207.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-8 piece-3 primary piece">
<polygon class="standard" points="175 235.17 313 207.17 313 257.17 175 285.17 175 235.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-8 piece-4 primary piece">
<polygon class="standard" points="106 249.17 175 235.17 175 285.17 106 299.17 106 249.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 249.17 80 239.17 80 289.17 106 299.17 106 249.17" fill="#a47e30" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-9 piece-1 primary piece">
<polygon class="standard" points="382 143.17 520 115.17 520 165.17 382 193.17 382 143.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-9 piece-2 primary piece">
<polygon class="standard" points="244 171.17 382 143.17 382 193.17 244 221.17 244 171.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-9 piece-3 primary piece">
<polygon class="standard" points="106 199.17 244 171.17 244 221.17 106 249.17 106 199.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 199.17 80 189.17 80 239.17 106 249.17 106 199.17" fill="#a47e30" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-10 piece-1 primary piece">
<polygon class="standard" points="451 79.17 520 65.17 520 115.17 451 129.17 451 79.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="451 79.17 425 69.17 425 119.17 451 129.17 451 79.17" fill="#a47e30" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="light" points="425 69.17 451 79.17 520 65.17 494 55.17 425 69.17" fill="#ffde8f" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M478.58,54.27c0,1.9,5.82,3.45,13,3.45s13-1.55,13-3.45V64.83c-14.5,6.63-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#js-yellow-gradient)"/>
<ellipse class="light" cx="491.58" cy="54.27" rx="13" ry="3.44" fill="#ffde8f" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M442.64,61c0,1.9,5.82,3.45,13,3.45s13-1.55,13-3.45V71.58c-14.5,6.63-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#js-yellow-gradient)"/>
<ellipse class="light" cx="455.64" cy="61.02" rx="13" ry="3.44" fill="#ffde8f" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-10 piece-2 primary piece">
<polygon class="standard" points="313 107.17 451 79.17 451 129.17 313 157.17 313 107.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="313 107.17 287 97.17 287 147.17 313 157.17 313 107.17" fill="#a47e30" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="light" points="287 97.17 313 107.17 451 79.17 425 69.17 287 97.17" fill="#ffde90" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M304.64,89c0,1.9,5.82,3.45,13,3.45s13-1.55,13-3.45V99.58c-14.5,6.63-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#js-yellow-gradient)"/>
<ellipse class="light" cx="317.64" cy="89.02" rx="13" ry="3.44" fill="#ffde90" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M340.58,82.27c0,1.9,5.82,3.45,13,3.45s13-1.55,13-3.45V92.83c-14.5,6.63-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#js-yellow-gradient)"/>
<ellipse class="light" cx="353.58" cy="82.27" rx="13" ry="3.44" fill="#ffde90" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M374.64,75c0,1.9,5.82,3.45,13,3.45s13-1.55,13-3.45V85.58c-14.5,6.63-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#js-yellow-gradient)"/>
<ellipse class="light" cx="387.64" cy="75.02" rx="13" ry="3.44" fill="#ffde90" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M409.58,68.27c0,1.9,5.82,3.45,13,3.45s13-1.55,13-3.45V78.83c-14.5,6.63-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#js-yellow-gradient)"/>
<ellipse class="light" cx="422.58" cy="68.27" rx="13" ry="3.44" fill="#ffde90" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-10 piece-3 primary piece">
<polygon class="standard" points="175 135.17 313 107.17 313 157.17 175 185.17 175 135.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="175 135.17 149 125.17 149 175.17 175 185.17 175 135.17" fill="#a47e30" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="light" points="149 125.17 175 135.17 313 107.17 287 97.17 149 125.17" fill="#ffde90" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M166.64,117c0,1.9,5.82,3.45,13,3.45s13-1.55,13-3.45v10.56c-14.5,6.63-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#js-yellow-gradient)"/>
<ellipse class="light" cx="179.64" cy="117.02" rx="13" ry="3.44" fill="#ffde90" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M202.58,110.27c0,1.9,5.82,3.45,13,3.45s13-1.55,13-3.45v10.56c-14.5,6.63-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#js-yellow-gradient)"/>
<ellipse class="light" cx="215.58" cy="110.27" rx="13" ry="3.44" fill="#ffde90" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M236.64,103c0,1.9,5.82,3.45,13,3.45s13-1.55,13-3.45v10.56c-14.5,6.63-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#js-yellow-gradient)"/>
<ellipse class="light" cx="249.64" cy="103.02" rx="13" ry="3.44" fill="#ffde90" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M271.58,96.27c0,1.9,5.82,3.45,13,3.45s13-1.55,13-3.45v10.56c-14.5,6.63-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#js-yellow-gradient)"/>
<ellipse class="light" cx="284.58" cy="96.27" rx="13" ry="3.44" fill="#ffde90" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-10 piece-4 primary piece">
<polygon class="standard" points="106 149.17 175 135.17 175 185.17 106 199.17 106 149.17" fill="#f2bb4d" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 149.17 80 139.17 80 189.17 106 199.17 106 149.17" fill="#a47e30" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="light" points="80 139.17 106 149.17 175 135.17 149 125.17 80 139.17" fill="#ffde8f" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M133.58,124.27c0,1.9,5.82,3.45,13,3.45s13-1.55,13-3.45v10.56c-14.5,6.63-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#js-yellow-gradient)"/>
<ellipse class="light" cx="146.58" cy="124.27" rx="13" ry="3.44" fill="#ffde8f" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M97.64,131c0,1.9,5.82,3.45,13,3.45s13-1.55,13-3.45v10.56c-14.5,6.63-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#js-yellow-gradient)"/>
<ellipse class="light" cx="110.64" cy="131.02" rx="13" ry="3.44" fill="#ffde8f" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
</svg>
<ul>
<li>
<a href="https://github.com/ScottLogic/logo-bricks/blob/master/instructions/JavaScriptInstructions.pdf">build instructions</a>
</li>
<li>
<a href="https://www.mecabricks.com/en/models/1w2rg75pj8W">3D model</a>
</li>
<li>
<a href="https://github.com/ScottLogic/logo-bricks/blob/master/models/javascript.xml">XML parts list</a>
</li>
</ul>
</div>
<div class="logo webassembly">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 700">
<defs>
<linearGradient id="wasm-purple-gradient">
<stop offset="0" stop-color="#3b2050"/>
<stop offset="1" stop-color="#6f418f"/>
</linearGradient>
<linearGradient id="wasm-white-gradient">
<stop offset="0" stop-color="#9b9b9b"/>
<stop offset="1" stop-color="#fff"/>
</linearGradient>
</defs>
<g class="row-1 piece-3 purple piece">
<polygon class="standard" points="382 543.37 520 515.37 520 565.37 382 593.37 382 543.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-1 piece-4 purple piece">
<polygon class="standard" points="244 571.37 382 543.37 382 593.37 244 621.37 244 571.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-1 piece-5 purple piece">
<polygon class="standard" points="106 599.37 244 571.37 244 621.37 106 649.37 106 599.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 599.37 80 589.37 80 639.37 106 649.37 106 599.37" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-1 purple piece">
<polygon class="standard" points="485.5 472.23 520 465.37 520 515.37 485.5 522.23 485.5 472.23" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-2 white piece">
<polygon class="standard" points="451 479.09 485.5 472.23 485.5 522.23 451 529.09 451 479.09" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-3 purple piece">
<polygon class="standard" points="416.5 486.23 451 479.37 451 529.37 416.5 536.23 416.5 486.23" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-4 white piece">
<polygon class="standard" points="382 493.37 416.5 486.51 416.5 536.51 382 543.37 382 493.37" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-5 purple piece">
<polygon class="standard" points="347.5 500.23 382 493.37 382 543.37 347.5 550.23 347.5 500.23" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-6 purple piece">
<polygon class="standard" points="313 507.09 347.5 500.23 347.5 550.23 313 557.09 313 507.09" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-7 white piece">
<polygon class="standard" points="278.5 514.23 313 507.37 313 557.37 278.5 564.23 278.5 514.23" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-8 purple piece">
<polygon class="standard" points="244 521.37 278.5 514.51 278.5 564.51 244 571.37 244 521.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-9 white piece">
<polygon class="standard" points="209.5 528.51 244 521.65 244 571.65 209.5 578.51 209.5 528.51" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-10 purple piece">
<polygon class="standard" points="140.5 542.51 209.5 528.51 209.5 578.51 140.5 592.51 140.5 542.51" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-11 purple piece">
<polygon class="standard" points="106 549.37 140.5 542.51 140.5 592.51 106 599.37 106 549.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 549.37 80 539.37 80 589.37 106 599.37 106 549.37" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-1 purple piece">
<polygon class="standard" points="485.5 422.23 520 415.37 520 465.37 485.5 472.23 485.5 422.23" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-2 white piece">
<polygon class="standard" points="451 429.09 485.5 422.23 485.5 472.23 451 479.09 451 429.09" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-3 white piece">
<polygon class="standard" points="416.5 469.28 451 462.42 451 479.09 416.5 485.95 416.5 469.28" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-4 white piece">
<polygon class="standard" points="416.5 452.62 451 445.76 451 462.42 416.5 469.28 416.5 452.62" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="416.5 452.62 390.5 442.62 390.5 459.28 416.5 469.28 416.5 452.62" fill="#9b9b9b" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-1 purple piece">
<polygon class="standard" points="485.5 372.23 520 365.37 520 415.37 485.5 422.23 485.5 372.23" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-2 white piece">
<polygon class="standard" points="451 379.09 485.5 372.23 485.5 422.23 451 429.09 451 379.09" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-3 purple piece">
<polygon class="standard" points="416.5 402.62 451 395.76 451 445.76 416.5 452.62 416.5 402.62" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-5 white piece">
<polygon class="standard" points="382 443.37 416.5 436.51 416.5 486.51 382 493.37 382 443.37" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-6 purple piece">
<polygon class="standard" points="347.5 450.23 382 443.37 382 493.37 347.5 500.23 347.5 450.23" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-7 white piece">
<polygon class="standard" points="278.5 464.51 347.5 450.51 347.5 500.51 278.5 514.51 278.5 464.51" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-8 white piece">
<polygon class="standard" points="244 471.37 278.5 464.51 278.5 514.51 244 521.37 244 471.37" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-9 white piece">
<polygon class="standard" points="175 485.37 244 471.37 244 521.37 175 535.37 175 485.37" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-10 purple piece">
<polygon class="standard" points="106 499.37 175 485.37 175 535.37 106 549.37 106 499.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 499.37 80 489.37 80 539.37 106 549.37 106 499.37" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-4 white piece">
<polygon class="standard" points="416.5 385.95 451 379.09 451 395.76 416.5 402.62 416.5 385.95" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-5 white piece">
<polygon class="standard" points="382 393.37 416.5 386.51 416.5 436.51 382 443.37 382 393.37" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-6 purple piece">
<polygon class="standard" points="347.5 400.23 382 393.37 382 443.37 347.5 450.23 347.5 400.23" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-7 white piece">
<polygon class="standard" points="313 407.09 347.5 400.23 347.5 450.23 313 457.09 313 407.09" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-8 purple piece">
<polygon class="standard" points="278.5 414.12 313 407.26 313 457.26 278.5 464.12 278.5 414.12" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-9 white piece">
<polygon class="standard" points="244 421.37 278.5 414.51 278.5 464.51 244 471.37 244 421.37" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-10 purple piece">
<polygon class="standard" points="209.5 428.23 244 421.37 244 471.37 209.5 478.23 209.5 428.23" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-11 white piece">
<polygon class="standard" points="175 435.37 209.5 428.51 209.5 478.51 175 485.37 175 435.37" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-4 piece-12 purple piece">
<polygon class="standard" points="106 449.37 175 435.37 175 485.37 106 499.37 106 449.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 449.37 80 439.37 80 489.37 106 499.37 106 449.37" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-1 purple piece">
<polygon class="standard" points="451 329.37 520 315.37 520 365.37 451 379.37 451 329.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-2 white piece">
<polygon class="standard" points="416.5 336.23 451 329.37 451 379.37 416.5 386.23 416.5 336.23" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-3 purple piece">
<polygon class="standard" points="347.5 350.23 416.5 336.23 416.5 386.23 347.5 400.23 347.5 350.23" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-4 white piece">
<polygon class="standard" points="313 357.09 347.5 350.23 347.5 400.23 313 407.09 313 357.09" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-5 purple piece">
<polygon class="standard" points="278.5 364.12 313 357.26 313 407.26 278.5 414.12 278.5 364.12" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-6 white piece">
<polygon class="standard" points="244 371.37 278.5 364.51 278.5 414.51 244 421.37 244 371.37" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-7 purple piece">
<polygon class="standard" points="209.5 378.23 244 371.37 244 421.37 209.5 428.23 209.5 378.23" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-8 white piece">
<polygon class="standard" points="175 385.37 209.5 378.51 209.5 428.51 175 435.37 175 385.37" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-5 piece-9 purple piece">
<polygon class="standard" points="106 399.37 175 385.37 175 435.37 106 449.37 106 399.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 399.37 80 389.37 80 439.37 106 449.37 106 399.37" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-6 piece-1 purple piece">
<polygon class="standard" points="451 279.37 520 265.37 520 315.37 451 329.37 451 279.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-6 piece-2 purple piece">
<polygon class="standard" points="313 307.37 451 279.37 451 329.37 313 357.37 313 307.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-6 piece-3 purple piece">
<polygon class="standard" points="175 335.37 313 307.37 313 357.37 175 385.37 175 335.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-6 piece-4 purple piece">
<polygon class="standard" points="106 349.37 175 335.37 175 385.37 106 399.37 106 349.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 349.37 80 339.37 80 389.37 106 399.37 106 349.37" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-7 piece-1 purple piece">
<polygon class="standard" points="382 243.37 520 215.37 520 265.37 382 293.37 382 243.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-7 piece-2 purple piece">
<polygon class="standard" points="244 271.37 382 243.37 382 293.37 244 321.37 244 271.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-7 piece-3 purple piece">
<polygon class="standard" points="106 299.37 244 271.37 244 321.37 106 349.37 106 299.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 299.37 80 289.37 80 339.37 106 349.37 106 299.37" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-8 piece-1 purple piece">
<polygon class="standard" points="451 179.37 520 165.37 520 215.37 451 229.37 451 179.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-8 piece-2 purple piece">
<polygon class="standard" points="313 207.37 451 179.37 451 229.37 313 257.37 313 207.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-8 piece-3 purple piece">
<polygon class="standard" points="175 235.37 313 207.37 313 257.37 175 285.37 175 235.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-8 piece-4 purple piece">
<polygon class="standard" points="106 249.37 175 235.37 175 285.37 106 299.37 106 249.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 249.37 80 239.37 80 289.37 106 299.37 106 249.37" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-9 piece-1 purple piece">
<polygon class="standard" points="382 143.37 520 115.37 520 165.37 382 193.37 382 143.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-9 piece-2 purple piece">
<polygon class="standard" points="244 171.37 382 143.37 382 193.37 244 221.37 244 171.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="244 171.37 218 161.37 218 211.37 244 221.37 244 171.37" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="light" points="218 161.37 244 171.37 382 143.37 356 133.37 218 161.37" fill="#704190" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-9 piece-3 purple piece">
<polygon class="standard" points="106 199.37 244 171.37 244 221.37 106 249.37 106 199.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 199.37 80 189.37 80 239.37 106 249.37 106 199.37" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-10 piece-1 purple piece">
<polygon class="standard" points="485.5 72.23 520 65.37 520 115.37 485.5 122.23 485.5 72.23" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="485.5 72.23 459.5 62.23 459.5 112.23 485.5 122.23 485.5 72.23" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="light" points="459.5 62.23 485.5 72.23 520 65.37 494 55.37 459.5 62.23" fill="#6f418f" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M477.14,54.08c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44V64.64c-14.5,6.62-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#wasm-purple-gradient)"/>
<ellipse class="light" cx="490.14" cy="54.08" rx="13" ry="3.44" fill="#6f418f" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-10 piece-2 purple piece">
<polygon class="standard" points="347.5 100.23 485.5 72.23 485.5 122.23 347.5 150.23 347.5 100.23" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="347.5 100.23 321.5 90.23 321.5 140.23 347.5 150.23 347.5 100.23" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="light" points="321.5 90.23 347.5 100.23 485.5 72.23 459.5 62.23 321.5 90.23" fill="#704190" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M339.14,82.08c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44V92.64c-14.5,6.62-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#wasm-purple-gradient)"/>
<ellipse class="light" cx="352.14" cy="82.08" rx="13" ry="3.44" fill="#704190" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M375.08,75.33c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44V85.89c-14.5,6.62-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#wasm-purple-gradient)"/>
<ellipse class="light" cx="388.08" cy="75.33" rx="13" ry="3.44" fill="#704190" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M409.14,68.08c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44V78.64c-14.5,6.62-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#wasm-purple-gradient)"/>
<ellipse class="light" cx="422.14" cy="68.08" rx="13" ry="3.44" fill="#704190" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M444.08,61.33c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44V71.89c-14.5,6.62-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#wasm-purple-gradient)"/>
<ellipse class="light" cx="457.08" cy="61.33" rx="13" ry="3.44" fill="#704190" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-9 piece-2 purple piece top">
<path class="gradient" d="M271.58,146.47c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44V157c-14.5,6.62-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#wasm-purple-gradient)"/>
<ellipse class="light" cx="284.58" cy="146.47" rx="13" ry="3.44" fill="#704190" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M305.64,139.22c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44v10.56c-14.5,6.62-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#wasm-purple-gradient)"/>
<ellipse class="light" cx="318.64" cy="139.22" rx="13" ry="3.44" fill="#704190" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-10 piece-3 purple piece">
<polygon class="standard" points="140.5 142.51 278.5 114.51 278.5 164.51 140.5 192.51 140.5 142.51" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="140.5 142.51 114.5 132.51 114.5 182.51 140.5 192.51 140.5 142.51" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="light" points="114.5 132.51 140.5 142.51 278.5 114.51 252.5 104.51 114.5 132.51" fill="#704190" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M132.14,124.36c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44v10.56c-14.5,6.62-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#wasm-purple-gradient)"/>
<ellipse class="light" cx="145.14" cy="124.36" rx="13" ry="3.44" fill="#704190" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M168.08,117.61c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44v10.56c-14.5,6.62-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#wasm-purple-gradient)"/>
<ellipse class="light" cx="181.08" cy="117.61" rx="13" ry="3.44" fill="#704190" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M202.14,110.36c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44v10.56c-14.5,6.62-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#wasm-purple-gradient)"/>
<ellipse class="light" cx="215.14" cy="110.36" rx="13" ry="3.44" fill="#704190" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M237.08,103.61c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44v10.56c-14.5,6.62-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#wasm-purple-gradient)"/>
<ellipse class="light" cx="250.08" cy="103.61" rx="13" ry="3.44" fill="#704190" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-10 piece-4 purple piece">
<polygon class="standard" points="106 149.37 140.5 142.51 140.5 192.51 106 199.37 106 149.37" fill="#5e2c80" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 149.37 80 139.37 80 189.37 106 199.37 106 149.37" fill="#3b2050" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="light" points="80 139.37 106 149.37 140.5 142.51 114.5 132.51 80 139.37" fill="#6f418f" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<path class="gradient" d="M97.64,131.22c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44v10.56c-14.5,6.62-26,0-26,0Z" stroke="#252525" stroke-linejoin="round" stroke-width="0.5" fill="url(#wasm-purple-gradient)"/>
<ellipse class="light" cx="110.64" cy="131.22" rx="13" ry="3.44" fill="#6f418f" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
</svg>
<ul>
<li>
<a href="https://github.com/ScottLogic/logo-bricks/blob/master/instructions/WebAssemblyInstructions.pdf">build instructions</a>
</li>
<li>
<a href="https://www.mecabricks.com/en/models/eVaP76yxvzB">3D model</a>
</li>
<li>
<a href="https://github.com/ScottLogic/logo-bricks/blob/master/models/webassembly.xml">XML parts list</a>
</li>
</ul>
</div>
<div class="logo d3">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 700">
<defs>
<linearGradient id="d3-white-gradient">
<stop offset="0" stop-color="#9b9b9b" />
<stop offset="1" stop-color="#fff" />
</linearGradient>
<linearGradient id="d3-contrast1-gradient">
<stop offset="0" stop-color="#CCA549" />
<stop offset="1" stop-color="#FFDC82" />
</linearGradient>
<linearGradient id="d3-contrast2-gradient">
<stop offset="0" stop-color="#C48545" />
<stop offset="1" stop-color="#FFBB73" />
</linearGradient>
<linearGradient id="d3-contrast3-gradient">
<stop offset="0" stop-color="#C96F44" />
<stop offset="1" stop-color="#FFA070" />
</linearGradient>
</defs>
<g class="row-1 piece-3 primary piece">
<polygon class="standard" points="416.5 536.62 520 515.76 520 565.76 416.5 586.62 416.5 536.62" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-1 piece-4 primary piece">
<polygon class="standard" points="313 557.48 416.5 536.62 416.5 586.62 313 607.48 313 557.48" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-1 piece-5 primary piece">
<polygon class="standard" points="175 585.48 313 557.48 313 607.48 175 635.48 175 585.48" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-1 piece-6 primary piece">
<polygon class="standard" points="106 599.37 175 585.37 175 635.37 106 649.37 106 599.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="dark" points="106 599.37 80 589.37 80 639.37 106 649.37 106 599.37" fill="#9b9b9b" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
</g>
<g class="row-2 piece-1 primary piece">
<polygon class="standard" points="451 479.76 520 465.76 520 515.76 451 529.76 451 479.76" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-2 piece-2 contrast1 piece">
<polygon class="standard" points="382 493.76 451 479.76 451 529.76 382 543.76 382 493.76" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-2 piece-3 contrast1 piece">
<polygon class="standard" points="347.5 500.73 382 493.87 382 543.87 347.5 550.73 347.5 500.73" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-2 piece-4 contrast1 piece">
<polygon class="standard" points="278.5 514.62 347.5 500.62 347.5 550.62 278.5 564.62 278.5 514.62" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-2 piece-5 primary piece">
<polygon class="standard" points="244 521.37 278.5 514.51 278.5 564.51 244 571.37 244 521.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-2 piece-6 contrast1 piece">
<polygon class="standard" points="140.5 542.51 244 521.65 244 571.65 140.5 592.51 140.5 542.51" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-2 piece-7 primary piece">
<polygon class="standard" points="106 549.37 140.5 542.51 140.5 592.51 106 599.37 106 549.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="dark" points="106 549.37 80 539.37 80 589.37 106 599.37 106 549.37" fill="#9b9b9b" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
</g>
<g class="row-3 piece-1 primary piece">
<polygon class="standard" points="485.5 422.73 520 415.87 520 465.87 485.5 472.73 485.5 422.73" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-3 piece-2 contrast1 piece">
<polygon class="standard" points="416.5 436.69 485.5 422.69 485.5 472.69 416.5 486.69 416.5 436.69" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-3 piece-3 contrast1 piece">
<polygon class="standard" points="313 457.55 416.5 436.69 416.5 486.69 313 507.55 313 457.55" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-3 piece-4 primary piece">
<polygon class="standard" points="278.5 464.44 313 457.58 313 507.58 278.5 514.44 278.5 464.44" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-3 piece-5 contrast1 piece">
<polygon class="standard" points="140.5 492.55 278.5 464.55 278.5 514.55 140.5 542.55 140.5 492.55" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-3 piece-6 primary piece">
<polygon class="standard" points="106 499.37 140.5 492.51 140.5 542.51 106 549.37 106 499.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="dark" points="106 499.37 80 489.37 80 539.37 106 549.37 106 499.37" fill="#9b9b9b" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
</g>
<g class="row-4 piece-1 primary piece">
<polygon class="standard" points="485.5 372.73 520 365.87 520 415.87 485.5 422.73 485.5 372.73" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-4 piece-2 contrast2 piece">
<polygon class="standard" points="451 379.59 485.5 372.73 485.5 422.73 451 429.59 451 379.59" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-4 piece-3 contrast1 piece">
<polygon class="standard" points="416.5 386.45 451 379.59 451 429.59 416.5 436.45 416.5 386.45" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-4 piece-4 primary piece">
<polygon class="standard" points="382 393.37 416.5 386.51 416.5 436.51 382 443.37 382 393.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-4 piece-5 primary piece">
<polygon class="standard" points="313 407.37 382 393.37 382 443.37 313 457.37 313 407.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-4 piece-6 contrast2 piece">
<polygon class="standard" points="278.5 414.44 313 407.58 313 457.58 278.5 464.44 278.5 414.44" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-4 piece-7 contrast1 piece">
<polygon class="standard" points="209.5 428.44 278.5 414.44 278.5 464.44 209.5 478.44 209.5 428.44" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-4 piece-8 primary piece">
<polygon class="standard" points="140.5 442.44 209.5 428.44 209.5 478.44 140.5 492.44 140.5 442.44" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-4 piece-9 primary piece">
<polygon class="standard" points="106 449.37 140.5 442.51 140.5 492.51 106 499.37 106 449.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="dark" points="106 449.37 80 439.37 80 489.37 106 499.37 106 449.37" fill="#9b9b9b" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
</g>
<g class="row-5 piece-1 primary piece">
<polygon class="standard" points="451 329.76 520 315.76 520 365.76 451 379.76 451 329.76" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-5 piece-2 contrast2 piece">
<polygon class="standard" points="416.5 336.45 451 329.59 451 379.59 416.5 386.45 416.5 336.45" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-5 piece-3 contrast1 piece">
<polygon class="standard" points="347.5 350.23 416.5 336.23 416.5 386.23 347.5 400.23 347.5 350.23" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-5 piece-4 primary piece">
<polygon class="standard" points="313 357.09 347.5 350.23 347.5 400.23 313 407.09 313 357.09" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-5 piece-5 contrast1 piece">
<polygon class="standard" points="278.5 364.44 313 357.58 313 407.58 278.5 414.44 278.5 364.44" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-5 piece-6 contrast2 piece">
<polygon class="standard" points="244 371.37 278.5 364.51 278.5 414.51 244 421.37 244 371.37" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-5 piece-7 primary piece">
<polygon class="standard" points="175 385.37 244 371.37 244 421.37 175 435.37 175 385.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-5 piece-8 primary piece">
<polygon class="standard" points="106 399.37 175 385.37 175 435.37 106 449.37 106 399.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="dark" points="106 399.37 80 389.37 80 439.37 106 449.37 106 399.37" fill="#9b9b9b" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
</g>
<g class="row-6 piece-1 primary piece">
<polygon class="standard" points="451 279.76 520 265.76 520 315.76 451 329.76 451 279.76" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-6 piece-2 contrast1 piece">
<polygon class="standard" points="416.5 286.45 451 279.59 451 329.59 416.5 336.45 416.5 286.45" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-6 piece-3 contrast2 piece">
<polygon class="standard" points="382 293.37 416.5 286.51 416.5 336.51 382 343.37 382 293.37" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-6 piece-3 contrast1 piece">
<polygon class="standard" points="347.5 300.23 382 293.37 382 343.37 347.5 350.23 347.5 300.23" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-6 piece-5 primary piece">
<polygon class="standard" points="313 307.09 347.5 300.23 347.5 350.23 313 357.09 313 307.09" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-6 piece-6 contrast2 piece">
<polygon class="standard" points="278.5 314.44 313 307.58 313 357.58 278.5 364.44 278.5 314.44" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-6 piece-7 contrast1 piece">
<polygon class="standard" points="244 321.37 278.5 314.51 278.5 364.51 244 371.37 244 321.37" fill="#FDCE4D" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-6 piece-8 primary piece">
<polygon class="standard" points="209.5 328.23 244 321.37 244 371.37 209.5 378.23 209.5 328.23" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-6 piece-9 primary piece">
<polygon class="standard" points="140.5 342.44 209.5 328.44 209.5 378.44 140.5 392.44 140.5 342.44" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-6 piece-10 primary piece">
<polygon class="standard" points="106 349.37 140.5 342.51 140.5 392.51 106 399.37 106 349.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="dark" points="106 349.37 80 339.37 80 389.37 106 399.37 106 349.37" fill="#9b9b9b" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
</g>
<g class="row-7 piece-1 primary piece">
<polygon class="standard" points="485.5 222.73 520 215.87 520 265.87 485.5 272.73 485.5 222.73" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-7 piece-2 contrast2 piece">
<polygon class="standard" points="416.5 236.69 485.5 222.69 485.5 272.69 416.5 286.69 416.5 236.69" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-7 piece-3 primary piece">
<polygon class="standard" points="382 243.37 416.5 236.51 416.5 286.51 382 293.37 382 243.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-7 piece-4 primary piece">
<polygon class="standard" points="313 257.37 382 243.37 382 293.37 313 307.37 313 257.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-7 piece-5 contrast2 piece">
<polygon class="standard" points="244 271.37 313 257.37 313 307.37 244 321.37 244 271.37" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-7 piece-6 contrast2 piece">
<polygon class="standard" points="209.5 278.23 244 271.37 244 321.37 209.5 328.23 209.5 278.23" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-7 piece-7 primary piece">
<polygon class="standard" points="175 285.09 209.5 278.23 209.5 328.23 175 335.09 175 285.09" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-7 piece-8 primary piece">
<polygon class="standard" points="106 299.37 175 285.37 175 335.37 106 349.37 106 299.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="dark" points="106 299.37 80 289.37 80 339.37 106 349.37 106 299.37" fill="#9b9b9b" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
</g>
<g class="row-8 piece-1 primary piece">
<polygon class="standard" points="485.5 172.73 520 165.87 520 215.87 485.5 222.73 485.5 172.73" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-8 piece-2 contrast2 piece">
<polygon class="standard" points="347.5 200.73 485.5 172.73 485.5 222.73 347.5 250.73 347.5 200.73" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-8 piece-3 contrast3 piece">
<polygon class="standard" points="313 207.09 347.5 200.23 347.5 250.23 313 257.09 313 207.09" fill="#FB8647" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-8 piece-4 primary piece">
<polygon class="standard" points="278.5 214.44 313 207.58 313 257.58 278.5 264.44 278.5 214.44" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-8 piece-5 contrast2 piece">
<polygon class="standard" points="209.5 228.44 278.5 214.44 278.5 264.44 209.5 278.44 209.5 228.44" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-8 piece-6 contrast2 piece">
<polygon class="standard" points="140.5 242.44 209.5 228.44 209.5 278.44 140.5 292.44 140.5 242.44" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-8 piece-7 primary piece">
<polygon class="standard" points="106 249.37 140.5 242.51 140.5 292.51 106 299.37 106 249.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="dark" points="106 249.37 80 239.37 80 289.37 106 299.37 106 249.37" fill="#9b9b9b" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
</g>
<g class="row-9 piece-1 primary piece">
<polygon class="standard" points="451 129.76 520 115.76 520 165.76 451 179.76 451 129.76" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-9 piece-2 contrast2 piece">
<polygon class="standard" points="382 143.76 451 129.76 451 179.76 382 193.76 382 143.76" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-9 piece-3 contrast3 piece">
<polygon class="standard" points="278.5 164.62 382 143.76 382 193.76 278.5 214.62 278.5 164.62" fill="#FB8647" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-9 piece-4 primary piece">
<polygon class="standard" points="244 171.37 278.5 164.51 278.5 214.51 244 221.37 244 171.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-9 piece-5 contrast2 piece">
<polygon class="standard" points="140.5 192.51 244 171.65 244 221.65 140.5 242.51 140.5 192.51" fill="#F5A548" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
</g>
<g class="row-9 piece-6 primary piece">
<polygon class="standard" points="106 199.37 140.5 192.51 140.5 242.51 106 249.37 106 199.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="dark" points="106 199.37 80 189.37 80 239.37 106 249.37 106 199.37" fill="#9b9b9b" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
</g>
<g class="row-10 piece-1 primary piece">
<polygon class="standard" points="416.5 86.62 520 65.76 520 115.76 416.5 136.62 416.5 86.62" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="dark" points="416.5 86.62 390.5 76.62 390.5 126.62 416.5 136.62 416.5 86.62" fill="#9b9b9b" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="light" points="390.5 76.62 416.5 86.62 520 65.76 494 55.76 390.5 76.62" fill="#fff" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
<path class="gradient" d="M408.14,68.47c0,1.9,5.83,3.44,13,3.44s13-1.54,13-3.44V79c-14.5,6.62-26,0-26,0Z" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" fill="url(#d3-white-gradient)" />
<ellipse class="light" cx="421.14" cy="68.47" rx="13" ry="3.44" fill="#fff" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"
/>
<path class="gradient" d="M444.08,61.72c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44V72.28c-14.5,6.62-26,0-26,0Z" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" fill="url(#d3-white-gradient)" />
<ellipse class="light" cx="457.08" cy="61.72" rx="13" ry="3.44" fill="#fff" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"
/>
<path class="gradient" d="M478.14,54.47c0,1.9,5.83,3.44,13,3.44s13-1.54,13-3.44V65c-14.5,6.62-26,0-26,0Z" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" fill="url(#d3-white-gradient)" />
<ellipse class="light" cx="491.14" cy="54.47" rx="13" ry="3.44" fill="#fff" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"
/>
</g>
<g class="row-10 piece-2 primary piece">
<polygon class="standard" points="313 107.48 416.5 86.62 416.5 136.62 313 157.48 313 107.48" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="dark" points="313 107.48 287 97.48 287 147.48 313 157.48 313 107.48" fill="#9b9b9b" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
<polygon class="light" points="287 97.48 313 107.48 416.5 86.62 390.5 76.62 287 97.48" fill="#fff" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
<path class="gradient" d="M304.65,89.33c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44V99.89c-14.51,6.62-26,0-26,0Z" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" fill="url(#d3-white-gradient)" />
<ellipse class="light" cx="317.65" cy="89.33" rx="13" ry="3.44" fill="#fff" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"
/>
<path class="gradient" d="M340.58,82.58c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44V93.14c-14.5,6.62-26,0-26,0Z" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" fill="url(#d3-white-gradient)" />
<ellipse class="light" cx="353.58" cy="82.58" rx="13" ry="3.44" fill="#fff" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"
/>
<path class="gradient" d="M374.65,75.33c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44V85.89c-14.51,6.62-26,0-26,0Z" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" fill="url(#d3-white-gradient)" />
<ellipse class="light" cx="387.65" cy="75.33" rx="13" ry="3.44" fill="#fff" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"
/>
</g>
<g class="row-10 piece-3 primary piece">
<polygon class="standard" points="175 135.48 313 107.48 313 157.48 175 185.48 175 135.48" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="dark" points="175 135.48 149 125.48 149 175.48 175 185.48 175 135.48" fill="#9b9b9b" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
<polygon class="light" points="149 125.48 175 135.48 313 107.48 287 97.48 149 125.48" fill="#fff" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
<path class="gradient" d="M166.64,117.33c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44v10.56c-14.5,6.62-26,0-26,0Z" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" fill="url(#d3-white-gradient)" />
<ellipse class="light" cx="179.64" cy="117.33" rx="13" ry="3.44" fill="#fff" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"
/>
<path class="gradient" d="M202.58,110.58c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44v10.56c-14.5,6.62-26,0-26,0Z" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" fill="url(#d3-white-gradient)" />
<ellipse class="light" cx="215.58" cy="110.58" rx="13" ry="3.44" fill="#fff" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"
/>
<path class="gradient" d="M236.64,103.33c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44v10.56c-14.5,6.62-26,0-26,0Z" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" fill="url(#d3-white-gradient)" />
<ellipse class="light" cx="249.64" cy="103.33" rx="13" ry="3.44" fill="#fff" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"
/>
<path class="gradient" d="M271.58,96.58c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44v10.56c-14.5,6.62-26,0-26,0Z" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" fill="url(#d3-white-gradient)" />
<ellipse class="light" cx="284.58" cy="96.58" rx="13" ry="3.44" fill="#fff" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"
/>
</g>
<g class="row-10 piece-4 primary piece">
<polygon class="standard" points="106 149.37 175 135.37 175 185.37 106 199.37 106 149.37" fill="#f3f3f3" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" />
<polygon class="dark" points="106 149.37 80 139.37 80 189.37 106 199.37 106 149.37" fill="#9b9b9b" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
<polygon class="light" points="80 139.37 106 149.37 175 135.37 149 125.37 80 139.37" fill="#fff" stroke="#252525" stroke-linejoin="round"
stroke-width="0.5" />
<path class="gradient" d="M97.64,131.22c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44v10.56c-14.5,6.62-26,0-26,0Z" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" fill="url(#d3-white-gradient)" />
<ellipse class="light" cx="110.64" cy="131.22" rx="13" ry="3.44" fill="#fff" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"
/>
<path class="gradient" d="M133.58,124.47c0,1.9,5.82,3.44,13,3.44s13-1.54,13-3.44V135c-14.5,6.62-26,0-26,0Z" stroke="#252525"
stroke-linejoin="round" stroke-width="0.5" fill="url(#d3-white-gradient)" />
<ellipse class="light" cx="146.58" cy="124.47" rx="13" ry="3.44" fill="#fff" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"
/>
</g>
</svg>
<ul>
<li>
<a href="https://github.com/ScottLogic/logo-bricks/blob/master/instructions/D3Instructions.pdf">build instructions</a>
</li>
<li>
<a href="https://www.mecabricks.com/en/models/BLvGWmx9vGy">3D model</a>
</li>
<li>
<a href="https://github.com/ScottLogic/logo-bricks/blob/master/models/d3.xml">XML parts list</a>
</li>
</ul>
</div>
<div class="logo typescript">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 600 700">
<defs>
<linearGradient id="ts-blue-gradient">
<stop offset="0" stop-color="#2c4063"/>
<stop offset="1" stop-color="#4f6ba1"/>
</linearGradient>
<linearGradient id="ts-white-gradient">
<stop offset="0" stop-color="#9b9b9b"/>
<stop offset="1" stop-color="#fff"/>
</linearGradient>
</defs>
<g class="row-1 piece-3 blue piece">
<polygon class="standard" points="451 529.17 520 515.17 520 565.17 451 579.17 451 529.17" fill="#375591" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-1 piece-4 blue piece">
<polygon class="standard" points="313 557.17 451 529.17 451 579.17 313 607.17 313 557.17" fill="#375591" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-1 piece-5 blue piece">
<polygon class="standard" points="175 585.17 313 557.17 313 607.17 175 635.17 175 585.17" fill="#375591" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-1 piece-6 blue piece">
<polygon class="standard" points="106 599.17 175 585.17 175 635.17 106 649.17 106 599.17" fill="#375591" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 599.17 80 589.17 80 639.17 106 649.17 106 599.17" fill="#2c4063" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-1 blue piece">
<polygon class="standard" points="485.5 472.03 520 465.17 520 515.17 485.5 522.03 485.5 472.03" fill="#375591" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-2 white piece">
<polygon class="standard" points="382 493.17 485.5 472.31 485.5 522.31 382 543.17 382 493.17" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-3 blue piece">
<polygon class="standard" points="347.5 500.03 382 493.17 382 543.17 347.5 550.03 347.5 500.03" fill="#375591" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-4 blue piece">
<polygon class="standard" points="313 506.89 347.5 500.03 347.5 550.03 313 556.89 313 506.89" fill="#375591" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-5 white piece">
<polygon class="standard" points="278.5 513.75 313 506.89 313 556.89 278.5 563.75 278.5 513.75" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-6 blue piece">
<polygon class="standard" points="244 521.17 278.5 514.31 278.5 564.31 244 571.17 244 521.17" fill="#375591" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-2 piece-7 blue piece">
<polygon class="standard" points="106 549.17 244 521.17 244 571.17 106 599.17 106 549.17" fill="#375591" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
<polygon class="dark" points="106 549.17 80 539.17 80 589.17 106 599.17 106 549.17" fill="#2c4063" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-1 blue piece">
<polygon class="standard" points="485.5 422.03 520 415.17 520 465.17 485.5 472.03 485.5 422.03" fill="#375591" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-2 white piece">
<polygon class="standard" points="451 462.23 485.5 455.37 485.5 472.03 451 478.89 451 462.23" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-3 white piece">
<polygon class="standard" points="451 445.87 485.5 439.01 485.5 455.68 451 462.54 451 445.87" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-4 blue piece">
<polygon class="standard" points="382 476.23 451 462.23 451 478.89 382 492.89 382 476.23" fill="#375591" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-5 blue piece">
<polygon class="standard" points="382 459.56 451 445.56 451 462.23 382 476.23 382 459.56" fill="#375591" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-6 white piece">
<polygon class="standard" points="381 442.89 485.5 421.64 485.5 438.31 381 459.56 381 442.89" fill="#f3f3f3" stroke="#252525" stroke-linejoin="round" stroke-width="0.5"/>
</g>
<g class="row-3 piece-7 blue piece">