-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex old.html
More file actions
1679 lines (1673 loc) · 242 KB
/
index old.html
File metadata and controls
1679 lines (1673 loc) · 242 KB
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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="google" content="notranslate">
<link href="https://cdn.jsdelivr.net/npm/beercss@3.6.13/dist/cdn/beer.min.css" rel="stylesheet">
<script type="module" src="https://cdn.jsdelivr.net/npm/beercss@3.6.13/dist/cdn/beer.min.js"></script></script>
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@7.4.47/css/materialdesignicons.min.css" rel="stylesheet">
<link href="/static/css/theme.css" rel="stylesheet">
<!-- <link href="/static/css/style.css" rel="stylesheet"> -->
<title>TheCodingJ's</title>
<meta content="TheCodingJ's" property="og:title">
<meta content="A team of passionate developers." property="og:description">
<meta content="https://thecodingjsoftware.github.io" property="og:url">
<meta content="/static/images/J.png" property="og:image">
<meta content="#219EFF" data-react-helmet="true" name="theme-color">
<link rel="icon" type="image/x-icon" href="/static/images/J.png">
</head>
<style>
.row {
display: flex;
align-items: stretch;
}
.l, .max {
flex: 1;
display: flex;
flex-direction: column;
}
.l article, .max article {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
h4{
display: block !important;
margin-top: 0.5rem !important;
margin-bottom: 0.9rem !important;
margin-left: 0 !important;
margin-right: 0 !important;
}
</style>
<body class="dark">
<main class="responsive">
<br>
<div class="row max center-align">
<img class="responsive round border center-align" style="max-width: 300px" src="/static/images/J.png"></img>
<a class="link small" href="https://github.com/TheCodingJsoftware"><i class="mdi mdi-github"></i></a>
<h1 class="center-align">TheCodingJ's</h1>
</div>
<p class="center-align">A team of passionate developers.</p>
<br>
<h2 class="center-align">Software</h2>
<div class="small-divider"></div>
<article class="margin">
<article class="border no-padding small-round bottom-margin m s">
<img class="responsive" style="max-width: 1000px" src="/static/images/invigo.png"">
</article>
<div class="row no-margin">
<article class="border no-padding small-round l">
<img class="responsive" style="max-width: 1000px" src="/static/images/invigo.png"">
</article>
<article class="border small-round max">
<div class="row">
<img class="small" src="https://raw.githubusercontent.com/TheCodingJsoftware/Invigo/master/icons/icon.png">
<h4 class="max left-align small">Inivgo</h4>
</div>
<p>A state-of-the-art assembly-based <b>Inventory Manager</b>, designed to streamline the process of component <b>tracking</b>, <b>quoting</b> and <b>management</b>.</p>
<nav>
<a class="link" href="https://github.com/TheCodingJsoftware/Inventory-Manager"><i class="mdi mdi-github"></i></a>
</nav>
</article>
</div>
<div class="grid l m">
<div class="row">
<div class="border row small-round">
<article class="transparent">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#0277BD"
d="M24.047,5c-1.555,0.005-2.633,0.142-3.936,0.367c-3.848,0.67-4.549,2.077-4.549,4.67V14h9v2H15.22h-4.35c-2.636,0-4.943,1.242-5.674,4.219c-0.826,3.417-0.863,5.557,0,9.125C5.851,32.005,7.294,34,9.931,34h3.632v-5.104c0-2.966,2.686-5.896,5.764-5.896h7.236c2.523,0,5-1.862,5-4.377v-8.586c0-2.439-1.759-4.263-4.218-4.672C27.406,5.359,25.589,4.994,24.047,5z M19.063,9c0.821,0,1.5,0.677,1.5,1.502c0,0.833-0.679,1.498-1.5,1.498c-0.837,0-1.5-0.664-1.5-1.498C17.563,9.68,18.226,9,19.063,9z">
</path>
<path fill="#FFC107"
d="M23.078,43c1.555-0.005,2.633-0.142,3.936-0.367c3.848-0.67,4.549-2.077,4.549-4.67V34h-9v-2h9.343h4.35c2.636,0,4.943-1.242,5.674-4.219c0.826-3.417,0.863-5.557,0-9.125C41.274,15.995,39.831,14,37.194,14h-3.632v5.104c0,2.966-2.686,5.896-5.764,5.896h-7.236c-2.523,0-5,1.862-5,4.377v8.586c0,2.439,1.759,4.263,4.218,4.672C19.719,42.641,21.536,43.006,23.078,43z M28.063,39c-0.821,0-1.5-0.677-1.5-1.502c0-0.833,0.679-1.498,1.5-1.498c0.837,0,1.5,0.664,1.5,1.498C29.563,38.32,28.899,39,28.063,39z">
</path>
</svg>
<p class="center-align">Python</p>
</article>
<article class="transparent">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0,0,256,256" style="fill:#000000;">
<g fill="#3cba4b" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<g transform="scale(5.12,5.12)">
<path
d="M9.43359,8c-0.52734,0 -0.96094,0.17969 -1.33203,0.55078c-1.83594,1.82422 -3.67578,3.64063 -5.52344,5.45313c-0.39062,0.38281 -0.57812,0.82813 -0.57812,1.36328c0.00781,8.03906 0.00781,24.01563 0.00781,25.51563l0.07031,1.11328h1c1.47266,0 25.44531,-0.00391 37.47266,0.00391c0.54297,0 0.99609,-0.1875 1.39453,-0.57812c1.81641,-1.8125 3.64063,-3.61328 5.47266,-5.40625c0.39063,-0.39062 0.58203,-0.84375 0.58203,-1.39844c-0.00781,-8.37109 0,-25.61719 0,-25.61719v-1zM19.09375,14c0.94141,0.00391 1.875,0.08203 2.80078,0.32031c1.87891,0.48047 3.21484,1.58203 4,3.33984c0.46094,1.03516 0.73047,2.12109 0.88672,3.23438c0.16406,1.19531 0.23828,2.40234 0.21094,3.60547c-0.03516,1.5625 -0.14453,3.11328 -0.57812,4.625c-0.30469,1.05859 -0.76953,2.03516 -1.54297,2.83984c-0.29297,0.30859 -0.63281,0.57422 -0.96875,0.87891c0.77734,1.23828 1.5625,2.49219 2.37891,3.78906c-0.98828,0.45703 -1.95312,0.90234 -2.96484,1.36719c-0.85156,-1.37891 -1.69531,-2.74609 -2.53125,-4.09375c-1.66406,0.22656 -3.28125,0.17578 -4.875,-0.24219c-1.83594,-0.48047 -3.14062,-1.57031 -3.88281,-3.30469c-0.41406,-0.96484 -0.65625,-1.96484 -0.80859,-2.99219c-0.16406,-1.09766 -0.23047,-2.20703 -0.21875,-3.31641c0.01953,-1.64453 0.11719,-3.28516 0.58984,-4.87891c0.17188,-0.58203 0.39063,-1.15625 0.64453,-1.70703c0.73047,-1.58203 1.98438,-2.57422 3.65625,-3.07031c0.73828,-0.21484 1.48828,-0.33984 2.25391,-0.375c0.31641,-0.01172 0.63281,-0.01953 0.94922,-0.01953zM31,16h3v4h4v3h-4c0,0 -0.01172,3.10938 0,5c0.00391,0.53125 0.01953,1.34766 0.0625,1.875c0.00781,0.14063 0.04688,0.27734 0.08203,0.41797c0.09375,0.33594 0.31641,0.55859 0.65234,0.62891c0.26563,0.05469 0.53906,0.08203 0.80859,0.07813c0.625,-0.01172 1.41406,-0.10937 2.03906,-0.13281c0.05859,-0.00391 0.11328,0.01172 0.21875,0.01953c0.06641,0.78516 0.10938,1.87891 0.13672,2.69531c-0.28516,0.05469 -0.55078,0.10547 -0.8125,0.15234c-0.93359,0.16797 -2.03906,0.31641 -2.98437,0.23438c-0.49609,-0.04687 -0.98047,-0.14844 -1.44141,-0.34375c-0.60547,-0.26172 -1.03516,-0.6875 -1.29297,-1.29687c-0.30859,-0.71484 -0.46875,-1.55859 -0.46875,-2.32812v-7h-2v-3h2zM18.99609,17.01953c-0.59375,0 -1.1875,0.07031 -1.77734,0.21484c-1.04687,0.26172 -1.83203,0.81641 -2.29687,1.70313c-0.11328,0.21094 -0.21875,0.42969 -0.30078,0.65234c-0.41406,1.07422 -0.57812,2.19141 -0.60937,3.32031c-0.02734,1.04297 -0.00391,2.08984 0.05078,3.13281c0.05469,0.92969 0.24609,1.83984 0.60547,2.72266c0.44531,1.08984 1.29297,1.77344 2.55078,2.05469c1.19922,0.26953 2.40234,0.26563 3.59766,-0.00781c1.17578,-0.27344 2.01172,-0.90234 2.43359,-1.93359c0.10938,-0.26172 0.20703,-0.53125 0.28516,-0.80469c0.37109,-1.28516 0.41016,-2.59766 0.46484,-4.28906c-0.05859,-0.60937 -0.11719,-1.59375 -0.24219,-2.57031c-0.10156,-0.80859 -0.33203,-1.59375 -0.73828,-2.32812c-0.47266,-0.85547 -1.23047,-1.40234 -2.25,-1.65234c-0.58984,-0.14453 -1.18359,-0.21484 -1.77344,-0.21484z">
</path>
</g>
</g>
</svg>
<p class="center-align">PyQt6</p>
</article>
</div>
<div class="border max small-round padding">
<h6>Skills involved</h6>
<li>Data processing and scheduling</li>
<li>Server and client communication</li>
</div>
</div>
</div>
<div class="top-margin s">
<article class="border row small-round middle-align wrap">
<article class="transparent no-padding">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#0277BD"
d="M24.047,5c-1.555,0.005-2.633,0.142-3.936,0.367c-3.848,0.67-4.549,2.077-4.549,4.67V14h9v2H15.22h-4.35c-2.636,0-4.943,1.242-5.674,4.219c-0.826,3.417-0.863,5.557,0,9.125C5.851,32.005,7.294,34,9.931,34h3.632v-5.104c0-2.966,2.686-5.896,5.764-5.896h7.236c2.523,0,5-1.862,5-4.377v-8.586c0-2.439-1.759-4.263-4.218-4.672C27.406,5.359,25.589,4.994,24.047,5z M19.063,9c0.821,0,1.5,0.677,1.5,1.502c0,0.833-0.679,1.498-1.5,1.498c-0.837,0-1.5-0.664-1.5-1.498C17.563,9.68,18.226,9,19.063,9z">
</path>
<path fill="#FFC107"
d="M23.078,43c1.555-0.005,2.633-0.142,3.936-0.367c3.848-0.67,4.549-2.077,4.549-4.67V34h-9v-2h9.343h4.35c2.636,0,4.943-1.242,5.674-4.219c0.826-3.417,0.863-5.557,0-9.125C41.274,15.995,39.831,14,37.194,14h-3.632v5.104c0,2.966-2.686,5.896-5.764,5.896h-7.236c-2.523,0-5,1.862-5,4.377v8.586c0,2.439,1.759,4.263,4.218,4.672C19.719,42.641,21.536,43.006,23.078,43z M28.063,39c-0.821,0-1.5-0.677-1.5-1.502c0-0.833,0.679-1.498,1.5-1.498c0.837,0,1.5,0.664,1.5,1.498C29.563,38.32,28.899,39,28.063,39z">
</path>
</svg>
<p class="center-align">Python</p>
</article>
<article class="transparent no-padding">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0,0,256,256" style="fill:#000000;">
<g fill="#3cba4b" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<g transform="scale(5.12,5.12)">
<path
d="M9.43359,8c-0.52734,0 -0.96094,0.17969 -1.33203,0.55078c-1.83594,1.82422 -3.67578,3.64063 -5.52344,5.45313c-0.39062,0.38281 -0.57812,0.82813 -0.57812,1.36328c0.00781,8.03906 0.00781,24.01563 0.00781,25.51563l0.07031,1.11328h1c1.47266,0 25.44531,-0.00391 37.47266,0.00391c0.54297,0 0.99609,-0.1875 1.39453,-0.57812c1.81641,-1.8125 3.64063,-3.61328 5.47266,-5.40625c0.39063,-0.39062 0.58203,-0.84375 0.58203,-1.39844c-0.00781,-8.37109 0,-25.61719 0,-25.61719v-1zM19.09375,14c0.94141,0.00391 1.875,0.08203 2.80078,0.32031c1.87891,0.48047 3.21484,1.58203 4,3.33984c0.46094,1.03516 0.73047,2.12109 0.88672,3.23438c0.16406,1.19531 0.23828,2.40234 0.21094,3.60547c-0.03516,1.5625 -0.14453,3.11328 -0.57812,4.625c-0.30469,1.05859 -0.76953,2.03516 -1.54297,2.83984c-0.29297,0.30859 -0.63281,0.57422 -0.96875,0.87891c0.77734,1.23828 1.5625,2.49219 2.37891,3.78906c-0.98828,0.45703 -1.95312,0.90234 -2.96484,1.36719c-0.85156,-1.37891 -1.69531,-2.74609 -2.53125,-4.09375c-1.66406,0.22656 -3.28125,0.17578 -4.875,-0.24219c-1.83594,-0.48047 -3.14062,-1.57031 -3.88281,-3.30469c-0.41406,-0.96484 -0.65625,-1.96484 -0.80859,-2.99219c-0.16406,-1.09766 -0.23047,-2.20703 -0.21875,-3.31641c0.01953,-1.64453 0.11719,-3.28516 0.58984,-4.87891c0.17188,-0.58203 0.39063,-1.15625 0.64453,-1.70703c0.73047,-1.58203 1.98438,-2.57422 3.65625,-3.07031c0.73828,-0.21484 1.48828,-0.33984 2.25391,-0.375c0.31641,-0.01172 0.63281,-0.01953 0.94922,-0.01953zM31,16h3v4h4v3h-4c0,0 -0.01172,3.10938 0,5c0.00391,0.53125 0.01953,1.34766 0.0625,1.875c0.00781,0.14063 0.04688,0.27734 0.08203,0.41797c0.09375,0.33594 0.31641,0.55859 0.65234,0.62891c0.26563,0.05469 0.53906,0.08203 0.80859,0.07813c0.625,-0.01172 1.41406,-0.10937 2.03906,-0.13281c0.05859,-0.00391 0.11328,0.01172 0.21875,0.01953c0.06641,0.78516 0.10938,1.87891 0.13672,2.69531c-0.28516,0.05469 -0.55078,0.10547 -0.8125,0.15234c-0.93359,0.16797 -2.03906,0.31641 -2.98437,0.23438c-0.49609,-0.04687 -0.98047,-0.14844 -1.44141,-0.34375c-0.60547,-0.26172 -1.03516,-0.6875 -1.29297,-1.29687c-0.30859,-0.71484 -0.46875,-1.55859 -0.46875,-2.32812v-7h-2v-3h2zM18.99609,17.01953c-0.59375,0 -1.1875,0.07031 -1.77734,0.21484c-1.04687,0.26172 -1.83203,0.81641 -2.29687,1.70313c-0.11328,0.21094 -0.21875,0.42969 -0.30078,0.65234c-0.41406,1.07422 -0.57812,2.19141 -0.60937,3.32031c-0.02734,1.04297 -0.00391,2.08984 0.05078,3.13281c0.05469,0.92969 0.24609,1.83984 0.60547,2.72266c0.44531,1.08984 1.29297,1.77344 2.55078,2.05469c1.19922,0.26953 2.40234,0.26563 3.59766,-0.00781c1.17578,-0.27344 2.01172,-0.90234 2.43359,-1.93359c0.10938,-0.26172 0.20703,-0.53125 0.28516,-0.80469c0.37109,-1.28516 0.41016,-2.59766 0.46484,-4.28906c-0.05859,-0.60937 -0.11719,-1.59375 -0.24219,-2.57031c-0.10156,-0.80859 -0.33203,-1.59375 -0.73828,-2.32812c-0.47266,-0.85547 -1.23047,-1.40234 -2.25,-1.65234c-0.58984,-0.14453 -1.18359,-0.21484 -1.77344,-0.21484z">
</path>
</g>
</g>
</svg>
<p class="center-align">PyQt6</p>
</article>
</article>
<article class="border max small-round">
<h6>Skills involved</h6>
<li>Data processing and scheduling</li>
<li>Server and client communication</li>
</article>
</div>
</article>
<article class="margin">
<article class="border no-padding small-round bottom-margin m s">
<img class="responsive" style="max-width: 1000px" src="/static/images/gradebook.png">
</article>
<div class="row no-margin">
<article class="border max small-round">
<div class="row">
<img class="small" src="https://raw.githubusercontent.com/Jared-Gross/Gradebook/master/ui/icons/icon.png">
<h4 class="max left-align small">Gradebook</h4>
</div>
<p>A website with various <b>mathematical</b> games for students to play that are connected to a <b>gradebook</b>.</p>
<nav>
<a class="link" href="https://github.com/Jared-Gross/Gradebook"><i class="mdi mdi-github"></i></a>
</nav>
</article>
<article class="border no-padding small-round l">
<img class="responsive" style="max-width: 1000px" src="/static/images/gradebook.png">
</article>
</div>
<div class="grid l">
<div class="row">
<div class="border row small-round">
<article class="transparent">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#0277BD"
d="M24.047,5c-1.555,0.005-2.633,0.142-3.936,0.367c-3.848,0.67-4.549,2.077-4.549,4.67V14h9v2H15.22h-4.35c-2.636,0-4.943,1.242-5.674,4.219c-0.826,3.417-0.863,5.557,0,9.125C5.851,32.005,7.294,34,9.931,34h3.632v-5.104c0-2.966,2.686-5.896,5.764-5.896h7.236c2.523,0,5-1.862,5-4.377v-8.586c0-2.439-1.759-4.263-4.218-4.672C27.406,5.359,25.589,4.994,24.047,5z M19.063,9c0.821,0,1.5,0.677,1.5,1.502c0,0.833-0.679,1.498-1.5,1.498c-0.837,0-1.5-0.664-1.5-1.498C17.563,9.68,18.226,9,19.063,9z">
</path>
<path fill="#FFC107"
d="M23.078,43c1.555-0.005,2.633-0.142,3.936-0.367c3.848-0.67,4.549-2.077,4.549-4.67V34h-9v-2h9.343h4.35c2.636,0,4.943-1.242,5.674-4.219c0.826-3.417,0.863-5.557,0-9.125C41.274,15.995,39.831,14,37.194,14h-3.632v5.104c0,2.966-2.686,5.896-5.764,5.896h-7.236c-2.523,0-5,1.862-5,4.377v8.586c0,2.439,1.759,4.263,4.218,4.672C19.719,42.641,21.536,43.006,23.078,43z M28.063,39c-0.821,0-1.5-0.677-1.5-1.502c0-0.833,0.679-1.498,1.5-1.498c0.837,0,1.5,0.664,1.5,1.498C29.563,38.32,28.899,39,28.063,39z">
</path>
</svg>
<p class="center-align">Python</p>
</article>
<article class="transparent">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0,0,256,256" style="fill:#000000;">
<g fill="#3cba4b" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<g transform="scale(5.12,5.12)">
<path
d="M9.43359,8c-0.52734,0 -0.96094,0.17969 -1.33203,0.55078c-1.83594,1.82422 -3.67578,3.64063 -5.52344,5.45313c-0.39062,0.38281 -0.57812,0.82813 -0.57812,1.36328c0.00781,8.03906 0.00781,24.01563 0.00781,25.51563l0.07031,1.11328h1c1.47266,0 25.44531,-0.00391 37.47266,0.00391c0.54297,0 0.99609,-0.1875 1.39453,-0.57812c1.81641,-1.8125 3.64063,-3.61328 5.47266,-5.40625c0.39063,-0.39062 0.58203,-0.84375 0.58203,-1.39844c-0.00781,-8.37109 0,-25.61719 0,-25.61719v-1zM19.09375,14c0.94141,0.00391 1.875,0.08203 2.80078,0.32031c1.87891,0.48047 3.21484,1.58203 4,3.33984c0.46094,1.03516 0.73047,2.12109 0.88672,3.23438c0.16406,1.19531 0.23828,2.40234 0.21094,3.60547c-0.03516,1.5625 -0.14453,3.11328 -0.57812,4.625c-0.30469,1.05859 -0.76953,2.03516 -1.54297,2.83984c-0.29297,0.30859 -0.63281,0.57422 -0.96875,0.87891c0.77734,1.23828 1.5625,2.49219 2.37891,3.78906c-0.98828,0.45703 -1.95312,0.90234 -2.96484,1.36719c-0.85156,-1.37891 -1.69531,-2.74609 -2.53125,-4.09375c-1.66406,0.22656 -3.28125,0.17578 -4.875,-0.24219c-1.83594,-0.48047 -3.14062,-1.57031 -3.88281,-3.30469c-0.41406,-0.96484 -0.65625,-1.96484 -0.80859,-2.99219c-0.16406,-1.09766 -0.23047,-2.20703 -0.21875,-3.31641c0.01953,-1.64453 0.11719,-3.28516 0.58984,-4.87891c0.17188,-0.58203 0.39063,-1.15625 0.64453,-1.70703c0.73047,-1.58203 1.98438,-2.57422 3.65625,-3.07031c0.73828,-0.21484 1.48828,-0.33984 2.25391,-0.375c0.31641,-0.01172 0.63281,-0.01953 0.94922,-0.01953zM31,16h3v4h4v3h-4c0,0 -0.01172,3.10938 0,5c0.00391,0.53125 0.01953,1.34766 0.0625,1.875c0.00781,0.14063 0.04688,0.27734 0.08203,0.41797c0.09375,0.33594 0.31641,0.55859 0.65234,0.62891c0.26563,0.05469 0.53906,0.08203 0.80859,0.07813c0.625,-0.01172 1.41406,-0.10937 2.03906,-0.13281c0.05859,-0.00391 0.11328,0.01172 0.21875,0.01953c0.06641,0.78516 0.10938,1.87891 0.13672,2.69531c-0.28516,0.05469 -0.55078,0.10547 -0.8125,0.15234c-0.93359,0.16797 -2.03906,0.31641 -2.98437,0.23438c-0.49609,-0.04687 -0.98047,-0.14844 -1.44141,-0.34375c-0.60547,-0.26172 -1.03516,-0.6875 -1.29297,-1.29687c-0.30859,-0.71484 -0.46875,-1.55859 -0.46875,-2.32812v-7h-2v-3h2zM18.99609,17.01953c-0.59375,0 -1.1875,0.07031 -1.77734,0.21484c-1.04687,0.26172 -1.83203,0.81641 -2.29687,1.70313c-0.11328,0.21094 -0.21875,0.42969 -0.30078,0.65234c-0.41406,1.07422 -0.57812,2.19141 -0.60937,3.32031c-0.02734,1.04297 -0.00391,2.08984 0.05078,3.13281c0.05469,0.92969 0.24609,1.83984 0.60547,2.72266c0.44531,1.08984 1.29297,1.77344 2.55078,2.05469c1.19922,0.26953 2.40234,0.26563 3.59766,-0.00781c1.17578,-0.27344 2.01172,-0.90234 2.43359,-1.93359c0.10938,-0.26172 0.20703,-0.53125 0.28516,-0.80469c0.37109,-1.28516 0.41016,-2.59766 0.46484,-4.28906c-0.05859,-0.60937 -0.11719,-1.59375 -0.24219,-2.57031c-0.10156,-0.80859 -0.33203,-1.59375 -0.73828,-2.32812c-0.47266,-0.85547 -1.23047,-1.40234 -2.25,-1.65234c-0.58984,-0.14453 -1.18359,-0.21484 -1.77344,-0.21484z">
</path>
</g>
</g>
</svg>
<p class="center-align">PyQt6</p>
</article>
<article class="transparent">
<img src="https://avatars.githubusercontent.com/u/7468980?s=200&v=4" width="50" height="50"
alt="tornado">
<p class="center-align">Tornado</p>
</article>
<article class="transparent">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#E65100" d="M41,5H7l3,34l14,4l14-4L41,5L41,5z"></path>
<path fill="#FF6D00" d="M24 8L24 39.9 35.2 36.7 37.7 8z"></path>
<path fill="#FFF"
d="M24,25v-4h8.6l-0.7,11.5L24,35.1v-4.2l4.1-1.4l0.3-4.5H24z M32.9,17l0.3-4H24v4H32.9z">
</path>
<path fill="#EEE"
d="M24,30.9v4.2l-7.9-2.6L15.7,27h4l0.2,2.5L24,30.9z M19.1,17H24v-4h-9.1l0.7,12H24v-4h-4.6L19.1,17z">
</path>
</svg>
<p class="center-align">HTML</p>
</article>
<article class="transparent">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 100 100">
<path
d="M51.958,98c-0.58,0-1.16-0.078-1.724-0.232l-27.742-7.702c-2.593-0.72-4.495-3.004-4.735-5.685 l-6.179-69.304c-0.16-1.813,0.451-3.621,1.677-4.962C14.485,8.77,16.233,8,18.053,8h67.895c1.821,0,3.569,0.771,4.798,2.115 c1.225,1.339,1.837,3.147,1.677,4.959L86.236,84.37c-0.24,2.683-2.145,4.967-4.739,5.686l-27.803,7.709 C53.124,97.921,52.542,98,51.958,98z"
opacity=".35"></path>
<path fill="#f2f2f2"
d="M49.958,96c-0.58,0-1.16-0.078-1.724-0.232l-27.742-7.702c-2.593-0.72-4.495-3.004-4.735-5.685 L9.578,13.077c-0.16-1.813,0.451-3.621,1.677-4.962C12.485,6.77,14.233,6,16.053,6h67.895c1.821,0,3.569,0.771,4.798,2.115 c1.225,1.339,1.837,3.147,1.677,4.959L84.236,82.37c-0.24,2.683-2.145,4.967-4.739,5.686l-27.803,7.709 C51.124,95.921,50.542,96,49.958,96z">
</path>
<polygon fill="#2b59a1"
points="83.947,12.5 77.762,81.792 49.958,89.5 22.231,81.803 16.053,12.5"></polygon>
<path fill="#40396e"
d="M49.958,91c-0.135,0-0.27-0.019-0.401-0.055L21.83,83.249c-0.602-0.167-1.037-0.689-1.093-1.312 l-6.179-69.303c-0.037-0.419,0.104-0.835,0.388-1.146C15.23,11.177,15.632,11,16.053,11h67.895c0.421,0,0.822,0.177,1.106,0.488 c0.284,0.311,0.425,0.726,0.388,1.146l-6.186,69.292c-0.056,0.622-0.491,1.145-1.094,1.312l-27.804,7.709 C50.228,90.982,50.093,91,49.958,91z M23.634,80.635l26.324,7.309l26.402-7.32L82.308,14H17.692L23.634,80.635z">
</path>
<polygon fill="#2785bd" points="72.467,77.38 77.771,17.957 50,17.957 50,83.608"></polygon>
<polygon fill="#d9eeff" points="50,43.957 51,47.957 50,51.957 30.94,51.957 30.23,43.957">
</polygon>
<polygon fill="#d9eeff" points="50,26.957 51,30.957 50,34.957 29.441,34.957 28.72,26.957">
</polygon>
<polygon fill="#d9eeff"
points="51,69.957 50,74.796 32.55,69.967 31.39,56.957 39.92,56.957 40.5,63.397 50,65.957">
</polygon>
<path fill="#f2f2f2"
d="M50,26.957v8h11.969l-0.807,9H50c-0.009-0.002-0.008,8-0.008,8h10.485l-1.027,11.44L50,65.957v8.84 l17.4-4.83l0.12-1.44l2-22.37l0.21-2.29l1.5-16.91H50z">
</path>
</svg>
<p class="center-align">CSS</p>
</article>
<article class="transparent">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#ffd600" d="M6,42V6h36v36H6z"></path>
<path fill="#000001"
d="M29.538 32.947c.692 1.124 1.444 2.201 3.037 2.201 1.338 0 2.04-.665 2.04-1.585 0-1.101-.726-1.492-2.198-2.133l-.807-.344c-2.329-.988-3.878-2.226-3.878-4.841 0-2.41 1.845-4.244 4.728-4.244 2.053 0 3.528.711 4.592 2.573l-2.514 1.607c-.553-.988-1.151-1.377-2.078-1.377-.946 0-1.545.597-1.545 1.377 0 .964.6 1.354 1.985 1.951l.807.344C36.452 29.645 38 30.839 38 33.523 38 36.415 35.716 38 32.65 38c-2.999 0-4.702-1.505-5.65-3.368L29.538 32.947zM17.952 33.029c.506.906 1.275 1.603 2.381 1.603 1.058 0 1.667-.418 1.667-2.043V22h3.333v11.101c0 3.367-1.953 4.899-4.805 4.899-2.577 0-4.437-1.746-5.195-3.368L17.952 33.029z">
</path>
</svg>
<p class="center-align">JS</p>
</article>
</div>
<div class="border max small-round padding">
<h6>Skills involved</h6>
<li>Full stack development</li>
</div>
</div>
</div>
<div class="top-margin m s">
<article class="border row small-round middle-align wrap">
<article class="transparent no-padding">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#0277BD"
d="M24.047,5c-1.555,0.005-2.633,0.142-3.936,0.367c-3.848,0.67-4.549,2.077-4.549,4.67V14h9v2H15.22h-4.35c-2.636,0-4.943,1.242-5.674,4.219c-0.826,3.417-0.863,5.557,0,9.125C5.851,32.005,7.294,34,9.931,34h3.632v-5.104c0-2.966,2.686-5.896,5.764-5.896h7.236c2.523,0,5-1.862,5-4.377v-8.586c0-2.439-1.759-4.263-4.218-4.672C27.406,5.359,25.589,4.994,24.047,5z M19.063,9c0.821,0,1.5,0.677,1.5,1.502c0,0.833-0.679,1.498-1.5,1.498c-0.837,0-1.5-0.664-1.5-1.498C17.563,9.68,18.226,9,19.063,9z">
</path>
<path fill="#FFC107"
d="M23.078,43c1.555-0.005,2.633-0.142,3.936-0.367c3.848-0.67,4.549-2.077,4.549-4.67V34h-9v-2h9.343h4.35c2.636,0,4.943-1.242,5.674-4.219c0.826-3.417,0.863-5.557,0-9.125C41.274,15.995,39.831,14,37.194,14h-3.632v5.104c0,2.966-2.686,5.896-5.764,5.896h-7.236c-2.523,0-5,1.862-5,4.377v8.586c0,2.439,1.759,4.263,4.218,4.672C19.719,42.641,21.536,43.006,23.078,43z M28.063,39c-0.821,0-1.5-0.677-1.5-1.502c0-0.833,0.679-1.498,1.5-1.498c0.837,0,1.5,0.664,1.5,1.498C29.563,38.32,28.899,39,28.063,39z">
</path>
</svg>
<p class="center-align">Python</p>
</article>
<article class="transparent no-padding">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0,0,256,256" style="fill:#000000;">
<g fill="#3cba4b" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<g transform="scale(5.12,5.12)">
<path
d="M9.43359,8c-0.52734,0 -0.96094,0.17969 -1.33203,0.55078c-1.83594,1.82422 -3.67578,3.64063 -5.52344,5.45313c-0.39062,0.38281 -0.57812,0.82813 -0.57812,1.36328c0.00781,8.03906 0.00781,24.01563 0.00781,25.51563l0.07031,1.11328h1c1.47266,0 25.44531,-0.00391 37.47266,0.00391c0.54297,0 0.99609,-0.1875 1.39453,-0.57812c1.81641,-1.8125 3.64063,-3.61328 5.47266,-5.40625c0.39063,-0.39062 0.58203,-0.84375 0.58203,-1.39844c-0.00781,-8.37109 0,-25.61719 0,-25.61719v-1zM19.09375,14c0.94141,0.00391 1.875,0.08203 2.80078,0.32031c1.87891,0.48047 3.21484,1.58203 4,3.33984c0.46094,1.03516 0.73047,2.12109 0.88672,3.23438c0.16406,1.19531 0.23828,2.40234 0.21094,3.60547c-0.03516,1.5625 -0.14453,3.11328 -0.57812,4.625c-0.30469,1.05859 -0.76953,2.03516 -1.54297,2.83984c-0.29297,0.30859 -0.63281,0.57422 -0.96875,0.87891c0.77734,1.23828 1.5625,2.49219 2.37891,3.78906c-0.98828,0.45703 -1.95312,0.90234 -2.96484,1.36719c-0.85156,-1.37891 -1.69531,-2.74609 -2.53125,-4.09375c-1.66406,0.22656 -3.28125,0.17578 -4.875,-0.24219c-1.83594,-0.48047 -3.14062,-1.57031 -3.88281,-3.30469c-0.41406,-0.96484 -0.65625,-1.96484 -0.80859,-2.99219c-0.16406,-1.09766 -0.23047,-2.20703 -0.21875,-3.31641c0.01953,-1.64453 0.11719,-3.28516 0.58984,-4.87891c0.17188,-0.58203 0.39063,-1.15625 0.64453,-1.70703c0.73047,-1.58203 1.98438,-2.57422 3.65625,-3.07031c0.73828,-0.21484 1.48828,-0.33984 2.25391,-0.375c0.31641,-0.01172 0.63281,-0.01953 0.94922,-0.01953zM31,16h3v4h4v3h-4c0,0 -0.01172,3.10938 0,5c0.00391,0.53125 0.01953,1.34766 0.0625,1.875c0.00781,0.14063 0.04688,0.27734 0.08203,0.41797c0.09375,0.33594 0.31641,0.55859 0.65234,0.62891c0.26563,0.05469 0.53906,0.08203 0.80859,0.07813c0.625,-0.01172 1.41406,-0.10937 2.03906,-0.13281c0.05859,-0.00391 0.11328,0.01172 0.21875,0.01953c0.06641,0.78516 0.10938,1.87891 0.13672,2.69531c-0.28516,0.05469 -0.55078,0.10547 -0.8125,0.15234c-0.93359,0.16797 -2.03906,0.31641 -2.98437,0.23438c-0.49609,-0.04687 -0.98047,-0.14844 -1.44141,-0.34375c-0.60547,-0.26172 -1.03516,-0.6875 -1.29297,-1.29687c-0.30859,-0.71484 -0.46875,-1.55859 -0.46875,-2.32812v-7h-2v-3h2zM18.99609,17.01953c-0.59375,0 -1.1875,0.07031 -1.77734,0.21484c-1.04687,0.26172 -1.83203,0.81641 -2.29687,1.70313c-0.11328,0.21094 -0.21875,0.42969 -0.30078,0.65234c-0.41406,1.07422 -0.57812,2.19141 -0.60937,3.32031c-0.02734,1.04297 -0.00391,2.08984 0.05078,3.13281c0.05469,0.92969 0.24609,1.83984 0.60547,2.72266c0.44531,1.08984 1.29297,1.77344 2.55078,2.05469c1.19922,0.26953 2.40234,0.26563 3.59766,-0.00781c1.17578,-0.27344 2.01172,-0.90234 2.43359,-1.93359c0.10938,-0.26172 0.20703,-0.53125 0.28516,-0.80469c0.37109,-1.28516 0.41016,-2.59766 0.46484,-4.28906c-0.05859,-0.60937 -0.11719,-1.59375 -0.24219,-2.57031c-0.10156,-0.80859 -0.33203,-1.59375 -0.73828,-2.32812c-0.47266,-0.85547 -1.23047,-1.40234 -2.25,-1.65234c-0.58984,-0.14453 -1.18359,-0.21484 -1.77344,-0.21484z">
</path>
</g>
</g>
</svg>
<p class="center-align">PyQt6</p>
</article>
<article class="transparent no-padding">
<img src="https://avatars.githubusercontent.com/u/7468980?s=200&v=4" width="50" height="50"
alt="tornado">
<p class="center-align">Tornado</p>
</article>
<article class="transparent no-padding">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#E65100" d="M41,5H7l3,34l14,4l14-4L41,5L41,5z"></path>
<path fill="#FF6D00" d="M24 8L24 39.9 35.2 36.7 37.7 8z"></path>
<path fill="#FFF"
d="M24,25v-4h8.6l-0.7,11.5L24,35.1v-4.2l4.1-1.4l0.3-4.5H24z M32.9,17l0.3-4H24v4H32.9z">
</path>
<path fill="#EEE"
d="M24,30.9v4.2l-7.9-2.6L15.7,27h4l0.2,2.5L24,30.9z M19.1,17H24v-4h-9.1l0.7,12H24v-4h-4.6L19.1,17z">
</path>
</svg>
<p class="center-align">HTML</p>
</article>
<article class="transparent no-padding">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 100 100">
<path
d="M51.958,98c-0.58,0-1.16-0.078-1.724-0.232l-27.742-7.702c-2.593-0.72-4.495-3.004-4.735-5.685 l-6.179-69.304c-0.16-1.813,0.451-3.621,1.677-4.962C14.485,8.77,16.233,8,18.053,8h67.895c1.821,0,3.569,0.771,4.798,2.115 c1.225,1.339,1.837,3.147,1.677,4.959L86.236,84.37c-0.24,2.683-2.145,4.967-4.739,5.686l-27.803,7.709 C53.124,97.921,52.542,98,51.958,98z"
opacity=".35"></path>
<path fill="#f2f2f2"
d="M49.958,96c-0.58,0-1.16-0.078-1.724-0.232l-27.742-7.702c-2.593-0.72-4.495-3.004-4.735-5.685 L9.578,13.077c-0.16-1.813,0.451-3.621,1.677-4.962C12.485,6.77,14.233,6,16.053,6h67.895c1.821,0,3.569,0.771,4.798,2.115 c1.225,1.339,1.837,3.147,1.677,4.959L84.236,82.37c-0.24,2.683-2.145,4.967-4.739,5.686l-27.803,7.709 C51.124,95.921,50.542,96,49.958,96z">
</path>
<polygon fill="#2b59a1"
points="83.947,12.5 77.762,81.792 49.958,89.5 22.231,81.803 16.053,12.5"></polygon>
<path fill="#40396e"
d="M49.958,91c-0.135,0-0.27-0.019-0.401-0.055L21.83,83.249c-0.602-0.167-1.037-0.689-1.093-1.312 l-6.179-69.303c-0.037-0.419,0.104-0.835,0.388-1.146C15.23,11.177,15.632,11,16.053,11h67.895c0.421,0,0.822,0.177,1.106,0.488 c0.284,0.311,0.425,0.726,0.388,1.146l-6.186,69.292c-0.056,0.622-0.491,1.145-1.094,1.312l-27.804,7.709 C50.228,90.982,50.093,91,49.958,91z M23.634,80.635l26.324,7.309l26.402-7.32L82.308,14H17.692L23.634,80.635z">
</path>
<polygon fill="#2785bd" points="72.467,77.38 77.771,17.957 50,17.957 50,83.608"></polygon>
<polygon fill="#d9eeff" points="50,43.957 51,47.957 50,51.957 30.94,51.957 30.23,43.957">
</polygon>
<polygon fill="#d9eeff" points="50,26.957 51,30.957 50,34.957 29.441,34.957 28.72,26.957">
</polygon>
<polygon fill="#d9eeff"
points="51,69.957 50,74.796 32.55,69.967 31.39,56.957 39.92,56.957 40.5,63.397 50,65.957">
</polygon>
<path fill="#f2f2f2"
d="M50,26.957v8h11.969l-0.807,9H50c-0.009-0.002-0.008,8-0.008,8h10.485l-1.027,11.44L50,65.957v8.84 l17.4-4.83l0.12-1.44l2-22.37l0.21-2.29l1.5-16.91H50z">
</path>
</svg>
<p class="center-align">CSS</p>
</article>
<article class="transparent no-padding">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#ffd600" d="M6,42V6h36v36H6z"></path>
<path fill="#000001"
d="M29.538 32.947c.692 1.124 1.444 2.201 3.037 2.201 1.338 0 2.04-.665 2.04-1.585 0-1.101-.726-1.492-2.198-2.133l-.807-.344c-2.329-.988-3.878-2.226-3.878-4.841 0-2.41 1.845-4.244 4.728-4.244 2.053 0 3.528.711 4.592 2.573l-2.514 1.607c-.553-.988-1.151-1.377-2.078-1.377-.946 0-1.545.597-1.545 1.377 0 .964.6 1.354 1.985 1.951l.807.344C36.452 29.645 38 30.839 38 33.523 38 36.415 35.716 38 32.65 38c-2.999 0-4.702-1.505-5.65-3.368L29.538 32.947zM17.952 33.029c.506.906 1.275 1.603 2.381 1.603 1.058 0 1.667-.418 1.667-2.043V22h3.333v11.101c0 3.367-1.953 4.899-4.805 4.899-2.577 0-4.437-1.746-5.195-3.368L17.952 33.029z">
</path>
</svg>
<p class="center-align">JS</p>
</article>
</article>
<article class="border max small-round">
<h6>Skills involved</h6>
<li>Full stack development</li>
</article>
</div>
</article>
<article class="margin">
<article class="border no-padding small-round bottom-margin m s">
<img class="responsive" style="max-width: 1000px" src="/static/images/algorhythm.png"">
</article>
<div class="row no-margin">
<article class="border no-padding small-round l">
<img class="responsive" style="max-width: 1000px" src="/static/images/algorhythm.png"">
</article>
<article class="border max small-round">
<div class="row">
<img class="small circle" src="https://raw.githubusercontent.com/Jared-Gross/Algorhythm/master/icon.png">
<h4 class="max left-align small">Algorhythm</h4>
</div>
<p>Creating piano music with python code with just <b>algorithms</b>.</p>
<nav>
<a class="link" href="https://https://github.com/Jared-Gross/Algorhythm"><i class="mdi mdi-github"></i></a>
</nav>
</article>
</div>
<div class="grid l m">
<div class="row">
<div class="border row small-round">
<article class="transparent">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#0277BD"
d="M24.047,5c-1.555,0.005-2.633,0.142-3.936,0.367c-3.848,0.67-4.549,2.077-4.549,4.67V14h9v2H15.22h-4.35c-2.636,0-4.943,1.242-5.674,4.219c-0.826,3.417-0.863,5.557,0,9.125C5.851,32.005,7.294,34,9.931,34h3.632v-5.104c0-2.966,2.686-5.896,5.764-5.896h7.236c2.523,0,5-1.862,5-4.377v-8.586c0-2.439-1.759-4.263-4.218-4.672C27.406,5.359,25.589,4.994,24.047,5z M19.063,9c0.821,0,1.5,0.677,1.5,1.502c0,0.833-0.679,1.498-1.5,1.498c-0.837,0-1.5-0.664-1.5-1.498C17.563,9.68,18.226,9,19.063,9z">
</path>
<path fill="#FFC107"
d="M23.078,43c1.555-0.005,2.633-0.142,3.936-0.367c3.848-0.67,4.549-2.077,4.549-4.67V34h-9v-2h9.343h4.35c2.636,0,4.943-1.242,5.674-4.219c0.826-3.417,0.863-5.557,0-9.125C41.274,15.995,39.831,14,37.194,14h-3.632v5.104c0,2.966-2.686,5.896-5.764,5.896h-7.236c-2.523,0-5,1.862-5,4.377v8.586c0,2.439,1.759,4.263,4.218,4.672C19.719,42.641,21.536,43.006,23.078,43z M28.063,39c-0.821,0-1.5-0.677-1.5-1.502c0-0.833,0.679-1.498,1.5-1.498c0.837,0,1.5,0.664,1.5,1.498C29.563,38.32,28.899,39,28.063,39z">
</path>
</svg>
<p class="center-align">Python</p>
</article>
<article class="transparent">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0,0,256,256" style="fill:#000000;">
<g fill="#3cba4b" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<g transform="scale(5.12,5.12)">
<path
d="M9.43359,8c-0.52734,0 -0.96094,0.17969 -1.33203,0.55078c-1.83594,1.82422 -3.67578,3.64063 -5.52344,5.45313c-0.39062,0.38281 -0.57812,0.82813 -0.57812,1.36328c0.00781,8.03906 0.00781,24.01563 0.00781,25.51563l0.07031,1.11328h1c1.47266,0 25.44531,-0.00391 37.47266,0.00391c0.54297,0 0.99609,-0.1875 1.39453,-0.57812c1.81641,-1.8125 3.64063,-3.61328 5.47266,-5.40625c0.39063,-0.39062 0.58203,-0.84375 0.58203,-1.39844c-0.00781,-8.37109 0,-25.61719 0,-25.61719v-1zM19.09375,14c0.94141,0.00391 1.875,0.08203 2.80078,0.32031c1.87891,0.48047 3.21484,1.58203 4,3.33984c0.46094,1.03516 0.73047,2.12109 0.88672,3.23438c0.16406,1.19531 0.23828,2.40234 0.21094,3.60547c-0.03516,1.5625 -0.14453,3.11328 -0.57812,4.625c-0.30469,1.05859 -0.76953,2.03516 -1.54297,2.83984c-0.29297,0.30859 -0.63281,0.57422 -0.96875,0.87891c0.77734,1.23828 1.5625,2.49219 2.37891,3.78906c-0.98828,0.45703 -1.95312,0.90234 -2.96484,1.36719c-0.85156,-1.37891 -1.69531,-2.74609 -2.53125,-4.09375c-1.66406,0.22656 -3.28125,0.17578 -4.875,-0.24219c-1.83594,-0.48047 -3.14062,-1.57031 -3.88281,-3.30469c-0.41406,-0.96484 -0.65625,-1.96484 -0.80859,-2.99219c-0.16406,-1.09766 -0.23047,-2.20703 -0.21875,-3.31641c0.01953,-1.64453 0.11719,-3.28516 0.58984,-4.87891c0.17188,-0.58203 0.39063,-1.15625 0.64453,-1.70703c0.73047,-1.58203 1.98438,-2.57422 3.65625,-3.07031c0.73828,-0.21484 1.48828,-0.33984 2.25391,-0.375c0.31641,-0.01172 0.63281,-0.01953 0.94922,-0.01953zM31,16h3v4h4v3h-4c0,0 -0.01172,3.10938 0,5c0.00391,0.53125 0.01953,1.34766 0.0625,1.875c0.00781,0.14063 0.04688,0.27734 0.08203,0.41797c0.09375,0.33594 0.31641,0.55859 0.65234,0.62891c0.26563,0.05469 0.53906,0.08203 0.80859,0.07813c0.625,-0.01172 1.41406,-0.10937 2.03906,-0.13281c0.05859,-0.00391 0.11328,0.01172 0.21875,0.01953c0.06641,0.78516 0.10938,1.87891 0.13672,2.69531c-0.28516,0.05469 -0.55078,0.10547 -0.8125,0.15234c-0.93359,0.16797 -2.03906,0.31641 -2.98437,0.23438c-0.49609,-0.04687 -0.98047,-0.14844 -1.44141,-0.34375c-0.60547,-0.26172 -1.03516,-0.6875 -1.29297,-1.29687c-0.30859,-0.71484 -0.46875,-1.55859 -0.46875,-2.32812v-7h-2v-3h2zM18.99609,17.01953c-0.59375,0 -1.1875,0.07031 -1.77734,0.21484c-1.04687,0.26172 -1.83203,0.81641 -2.29687,1.70313c-0.11328,0.21094 -0.21875,0.42969 -0.30078,0.65234c-0.41406,1.07422 -0.57812,2.19141 -0.60937,3.32031c-0.02734,1.04297 -0.00391,2.08984 0.05078,3.13281c0.05469,0.92969 0.24609,1.83984 0.60547,2.72266c0.44531,1.08984 1.29297,1.77344 2.55078,2.05469c1.19922,0.26953 2.40234,0.26563 3.59766,-0.00781c1.17578,-0.27344 2.01172,-0.90234 2.43359,-1.93359c0.10938,-0.26172 0.20703,-0.53125 0.28516,-0.80469c0.37109,-1.28516 0.41016,-2.59766 0.46484,-4.28906c-0.05859,-0.60937 -0.11719,-1.59375 -0.24219,-2.57031c-0.10156,-0.80859 -0.33203,-1.59375 -0.73828,-2.32812c-0.47266,-0.85547 -1.23047,-1.40234 -2.25,-1.65234c-0.58984,-0.14453 -1.18359,-0.21484 -1.77344,-0.21484z">
</path>
</g>
</g>
</svg>
<p class="center-align">PyQt5</p>
</article>
</div>
<div class="border max small-round padding">
<h6>Skills involved</h6>
<li>Compiling audio</li>
<li>Generating video visualizer</li>
<li>Generating sheet music</li>
<li>Live music generation</li>
</div>
</div>
</div>
<div class="top-margin s">
<article class="border row small-round middle-align wrap">
<article class="transparent no-padding">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#0277BD"
d="M24.047,5c-1.555,0.005-2.633,0.142-3.936,0.367c-3.848,0.67-4.549,2.077-4.549,4.67V14h9v2H15.22h-4.35c-2.636,0-4.943,1.242-5.674,4.219c-0.826,3.417-0.863,5.557,0,9.125C5.851,32.005,7.294,34,9.931,34h3.632v-5.104c0-2.966,2.686-5.896,5.764-5.896h7.236c2.523,0,5-1.862,5-4.377v-8.586c0-2.439-1.759-4.263-4.218-4.672C27.406,5.359,25.589,4.994,24.047,5z M19.063,9c0.821,0,1.5,0.677,1.5,1.502c0,0.833-0.679,1.498-1.5,1.498c-0.837,0-1.5-0.664-1.5-1.498C17.563,9.68,18.226,9,19.063,9z">
</path>
<path fill="#FFC107"
d="M23.078,43c1.555-0.005,2.633-0.142,3.936-0.367c3.848-0.67,4.549-2.077,4.549-4.67V34h-9v-2h9.343h4.35c2.636,0,4.943-1.242,5.674-4.219c0.826-3.417,0.863-5.557,0-9.125C41.274,15.995,39.831,14,37.194,14h-3.632v5.104c0,2.966-2.686,5.896-5.764,5.896h-7.236c-2.523,0-5,1.862-5,4.377v8.586c0,2.439,1.759,4.263,4.218,4.672C19.719,42.641,21.536,43.006,23.078,43z M28.063,39c-0.821,0-1.5-0.677-1.5-1.502c0-0.833,0.679-1.498,1.5-1.498c0.837,0,1.5,0.664,1.5,1.498C29.563,38.32,28.899,39,28.063,39z">
</path>
</svg>
<p class="center-align">Python</p>
</article>
<article class="transparent no-padding">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0,0,256,256" style="fill:#000000;">
<g fill="#3cba4b" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<g transform="scale(5.12,5.12)">
<path
d="M9.43359,8c-0.52734,0 -0.96094,0.17969 -1.33203,0.55078c-1.83594,1.82422 -3.67578,3.64063 -5.52344,5.45313c-0.39062,0.38281 -0.57812,0.82813 -0.57812,1.36328c0.00781,8.03906 0.00781,24.01563 0.00781,25.51563l0.07031,1.11328h1c1.47266,0 25.44531,-0.00391 37.47266,0.00391c0.54297,0 0.99609,-0.1875 1.39453,-0.57812c1.81641,-1.8125 3.64063,-3.61328 5.47266,-5.40625c0.39063,-0.39062 0.58203,-0.84375 0.58203,-1.39844c-0.00781,-8.37109 0,-25.61719 0,-25.61719v-1zM19.09375,14c0.94141,0.00391 1.875,0.08203 2.80078,0.32031c1.87891,0.48047 3.21484,1.58203 4,3.33984c0.46094,1.03516 0.73047,2.12109 0.88672,3.23438c0.16406,1.19531 0.23828,2.40234 0.21094,3.60547c-0.03516,1.5625 -0.14453,3.11328 -0.57812,4.625c-0.30469,1.05859 -0.76953,2.03516 -1.54297,2.83984c-0.29297,0.30859 -0.63281,0.57422 -0.96875,0.87891c0.77734,1.23828 1.5625,2.49219 2.37891,3.78906c-0.98828,0.45703 -1.95312,0.90234 -2.96484,1.36719c-0.85156,-1.37891 -1.69531,-2.74609 -2.53125,-4.09375c-1.66406,0.22656 -3.28125,0.17578 -4.875,-0.24219c-1.83594,-0.48047 -3.14062,-1.57031 -3.88281,-3.30469c-0.41406,-0.96484 -0.65625,-1.96484 -0.80859,-2.99219c-0.16406,-1.09766 -0.23047,-2.20703 -0.21875,-3.31641c0.01953,-1.64453 0.11719,-3.28516 0.58984,-4.87891c0.17188,-0.58203 0.39063,-1.15625 0.64453,-1.70703c0.73047,-1.58203 1.98438,-2.57422 3.65625,-3.07031c0.73828,-0.21484 1.48828,-0.33984 2.25391,-0.375c0.31641,-0.01172 0.63281,-0.01953 0.94922,-0.01953zM31,16h3v4h4v3h-4c0,0 -0.01172,3.10938 0,5c0.00391,0.53125 0.01953,1.34766 0.0625,1.875c0.00781,0.14063 0.04688,0.27734 0.08203,0.41797c0.09375,0.33594 0.31641,0.55859 0.65234,0.62891c0.26563,0.05469 0.53906,0.08203 0.80859,0.07813c0.625,-0.01172 1.41406,-0.10937 2.03906,-0.13281c0.05859,-0.00391 0.11328,0.01172 0.21875,0.01953c0.06641,0.78516 0.10938,1.87891 0.13672,2.69531c-0.28516,0.05469 -0.55078,0.10547 -0.8125,0.15234c-0.93359,0.16797 -2.03906,0.31641 -2.98437,0.23438c-0.49609,-0.04687 -0.98047,-0.14844 -1.44141,-0.34375c-0.60547,-0.26172 -1.03516,-0.6875 -1.29297,-1.29687c-0.30859,-0.71484 -0.46875,-1.55859 -0.46875,-2.32812v-7h-2v-3h2zM18.99609,17.01953c-0.59375,0 -1.1875,0.07031 -1.77734,0.21484c-1.04687,0.26172 -1.83203,0.81641 -2.29687,1.70313c-0.11328,0.21094 -0.21875,0.42969 -0.30078,0.65234c-0.41406,1.07422 -0.57812,2.19141 -0.60937,3.32031c-0.02734,1.04297 -0.00391,2.08984 0.05078,3.13281c0.05469,0.92969 0.24609,1.83984 0.60547,2.72266c0.44531,1.08984 1.29297,1.77344 2.55078,2.05469c1.19922,0.26953 2.40234,0.26563 3.59766,-0.00781c1.17578,-0.27344 2.01172,-0.90234 2.43359,-1.93359c0.10938,-0.26172 0.20703,-0.53125 0.28516,-0.80469c0.37109,-1.28516 0.41016,-2.59766 0.46484,-4.28906c-0.05859,-0.60937 -0.11719,-1.59375 -0.24219,-2.57031c-0.10156,-0.80859 -0.33203,-1.59375 -0.73828,-2.32812c-0.47266,-0.85547 -1.23047,-1.40234 -2.25,-1.65234c-0.58984,-0.14453 -1.18359,-0.21484 -1.77344,-0.21484z">
</path>
</g>
</g>
</svg>
<p class="center-align">PyQt5</p>
</article>
</article>
<article class="border max small-round">
<h6>Skills involved</h6>
<li>Compiling audio</li>
<li>Generating video visualizer</li>
<li>Generating sheet music</li>
<li>Live music generation</li>
</article>
</div>
</div>
</article>
<article class="margin">
<article class="border no-padding small-round bottom-margin m s">
<img class="responsive" style="max-width: 1000px" src="/static/images/cncbitsapp.png"">
</article>
<div class="row no-margin">
<article class="border max small-round">
<div class="row">
<img class="small" src="https://raw.githubusercontent.com/Jared-Gross/Bits-App/master/icons/icon5.png">
<h4 class="max left-align small">CNC Bits App</h4>
</div>
<p>Does <b>calculation</b> with bits for CNC machinery.</p>
<nav>
<a class="link" href="https://pinelandcabinets.hbni.net/bits"><i class="mdi mdi-web"></i></a>
<a class="link" href="https://github.com/Jared-Gross/Bits-App"><i class="mdi mdi-github"></i></a>
<a class="link" href="https://drive.google.com/file/d/1v7gpsKDbWNqSbtzRVzd1QofdCN2nZAth/view?usp=drive_web"><i class="mdi mdi-download"></i></a>
</nav>
</article>
<article class="border no-padding small-round l">
<img class="responsive" style="max-width: 1000px" src="/static/images/cncbitsapp.png"">
</article>
</div>
<div class="grid l m">
<div class="row">
<div class="border row small-round">
<article class="transparent">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#0277BD"
d="M24.047,5c-1.555,0.005-2.633,0.142-3.936,0.367c-3.848,0.67-4.549,2.077-4.549,4.67V14h9v2H15.22h-4.35c-2.636,0-4.943,1.242-5.674,4.219c-0.826,3.417-0.863,5.557,0,9.125C5.851,32.005,7.294,34,9.931,34h3.632v-5.104c0-2.966,2.686-5.896,5.764-5.896h7.236c2.523,0,5-1.862,5-4.377v-8.586c0-2.439-1.759-4.263-4.218-4.672C27.406,5.359,25.589,4.994,24.047,5z M19.063,9c0.821,0,1.5,0.677,1.5,1.502c0,0.833-0.679,1.498-1.5,1.498c-0.837,0-1.5-0.664-1.5-1.498C17.563,9.68,18.226,9,19.063,9z">
</path>
<path fill="#FFC107"
d="M23.078,43c1.555-0.005,2.633-0.142,3.936-0.367c3.848-0.67,4.549-2.077,4.549-4.67V34h-9v-2h9.343h4.35c2.636,0,4.943-1.242,5.674-4.219c0.826-3.417,0.863-5.557,0-9.125C41.274,15.995,39.831,14,37.194,14h-3.632v5.104c0,2.966-2.686,5.896-5.764,5.896h-7.236c-2.523,0-5,1.862-5,4.377v8.586c0,2.439,1.759,4.263,4.218,4.672C19.719,42.641,21.536,43.006,23.078,43z M28.063,39c-0.821,0-1.5-0.677-1.5-1.502c0-0.833,0.679-1.498,1.5-1.498c0.837,0,1.5,0.664,1.5,1.498C29.563,38.32,28.899,39,28.063,39z">
</path>
</svg>
<p class="center-align">Python</p>
</article>
<article class="transparent">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0,0,256,256" style="fill:#000000;">
<g fill="#3cba4b" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<g transform="scale(5.12,5.12)">
<path
d="M9.43359,8c-0.52734,0 -0.96094,0.17969 -1.33203,0.55078c-1.83594,1.82422 -3.67578,3.64063 -5.52344,5.45313c-0.39062,0.38281 -0.57812,0.82813 -0.57812,1.36328c0.00781,8.03906 0.00781,24.01563 0.00781,25.51563l0.07031,1.11328h1c1.47266,0 25.44531,-0.00391 37.47266,0.00391c0.54297,0 0.99609,-0.1875 1.39453,-0.57812c1.81641,-1.8125 3.64063,-3.61328 5.47266,-5.40625c0.39063,-0.39062 0.58203,-0.84375 0.58203,-1.39844c-0.00781,-8.37109 0,-25.61719 0,-25.61719v-1zM19.09375,14c0.94141,0.00391 1.875,0.08203 2.80078,0.32031c1.87891,0.48047 3.21484,1.58203 4,3.33984c0.46094,1.03516 0.73047,2.12109 0.88672,3.23438c0.16406,1.19531 0.23828,2.40234 0.21094,3.60547c-0.03516,1.5625 -0.14453,3.11328 -0.57812,4.625c-0.30469,1.05859 -0.76953,2.03516 -1.54297,2.83984c-0.29297,0.30859 -0.63281,0.57422 -0.96875,0.87891c0.77734,1.23828 1.5625,2.49219 2.37891,3.78906c-0.98828,0.45703 -1.95312,0.90234 -2.96484,1.36719c-0.85156,-1.37891 -1.69531,-2.74609 -2.53125,-4.09375c-1.66406,0.22656 -3.28125,0.17578 -4.875,-0.24219c-1.83594,-0.48047 -3.14062,-1.57031 -3.88281,-3.30469c-0.41406,-0.96484 -0.65625,-1.96484 -0.80859,-2.99219c-0.16406,-1.09766 -0.23047,-2.20703 -0.21875,-3.31641c0.01953,-1.64453 0.11719,-3.28516 0.58984,-4.87891c0.17188,-0.58203 0.39063,-1.15625 0.64453,-1.70703c0.73047,-1.58203 1.98438,-2.57422 3.65625,-3.07031c0.73828,-0.21484 1.48828,-0.33984 2.25391,-0.375c0.31641,-0.01172 0.63281,-0.01953 0.94922,-0.01953zM31,16h3v4h4v3h-4c0,0 -0.01172,3.10938 0,5c0.00391,0.53125 0.01953,1.34766 0.0625,1.875c0.00781,0.14063 0.04688,0.27734 0.08203,0.41797c0.09375,0.33594 0.31641,0.55859 0.65234,0.62891c0.26563,0.05469 0.53906,0.08203 0.80859,0.07813c0.625,-0.01172 1.41406,-0.10937 2.03906,-0.13281c0.05859,-0.00391 0.11328,0.01172 0.21875,0.01953c0.06641,0.78516 0.10938,1.87891 0.13672,2.69531c-0.28516,0.05469 -0.55078,0.10547 -0.8125,0.15234c-0.93359,0.16797 -2.03906,0.31641 -2.98437,0.23438c-0.49609,-0.04687 -0.98047,-0.14844 -1.44141,-0.34375c-0.60547,-0.26172 -1.03516,-0.6875 -1.29297,-1.29687c-0.30859,-0.71484 -0.46875,-1.55859 -0.46875,-2.32812v-7h-2v-3h2zM18.99609,17.01953c-0.59375,0 -1.1875,0.07031 -1.77734,0.21484c-1.04687,0.26172 -1.83203,0.81641 -2.29687,1.70313c-0.11328,0.21094 -0.21875,0.42969 -0.30078,0.65234c-0.41406,1.07422 -0.57812,2.19141 -0.60937,3.32031c-0.02734,1.04297 -0.00391,2.08984 0.05078,3.13281c0.05469,0.92969 0.24609,1.83984 0.60547,2.72266c0.44531,1.08984 1.29297,1.77344 2.55078,2.05469c1.19922,0.26953 2.40234,0.26563 3.59766,-0.00781c1.17578,-0.27344 2.01172,-0.90234 2.43359,-1.93359c0.10938,-0.26172 0.20703,-0.53125 0.28516,-0.80469c0.37109,-1.28516 0.41016,-2.59766 0.46484,-4.28906c-0.05859,-0.60937 -0.11719,-1.59375 -0.24219,-2.57031c-0.10156,-0.80859 -0.33203,-1.59375 -0.73828,-2.32812c-0.47266,-0.85547 -1.23047,-1.40234 -2.25,-1.65234c-0.58984,-0.14453 -1.18359,-0.21484 -1.77344,-0.21484z">
</path>
</g>
</g>
</svg>
<p class="center-align">PyQt5</p>
</article>
</div>
<div class="border max small-round padding">
<h6>Skills involved</h6>
<li>Mathematics for CNC bits</li>
</div>
</div>
</div>
<div class="top-margin s">
<article class="border row small-round middle-align wrap">
<article class="transparent no-padding">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#0277BD"
d="M24.047,5c-1.555,0.005-2.633,0.142-3.936,0.367c-3.848,0.67-4.549,2.077-4.549,4.67V14h9v2H15.22h-4.35c-2.636,0-4.943,1.242-5.674,4.219c-0.826,3.417-0.863,5.557,0,9.125C5.851,32.005,7.294,34,9.931,34h3.632v-5.104c0-2.966,2.686-5.896,5.764-5.896h7.236c2.523,0,5-1.862,5-4.377v-8.586c0-2.439-1.759-4.263-4.218-4.672C27.406,5.359,25.589,4.994,24.047,5z M19.063,9c0.821,0,1.5,0.677,1.5,1.502c0,0.833-0.679,1.498-1.5,1.498c-0.837,0-1.5-0.664-1.5-1.498C17.563,9.68,18.226,9,19.063,9z">
</path>
<path fill="#FFC107"
d="M23.078,43c1.555-0.005,2.633-0.142,3.936-0.367c3.848-0.67,4.549-2.077,4.549-4.67V34h-9v-2h9.343h4.35c2.636,0,4.943-1.242,5.674-4.219c0.826-3.417,0.863-5.557,0-9.125C41.274,15.995,39.831,14,37.194,14h-3.632v5.104c0,2.966-2.686,5.896-5.764,5.896h-7.236c-2.523,0-5,1.862-5,4.377v8.586c0,2.439,1.759,4.263,4.218,4.672C19.719,42.641,21.536,43.006,23.078,43z M28.063,39c-0.821,0-1.5-0.677-1.5-1.502c0-0.833,0.679-1.498,1.5-1.498c0.837,0,1.5,0.664,1.5,1.498C29.563,38.32,28.899,39,28.063,39z">
</path>
</svg>
<p class="center-align">Python</p>
</article>
<article class="transparent no-padding">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0,0,256,256" style="fill:#000000;">
<g fill="#3cba4b" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<g transform="scale(5.12,5.12)">
<path
d="M9.43359,8c-0.52734,0 -0.96094,0.17969 -1.33203,0.55078c-1.83594,1.82422 -3.67578,3.64063 -5.52344,5.45313c-0.39062,0.38281 -0.57812,0.82813 -0.57812,1.36328c0.00781,8.03906 0.00781,24.01563 0.00781,25.51563l0.07031,1.11328h1c1.47266,0 25.44531,-0.00391 37.47266,0.00391c0.54297,0 0.99609,-0.1875 1.39453,-0.57812c1.81641,-1.8125 3.64063,-3.61328 5.47266,-5.40625c0.39063,-0.39062 0.58203,-0.84375 0.58203,-1.39844c-0.00781,-8.37109 0,-25.61719 0,-25.61719v-1zM19.09375,14c0.94141,0.00391 1.875,0.08203 2.80078,0.32031c1.87891,0.48047 3.21484,1.58203 4,3.33984c0.46094,1.03516 0.73047,2.12109 0.88672,3.23438c0.16406,1.19531 0.23828,2.40234 0.21094,3.60547c-0.03516,1.5625 -0.14453,3.11328 -0.57812,4.625c-0.30469,1.05859 -0.76953,2.03516 -1.54297,2.83984c-0.29297,0.30859 -0.63281,0.57422 -0.96875,0.87891c0.77734,1.23828 1.5625,2.49219 2.37891,3.78906c-0.98828,0.45703 -1.95312,0.90234 -2.96484,1.36719c-0.85156,-1.37891 -1.69531,-2.74609 -2.53125,-4.09375c-1.66406,0.22656 -3.28125,0.17578 -4.875,-0.24219c-1.83594,-0.48047 -3.14062,-1.57031 -3.88281,-3.30469c-0.41406,-0.96484 -0.65625,-1.96484 -0.80859,-2.99219c-0.16406,-1.09766 -0.23047,-2.20703 -0.21875,-3.31641c0.01953,-1.64453 0.11719,-3.28516 0.58984,-4.87891c0.17188,-0.58203 0.39063,-1.15625 0.64453,-1.70703c0.73047,-1.58203 1.98438,-2.57422 3.65625,-3.07031c0.73828,-0.21484 1.48828,-0.33984 2.25391,-0.375c0.31641,-0.01172 0.63281,-0.01953 0.94922,-0.01953zM31,16h3v4h4v3h-4c0,0 -0.01172,3.10938 0,5c0.00391,0.53125 0.01953,1.34766 0.0625,1.875c0.00781,0.14063 0.04688,0.27734 0.08203,0.41797c0.09375,0.33594 0.31641,0.55859 0.65234,0.62891c0.26563,0.05469 0.53906,0.08203 0.80859,0.07813c0.625,-0.01172 1.41406,-0.10937 2.03906,-0.13281c0.05859,-0.00391 0.11328,0.01172 0.21875,0.01953c0.06641,0.78516 0.10938,1.87891 0.13672,2.69531c-0.28516,0.05469 -0.55078,0.10547 -0.8125,0.15234c-0.93359,0.16797 -2.03906,0.31641 -2.98437,0.23438c-0.49609,-0.04687 -0.98047,-0.14844 -1.44141,-0.34375c-0.60547,-0.26172 -1.03516,-0.6875 -1.29297,-1.29687c-0.30859,-0.71484 -0.46875,-1.55859 -0.46875,-2.32812v-7h-2v-3h2zM18.99609,17.01953c-0.59375,0 -1.1875,0.07031 -1.77734,0.21484c-1.04687,0.26172 -1.83203,0.81641 -2.29687,1.70313c-0.11328,0.21094 -0.21875,0.42969 -0.30078,0.65234c-0.41406,1.07422 -0.57812,2.19141 -0.60937,3.32031c-0.02734,1.04297 -0.00391,2.08984 0.05078,3.13281c0.05469,0.92969 0.24609,1.83984 0.60547,2.72266c0.44531,1.08984 1.29297,1.77344 2.55078,2.05469c1.19922,0.26953 2.40234,0.26563 3.59766,-0.00781c1.17578,-0.27344 2.01172,-0.90234 2.43359,-1.93359c0.10938,-0.26172 0.20703,-0.53125 0.28516,-0.80469c0.37109,-1.28516 0.41016,-2.59766 0.46484,-4.28906c-0.05859,-0.60937 -0.11719,-1.59375 -0.24219,-2.57031c-0.10156,-0.80859 -0.33203,-1.59375 -0.73828,-2.32812c-0.47266,-0.85547 -1.23047,-1.40234 -2.25,-1.65234c-0.58984,-0.14453 -1.18359,-0.21484 -1.77344,-0.21484z">
</path>
</g>
</g>
</svg>
<p class="center-align">PyQt5</p>
</article>
</article>
<article class="border max small-round">
<h6>Skills involved</h6>
<li>Mathematics for CNC bits</li>
</article>
</div>
</article>
<article class="margin">
<article class="border no-padding small-round bottom-margin m s">
<img class="responsive" style="max-width: 1000px" src="/static/images/jpasswordmanager.png"">
</article>
<div class="row no-margin">
<article class="border no-padding l">
<img class="responsive" style="max-width: 1000px" src="/static/images/jpasswordmanager.png"">
</article>
<article class="border max small-round">
<div class="row">
<img class="small circle" src="https://raw.githubusercontent.com/Jared-Gross/J-Password-Manager/master/icon.png">
<h4 class="max left-align small">J-Password Manager</h4>
</div>
<p>A local <b>password manager</b>.</p>
<nav>
<a class="link" href="https://github.com/Jared-Gross/J-Password-Manager"><i class="mdi mdi-github"></i></a>
</nav>
</article>
</div>
<div class="grid l m">
<div class="row">
<div class="border row small-round">
<article class="transparent">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#0277BD"
d="M24.047,5c-1.555,0.005-2.633,0.142-3.936,0.367c-3.848,0.67-4.549,2.077-4.549,4.67V14h9v2H15.22h-4.35c-2.636,0-4.943,1.242-5.674,4.219c-0.826,3.417-0.863,5.557,0,9.125C5.851,32.005,7.294,34,9.931,34h3.632v-5.104c0-2.966,2.686-5.896,5.764-5.896h7.236c2.523,0,5-1.862,5-4.377v-8.586c0-2.439-1.759-4.263-4.218-4.672C27.406,5.359,25.589,4.994,24.047,5z M19.063,9c0.821,0,1.5,0.677,1.5,1.502c0,0.833-0.679,1.498-1.5,1.498c-0.837,0-1.5-0.664-1.5-1.498C17.563,9.68,18.226,9,19.063,9z">
</path>
<path fill="#FFC107"
d="M23.078,43c1.555-0.005,2.633-0.142,3.936-0.367c3.848-0.67,4.549-2.077,4.549-4.67V34h-9v-2h9.343h4.35c2.636,0,4.943-1.242,5.674-4.219c0.826-3.417,0.863-5.557,0-9.125C41.274,15.995,39.831,14,37.194,14h-3.632v5.104c0,2.966-2.686,5.896-5.764,5.896h-7.236c-2.523,0-5,1.862-5,4.377v8.586c0,2.439,1.759,4.263,4.218,4.672C19.719,42.641,21.536,43.006,23.078,43z M28.063,39c-0.821,0-1.5-0.677-1.5-1.502c0-0.833,0.679-1.498,1.5-1.498c0.837,0,1.5,0.664,1.5,1.498C29.563,38.32,28.899,39,28.063,39z">
</path>
</svg>
<p class="center-align">Python</p>
</article>
<article class="transparent">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0,0,256,256" style="fill:#000000;">
<g fill="#3cba4b" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<g transform="scale(5.12,5.12)">
<path d="M9.43359,8c-0.52734,0 -0.96094,0.17969 -1.33203,0.55078c-1.83594,1.82422 -3.67578,3.64063 -5.52344,5.45313c-0.39062,0.38281 -0.57812,0.82813 -0.57812,1.36328c0.00781,8.03906 0.00781,24.01563 0.00781,25.51563l0.07031,1.11328h1c1.47266,0 25.44531,-0.00391 37.47266,0.00391c0.54297,0 0.99609,-0.1875 1.39453,-0.57812c1.81641,-1.8125 3.64063,-3.61328 5.47266,-5.40625c0.39063,-0.39062 0.58203,-0.84375 0.58203,-1.39844c-0.00781,-8.37109 0,-25.61719 0,-25.61719v-1zM19.09375,14c0.94141,0.00391 1.875,0.08203 2.80078,0.32031c1.87891,0.48047 3.21484,1.58203 4,3.33984c0.46094,1.03516 0.73047,2.12109 0.88672,3.23438c0.16406,1.19531 0.23828,2.40234 0.21094,3.60547c-0.03516,1.5625 -0.14453,3.11328 -0.57812,4.625c-0.30469,1.05859 -0.76953,2.03516 -1.54297,2.83984c-0.29297,0.30859 -0.63281,0.57422 -0.96875,0.87891c0.77734,1.23828 1.5625,2.49219 2.37891,3.78906c-0.98828,0.45703 -1.95312,0.90234 -2.96484,1.36719c-0.85156,-1.37891 -1.69531,-2.74609 -2.53125,-4.09375c-1.66406,0.22656 -3.28125,0.17578 -4.875,-0.24219c-1.83594,-0.48047 -3.14062,-1.57031 -3.88281,-3.30469c-0.41406,-0.96484 -0.65625,-1.96484 -0.80859,-2.99219c-0.16406,-1.09766 -0.23047,-2.20703 -0.21875,-3.31641c0.01953,-1.64453 0.11719,-3.28516 0.58984,-4.87891c0.17188,-0.58203 0.39063,-1.15625 0.64453,-1.70703c0.73047,-1.58203 1.98438,-2.57422 3.65625,-3.07031c0.73828,-0.21484 1.48828,-0.33984 2.25391,-0.375c0.31641,-0.01172 0.63281,-0.01953 0.94922,-0.01953zM31,16h3v4h4v3h-4c0,0 -0.01172,3.10938 0,5c0.00391,0.53125 0.01953,1.34766 0.0625,1.875c0.00781,0.14063 0.04688,0.27734 0.08203,0.41797c0.09375,0.33594 0.31641,0.55859 0.65234,0.62891c0.26563,0.05469 0.53906,0.08203 0.80859,0.07813c0.625,-0.01172 1.41406,-0.10937 2.03906,-0.13281c0.05859,-0.00391 0.11328,0.01172 0.21875,0.01953c0.06641,0.78516 0.10938,1.87891 0.13672,2.69531c-0.28516,0.05469 -0.55078,0.10547 -0.8125,0.15234c-0.93359,0.16797 -2.03906,0.31641 -2.98437,0.23438c-0.49609,-0.04687 -0.98047,-0.14844 -1.44141,-0.34375c-0.60547,-0.26172 -1.03516,-0.6875 -1.29297,-1.29687c-0.30859,-0.71484 -0.46875,-1.55859 -0.46875,-2.32812v-7h-2v-3h2zM18.99609,17.01953c-0.59375,0 -1.1875,0.07031 -1.77734,0.21484c-1.04687,0.26172 -1.83203,0.81641 -2.29687,1.70313c-0.11328,0.21094 -0.21875,0.42969 -0.30078,0.65234c-0.41406,1.07422 -0.57812,2.19141 -0.60937,3.32031c-0.02734,1.04297 -0.00391,2.08984 0.05078,3.13281c0.05469,0.92969 0.24609,1.83984 0.60547,2.72266c0.44531,1.08984 1.29297,1.77344 2.55078,2.05469c1.19922,0.26953 2.40234,0.26563 3.59766,-0.00781c1.17578,-0.27344 2.01172,-0.90234 2.43359,-1.93359c0.10938,-0.26172 0.20703,-0.53125 0.28516,-0.80469c0.37109,-1.28516 0.41016,-2.59766 0.46484,-4.28906c-0.05859,-0.60937 -0.11719,-1.59375 -0.24219,-2.57031c-0.10156,-0.80859 -0.33203,-1.59375 -0.73828,-2.32812c-0.47266,-0.85547 -1.23047,-1.40234 -2.25,-1.65234c-0.58984,-0.14453 -1.18359,-0.21484 -1.77344,-0.21484z">
</path>
</g>
</g>
</svg>
<p class="center-align">PyQt5</p>
</article>
</div>
<div class="border max small-round padding">
<h6>Skills involved</h6>
<li>User login</li>
<li>Encryption</li>
<li>Import and export CSV data</li>
</div>
</div>
</div>
<div class="top-margin s">
<article class="border row small-round middle-align wrap">
<article class="transparent no-padding">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#0277BD"
d="M24.047,5c-1.555,0.005-2.633,0.142-3.936,0.367c-3.848,0.67-4.549,2.077-4.549,4.67V14h9v2H15.22h-4.35c-2.636,0-4.943,1.242-5.674,4.219c-0.826,3.417-0.863,5.557,0,9.125C5.851,32.005,7.294,34,9.931,34h3.632v-5.104c0-2.966,2.686-5.896,5.764-5.896h7.236c2.523,0,5-1.862,5-4.377v-8.586c0-2.439-1.759-4.263-4.218-4.672C27.406,5.359,25.589,4.994,24.047,5z M19.063,9c0.821,0,1.5,0.677,1.5,1.502c0,0.833-0.679,1.498-1.5,1.498c-0.837,0-1.5-0.664-1.5-1.498C17.563,9.68,18.226,9,19.063,9z">
</path>
<path fill="#FFC107"
d="M23.078,43c1.555-0.005,2.633-0.142,3.936-0.367c3.848-0.67,4.549-2.077,4.549-4.67V34h-9v-2h9.343h4.35c2.636,0,4.943-1.242,5.674-4.219c0.826-3.417,0.863-5.557,0-9.125C41.274,15.995,39.831,14,37.194,14h-3.632v5.104c0,2.966-2.686,5.896-5.764,5.896h-7.236c-2.523,0-5,1.862-5,4.377v8.586c0,2.439,1.759,4.263,4.218,4.672C19.719,42.641,21.536,43.006,23.078,43z M28.063,39c-0.821,0-1.5-0.677-1.5-1.502c0-0.833,0.679-1.498,1.5-1.498c0.837,0,1.5,0.664,1.5,1.498C29.563,38.32,28.899,39,28.063,39z">
</path>
</svg>
<p class="center-align">Python</p>
</article>
<article class="transparent no-padding">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0,0,256,256" style="fill:#000000;">
<g fill="#3cba4b" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<g transform="scale(5.12,5.12)">
<path d="M9.43359,8c-0.52734,0 -0.96094,0.17969 -1.33203,0.55078c-1.83594,1.82422 -3.67578,3.64063 -5.52344,5.45313c-0.39062,0.38281 -0.57812,0.82813 -0.57812,1.36328c0.00781,8.03906 0.00781,24.01563 0.00781,25.51563l0.07031,1.11328h1c1.47266,0 25.44531,-0.00391 37.47266,0.00391c0.54297,0 0.99609,-0.1875 1.39453,-0.57812c1.81641,-1.8125 3.64063,-3.61328 5.47266,-5.40625c0.39063,-0.39062 0.58203,-0.84375 0.58203,-1.39844c-0.00781,-8.37109 0,-25.61719 0,-25.61719v-1zM19.09375,14c0.94141,0.00391 1.875,0.08203 2.80078,0.32031c1.87891,0.48047 3.21484,1.58203 4,3.33984c0.46094,1.03516 0.73047,2.12109 0.88672,3.23438c0.16406,1.19531 0.23828,2.40234 0.21094,3.60547c-0.03516,1.5625 -0.14453,3.11328 -0.57812,4.625c-0.30469,1.05859 -0.76953,2.03516 -1.54297,2.83984c-0.29297,0.30859 -0.63281,0.57422 -0.96875,0.87891c0.77734,1.23828 1.5625,2.49219 2.37891,3.78906c-0.98828,0.45703 -1.95312,0.90234 -2.96484,1.36719c-0.85156,-1.37891 -1.69531,-2.74609 -2.53125,-4.09375c-1.66406,0.22656 -3.28125,0.17578 -4.875,-0.24219c-1.83594,-0.48047 -3.14062,-1.57031 -3.88281,-3.30469c-0.41406,-0.96484 -0.65625,-1.96484 -0.80859,-2.99219c-0.16406,-1.09766 -0.23047,-2.20703 -0.21875,-3.31641c0.01953,-1.64453 0.11719,-3.28516 0.58984,-4.87891c0.17188,-0.58203 0.39063,-1.15625 0.64453,-1.70703c0.73047,-1.58203 1.98438,-2.57422 3.65625,-3.07031c0.73828,-0.21484 1.48828,-0.33984 2.25391,-0.375c0.31641,-0.01172 0.63281,-0.01953 0.94922,-0.01953zM31,16h3v4h4v3h-4c0,0 -0.01172,3.10938 0,5c0.00391,0.53125 0.01953,1.34766 0.0625,1.875c0.00781,0.14063 0.04688,0.27734 0.08203,0.41797c0.09375,0.33594 0.31641,0.55859 0.65234,0.62891c0.26563,0.05469 0.53906,0.08203 0.80859,0.07813c0.625,-0.01172 1.41406,-0.10937 2.03906,-0.13281c0.05859,-0.00391 0.11328,0.01172 0.21875,0.01953c0.06641,0.78516 0.10938,1.87891 0.13672,2.69531c-0.28516,0.05469 -0.55078,0.10547 -0.8125,0.15234c-0.93359,0.16797 -2.03906,0.31641 -2.98437,0.23438c-0.49609,-0.04687 -0.98047,-0.14844 -1.44141,-0.34375c-0.60547,-0.26172 -1.03516,-0.6875 -1.29297,-1.29687c-0.30859,-0.71484 -0.46875,-1.55859 -0.46875,-2.32812v-7h-2v-3h2zM18.99609,17.01953c-0.59375,0 -1.1875,0.07031 -1.77734,0.21484c-1.04687,0.26172 -1.83203,0.81641 -2.29687,1.70313c-0.11328,0.21094 -0.21875,0.42969 -0.30078,0.65234c-0.41406,1.07422 -0.57812,2.19141 -0.60937,3.32031c-0.02734,1.04297 -0.00391,2.08984 0.05078,3.13281c0.05469,0.92969 0.24609,1.83984 0.60547,2.72266c0.44531,1.08984 1.29297,1.77344 2.55078,2.05469c1.19922,0.26953 2.40234,0.26563 3.59766,-0.00781c1.17578,-0.27344 2.01172,-0.90234 2.43359,-1.93359c0.10938,-0.26172 0.20703,-0.53125 0.28516,-0.80469c0.37109,-1.28516 0.41016,-2.59766 0.46484,-4.28906c-0.05859,-0.60937 -0.11719,-1.59375 -0.24219,-2.57031c-0.10156,-0.80859 -0.33203,-1.59375 -0.73828,-2.32812c-0.47266,-0.85547 -1.23047,-1.40234 -2.25,-1.65234c-0.58984,-0.14453 -1.18359,-0.21484 -1.77344,-0.21484z">
</path>
</g>
</g>
</svg>
<p class="center-align">PyQt5</p>
</article>
</article>
<article class="border max small-round">
<h6>Skills involved</h6>
<li>User login</li>
<li>Encryption</li>
<li>Import and export CSV data</li>
</article>
</div>
</article>
<article class="margin">
<div class="row">
<div class="max">
<div class="border no-padding small-round s">
<img class="responsive" src="https://play-lh.googleusercontent.com/BA3r3GqeeZjiB1bcRD5RcNiU1J5RgImFNk5H6cPWmNSMceoiCw7XDC9llJtHGeHoTuY=w2560-h1440-rw">
</div>
<div class="row">
<img class="small circle" src="https://play-lh.googleusercontent.com/gBouMHruuHrv2jN1Hn1KR-gWKUHL1jTxJVDe-d3894bi6joZK9rLYhOh85-vbbIPmA=w240-h480-rw">
<h4 class="max left-align small">HBNI Audio Stream Listener (Android)</h4>
</div>
<p>View upcoming events and listen to current streams.</p>
<nav>
<a class="link" href="https://play.google.com/store/apps/details?id=com.thecodingjsoftware.hutteritechurch"><i class="mdi mdi-android"></i></a>
</nav>
<div class="row border small-round padding bottom-margin center-align">
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50" viewBox="0 0 48 48">
<linearGradient id="4VWS6u7YnbqFQfq9jue69a_1LAX3PYMg2iA_gr1" x1="20.678" x2="24.754" y1="3.274" y2="26.393" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#4bdf8d"></stop><stop offset=".857" stop-color="#42ca81"></stop></linearGradient><path fill="url(#4VWS6u7YnbqFQfq9jue69a_1LAX3PYMg2iA_gr1)" d="M4,23C4,11.954,12.954,3,24,3s20,8.954,20,20l-20,2L4,23z"></path><linearGradient id="4VWS6u7YnbqFQfq9jue69b_1LAX3PYMg2iA_gr2" x1="23.246" x2="27.322" y1="19.607" y2="42.726" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#54f093"></stop><stop offset=".998" stop-color="#46dc84"></stop></linearGradient><path fill="url(#4VWS6u7YnbqFQfq9jue69b_1LAX3PYMg2iA_gr2)" d="M44,23c0,11.046-8.954,20-20,20 S4,34.046,4,23H44z"></path><linearGradient id="4VWS6u7YnbqFQfq9jue69c_1LAX3PYMg2iA_gr3" x1="23.305" x2="24.695" y1="15.56" y2="23.44" gradientUnits="userSpaceOnUse"><stop offset=".179" stop-color="#3aad6d"></stop><stop offset=".857" stop-color="#3bb574"></stop></linearGradient><circle cx="24" cy="19.5" r="4" fill="url(#4VWS6u7YnbqFQfq9jue69c_1LAX3PYMg2iA_gr3)"></circle><g><path d="M24,16c-1.93,0-3.5,1.57-3.5,3.5S22.07,23,24,23s3.5-1.57,3.5-3.5S25.93,16,24,16z M24,21 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C25.5,20.33,24.83,21,24,21z M26.12,25.47l-1.76,1.76 c-0.2,0.19-0.52,0.19-0.72,0l-1.76-1.76l-4.4,7.66l0.91,0.48C20.12,34.53,22.01,35,24,35c1.95,0,3.89-0.48,5.61-1.39l0.91-0.49 L26.12,25.47z M20.27,32.28l2.04-3.56c0.96,0.87,2.42,0.87,3.38,0l2.04,3.56C25.34,33.24,22.6,33.22,20.27,32.28z M31.51,34.84 l-0.86,0.47C28.62,36.42,26.31,37,24,37c-2.36,0-4.6-0.57-6.66-1.68l-0.86-0.47l-2.97,5.17c0.14,0.1,0.28,0.18,0.43,0.25 l2.73-4.75l0.43,0.23c2.13,1.16,4.45,1.75,6.9,1.75c2.4,0,4.78-0.61,6.89-1.75l0.43-0.24l2.74,4.77c0.15-0.08,0.29-0.16,0.43-0.26 L31.51,34.84z M26.12,25.47l-1.76,1.76c-0.2,0.19-0.52,0.19-0.72,0l-1.76-1.76l-4.4,7.66l0.91,0.48C20.12,34.53,22.01,35,24,35 c1.95,0,3.89-0.48,5.61-1.39l0.91-0.49L26.12,25.47z M20.27,32.28l2.04-3.56c0.96,0.87,2.42,0.87,3.38,0l2.04,3.56 C25.34,33.24,22.6,33.22,20.27,32.28z M24,16c-1.93,0-3.5,1.57-3.5,3.5S22.07,23,24,23s3.5-1.57,3.5-3.5S25.93,16,24,16z M24,21 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C25.5,20.33,24.83,21,24,21z M24,16c-1.93,0-3.5,1.57-3.5,3.5 S22.07,23,24,23s3.5-1.57,3.5-3.5S25.93,16,24,16z M24,21c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C25.5,20.33,24.83,21,24,21z M26.12,25.47l-1.76,1.76c-0.2,0.19-0.52,0.19-0.72,0l-1.76-1.76l-4.4,7.66l0.91,0.48 C20.12,34.53,22.01,35,24,35c1.95,0,3.89-0.48,5.61-1.39l0.91-0.49L26.12,25.47z M20.27,32.28l2.04-3.56 c0.96,0.87,2.42,0.87,3.38,0l2.04,3.56C25.34,33.24,22.6,33.22,20.27,32.28z M26.12,25.47l-1.76,1.76c-0.2,0.19-0.52,0.19-0.72,0 l-1.76-1.76l-4.4,7.66l0.91,0.48C20.12,34.53,22.01,35,24,35c1.95,0,3.89-0.48,5.61-1.39l0.91-0.49L26.12,25.47z M20.27,32.28 l2.04-3.56c0.96,0.87,2.42,0.87,3.38,0l2.04,3.56C25.34,33.24,22.6,33.22,20.27,32.28z M24,16c-1.93,0-3.5,1.57-3.5,3.5 S22.07,23,24,23s3.5-1.57,3.5-3.5S25.93,16,24,16z M24,21c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C25.5,20.33,24.83,21,24,21z M24,16c-1.93,0-3.5,1.57-3.5,3.5S22.07,23,24,23s3.5-1.57,3.5-3.5S25.93,16,24,16z M24,21 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C25.5,20.33,24.83,21,24,21z M26.12,25.47l-1.76,1.76 c-0.2,0.19-0.52,0.19-0.72,0l-1.76-1.76l-4.4,7.66l0.91,0.48C20.12,34.53,22.01,35,24,35c1.95,0,3.89-0.48,5.61-1.39l0.91-0.49 L26.12,25.47z M20.27,32.28l2.04-3.56c0.96,0.87,2.42,0.87,3.38,0l2.04,3.56C25.34,33.24,22.6,33.22,20.27,32.28z M26.12,25.47 l-1.76,1.76c-0.2,0.19-0.52,0.19-0.72,0l-1.76-1.76l-4.4,7.66l0.91,0.48C20.12,34.53,22.01,35,24,35c1.95,0,3.89-0.48,5.61-1.39 l0.91-0.49L26.12,25.47z M20.27,32.28l2.04-3.56c0.96,0.87,2.42,0.87,3.38,0l2.04,3.56C25.34,33.24,22.6,33.22,20.27,32.28z M24,16c-1.93,0-3.5,1.57-3.5,3.5S22.07,23,24,23s3.5-1.57,3.5-3.5S25.93,16,24,16z M24,21c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C25.5,20.33,24.83,21,24,21z M39.99,23.55c0-0.19-0.03-0.38-0.1-0.55 c-0.06-0.2-0.17-0.39-0.32-0.54C39.29,22.17,38.89,22,38.48,22h-3c-0.65,0-1.19,0.41-1.4,1c-0.05,0.14-0.08,0.28-0.09,0.44 c-0.08,1.76-0.63,3.47-1.57,4.95l-2.34-4.06l0.48-0.48c0.23-0.23,0.38-0.53,0.42-0.85c0.01-0.07,0.02-0.14,0.02-0.21V14.5 c0-1.38-1.12-2.5-2.5-2.5H27v-1.5C27,9.67,26.33,9,25.5,9h-3C21.67,9,21,9.67,21,10.5V12h-1.5c-1.38,0-2.5,1.12-2.5,2.5v8.29 c0,0.07,0.01,0.14,0.02,0.21c0.04,0.32,0.19,0.62,0.42,0.85l0.48,0.48l-7.61,13.24c0.13,0.12,0.25,0.24,0.38,0.35 c0.25,0.23,0.51,0.44,0.77,0.65c0.13,0.11,0.26,0.21,0.39,0.31L20.41,24l-1-1L19,22.59V14.5c0-0.28,0.22-0.5,0.5-0.5H23v-3h2v3 h3.5c0.28,0,0.5,0.22,0.5,0.5v8.09L28.59,23l-1,1l4.55,7.92l0.92-1.06c1.67-1.92,2.69-4.34,2.9-6.86h2 c-0.24,3.46-1.75,6.67-4.27,9.09l-0.57,0.54l3.02,5.25c0.14-0.09,0.27-0.2,0.4-0.31c0.27-0.21,0.53-0.43,0.78-0.65 c0.12-0.12,0.25-0.23,0.37-0.35l-2.06-3.59C38.31,31.14,39.86,27.47,39.99,23.55z M30.65,35.31C28.62,36.42,26.31,37,24,37 c-2.36,0-4.6-0.57-6.66-1.68l-0.86-0.47l-2.97,5.17c0.14,0.1,0.28,0.18,0.43,0.25c0.29,0.18,0.58,0.35,0.88,0.49 c0.14,0.09,0.29,0.16,0.44,0.23l2-3.48C19.37,38.5,21.63,39,24,39c2.32,0,4.63-0.51,6.74-1.49l2,3.48 c0.15-0.07,0.3-0.15,0.45-0.23c0.3-0.15,0.59-0.31,0.87-0.48c0.15-0.08,0.29-0.16,0.43-0.26l-2.98-5.18L30.65,35.31z M26.12,25.47 l-1.76,1.76c-0.2,0.19-0.52,0.19-0.72,0l-1.76-1.76l-4.4,7.66l0.91,0.48C20.12,34.53,22.01,35,24,35c1.95,0,3.89-0.48,5.61-1.39 l0.91-0.49L26.12,25.47z M20.27,32.28l2.04-3.56c0.96,0.87,2.42,0.87,3.38,0l2.04,3.56C25.34,33.24,22.6,33.22,20.27,32.28z M24,16c-1.93,0-3.5,1.57-3.5,3.5S22.07,23,24,23s3.5-1.57,3.5-3.5S25.93,16,24,16z M24,21c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C25.5,20.33,24.83,21,24,21z M24,16c-1.93,0-3.5,1.57-3.5,3.5S22.07,23,24,23 s3.5-1.57,3.5-3.5S25.93,16,24,16z M24,21c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C25.5,20.33,24.83,21,24,21z M26.12,25.47l-1.76,1.76c-0.2,0.19-0.52,0.19-0.72,0l-1.76-1.76l-4.4,7.66l0.91,0.48 C20.12,34.53,22.01,35,24,35c1.95,0,3.89-0.48,5.61-1.39l0.91-0.49L26.12,25.47z M20.27,32.28l2.04-3.56 c0.96,0.87,2.42,0.87,3.38,0l2.04,3.56C25.34,33.24,22.6,33.22,20.27,32.28z M26.12,25.47l-1.76,1.76c-0.2,0.19-0.52,0.19-0.72,0 l-1.76-1.76l-4.4,7.66l0.91,0.48C20.12,34.53,22.01,35,24,35c1.95,0,3.89-0.48,5.61-1.39l0.91-0.49L26.12,25.47z M20.27,32.28 l2.04-3.56c0.96,0.87,2.42,0.87,3.38,0l2.04,3.56C25.34,33.24,22.6,33.22,20.27,32.28z M24,16c-1.93,0-3.5,1.57-3.5,3.5 S22.07,23,24,23s3.5-1.57,3.5-3.5S25.93,16,24,16z M24,21c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C25.5,20.33,24.83,21,24,21z M24,16c-1.93,0-3.5,1.57-3.5,3.5S22.07,23,24,23s3.5-1.57,3.5-3.5S25.93,16,24,16z M24,21 c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C25.5,20.33,24.83,21,24,21z M26.12,25.47l-1.76,1.76 c-0.2,0.19-0.52,0.19-0.72,0l-1.76-1.76l-4.4,7.66l0.91,0.48C20.12,34.53,22.01,35,24,35c1.95,0,3.89-0.48,5.61-1.39l0.91-0.49 L26.12,25.47z M20.27,32.28l2.04-3.56c0.96,0.87,2.42,0.87,3.38,0l2.04,3.56C25.34,33.24,22.6,33.22,20.27,32.28z M26.12,25.47 l-1.76,1.76c-0.2,0.19-0.52,0.19-0.72,0l-1.76-1.76l-4.4,7.66l0.91,0.48C20.12,34.53,22.01,35,24,35c1.95,0,3.89-0.48,5.61-1.39 l0.91-0.49L26.12,25.47z M20.27,32.28l2.04-3.56c0.96,0.87,2.42,0.87,3.38,0l2.04,3.56C25.34,33.24,22.6,33.22,20.27,32.28z M24,16c-1.93,0-3.5,1.57-3.5,3.5S22.07,23,24,23s3.5-1.57,3.5-3.5S25.93,16,24,16z M24,21c-0.83,0-1.5-0.67-1.5-1.5 c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5C25.5,20.33,24.83,21,24,21z M24,16c-1.93,0-3.5,1.57-3.5,3.5S22.07,23,24,23 s3.5-1.57,3.5-3.5S25.93,16,24,16z M24,21c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C25.5,20.33,24.83,21,24,21z M26.12,25.47l-1.76,1.76c-0.2,0.19-0.52,0.19-0.72,0l-1.76-1.76l-4.4,7.66l0.91,0.48 C20.12,34.53,22.01,35,24,35c1.95,0,3.89-0.48,5.61-1.39l0.91-0.49L26.12,25.47z M20.27,32.28l2.04-3.56 c0.96,0.87,2.42,0.87,3.38,0l2.04,3.56C25.34,33.24,22.6,33.22,20.27,32.28z M26.12,25.47l-1.76,1.76c-0.2,0.19-0.52,0.19-0.72,0 l-1.76-1.76l-4.4,7.66l0.91,0.48C20.12,34.53,22.01,35,24,35c1.95,0,3.89-0.48,5.61-1.39l0.91-0.49L26.12,25.47z M20.27,32.28 l2.04-3.56c0.96,0.87,2.42,0.87,3.38,0l2.04,3.56C25.34,33.24,22.6,33.22,20.27,32.28z M24,16c-1.93,0-3.5,1.57-3.5,3.5 S22.07,23,24,23s3.5-1.57,3.5-3.5S25.93,16,24,16z M24,21c-0.83,0-1.5-0.67-1.5-1.5c0-0.83,0.67-1.5,1.5-1.5s1.5,0.67,1.5,1.5 C25.5,20.33,24.83,21,24,21z" opacity=".05"></path><path d="M24,16.5c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3s3-1.35,3-3C27,17.85,25.65,16.5,24,16.5z M24,21.5 c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C26,20.6,25.1,21.5,24,21.5z M26.01,26.28l-1.3,1.3c-0.39,0.39-1.03,0.39-1.42,0 l-1.3-1.3l-3.82,6.65l0.45,0.24c1.66,0.88,3.47,1.33,5.38,1.33c1.87,0,3.73-0.46,5.37-1.34l0.46-0.24L26.01,26.28z M19.55,32.52 l2.65-4.61l0.38,0.38c0.78,0.78,2.06,0.78,2.84,0l0.38-0.38l2.64,4.6C25.65,33.82,22.3,33.81,19.55,32.52z M24,16.5 c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3s3-1.35,3-3C27,17.85,25.65,16.5,24,16.5z M24,21.5c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2 s2,0.9,2,2C26,20.6,25.1,21.5,24,21.5z M26.01,26.28l-1.3,1.3c-0.39,0.39-1.03,0.39-1.42,0l-1.3-1.3l-3.82,6.65l0.45,0.24 c1.66,0.88,3.47,1.33,5.38,1.33c1.87,0,3.73-0.46,5.37-1.34l0.46-0.24L26.01,26.28z M19.55,32.52l2.65-4.61l0.38,0.38 c0.78,0.78,2.06,0.78,2.84,0l0.38-0.38l2.64,4.6C25.65,33.82,22.3,33.81,19.55,32.52z M24,16.5c-1.65,0-3,1.35-3,3 c0,1.65,1.35,3,3,3s3-1.35,3-3C27,17.85,25.65,16.5,24,16.5z M24,21.5c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C26,20.6,25.1,21.5,24,21.5z M39.49,23.54c0.01-0.19-0.04-0.38-0.14-0.54c-0.04-0.07-0.08-0.13-0.14-0.19 c-0.19-0.2-0.46-0.31-0.73-0.31h-3c-0.36,0-0.69,0.2-0.85,0.5c-0.09,0.13-0.13,0.29-0.14,0.46c-0.09,2.12-0.84,4.17-2.11,5.86 l-2.92-5.07l0.75-0.75c0.13-0.14,0.23-0.31,0.27-0.5c0.01-0.07,0.02-0.14,0.02-0.21V14.5c0-1.1-0.9-2-2-2h-2v-2c0-0.55-0.45-1-1-1 h-3c-0.55,0-1,0.45-1,1v2h-2c-1.1,0-2,0.9-2,2v8.29c0,0.07,0.01,0.14,0.02,0.21c0.04,0.19,0.14,0.36,0.27,0.5l0.75,0.75 l-7.85,13.67c0.25,0.23,0.51,0.44,0.77,0.65l8.33-14.49l-1.29-1.29V14.5c0-0.55,0.45-1,1-1h3v-3h3v3h3c0.55,0,1,0.45,1,1v8.29 l-1.29,1.29l4.01,6.98l0.46-0.53c1.7-1.95,2.7-4.45,2.8-7.03h3.01c-0.13,3.78-1.71,7.32-4.45,9.95l-0.29,0.27l2.79,4.85 c0.27-0.21,0.53-0.43,0.78-0.65l-2.31-4.02C37.77,31.11,39.36,27.45,39.49,23.54z M24,16.5c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3 s3-1.35,3-3C27,17.85,25.65,16.5,24,16.5z M24,21.5c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C26,20.6,25.1,21.5,24,21.5z M31.32,35.51l-0.43,0.24C28.78,36.89,26.4,37.5,24,37.5c-2.45,0-4.77-0.59-6.9-1.75l-0.43-0.23l-2.73,4.75 c0.29,0.18,0.58,0.35,0.88,0.49l2.24-3.9c2.16,1.09,4.49,1.64,6.94,1.64c2.4,0,4.79-0.57,6.94-1.65l2.25,3.91 c0.3-0.15,0.59-0.31,0.87-0.48L31.32,35.51z M26.01,26.28l-1.3,1.3c-0.39,0.39-1.03,0.39-1.42,0l-1.3-1.3l-3.82,6.65l0.45,0.24 c1.66,0.88,3.47,1.33,5.38,1.33c1.87,0,3.73-0.46,5.37-1.34l0.46-0.24L26.01,26.28z M19.55,32.52l2.65-4.61l0.38,0.38 c0.78,0.78,2.06,0.78,2.84,0l0.38-0.38l2.64,4.6C25.65,33.82,22.3,33.81,19.55,32.52z M24,16.5c-1.65,0-3,1.35-3,3 c0,1.65,1.35,3,3,3s3-1.35,3-3C27,17.85,25.65,16.5,24,16.5z M24,21.5c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C26,20.6,25.1,21.5,24,21.5z M26.01,26.28l-1.3,1.3c-0.39,0.39-1.03,0.39-1.42,0l-1.3-1.3l-3.82,6.65l0.45,0.24 c1.66,0.88,3.47,1.33,5.38,1.33c1.87,0,3.73-0.46,5.37-1.34l0.46-0.24L26.01,26.28z M19.55,32.52l2.65-4.61l0.38,0.38 c0.78,0.78,2.06,0.78,2.84,0l0.38-0.38l2.64,4.6C25.65,33.82,22.3,33.81,19.55,32.52z M24,16.5c-1.65,0-3,1.35-3,3 c0,1.65,1.35,3,3,3s3-1.35,3-3C27,17.85,25.65,16.5,24,16.5z M24,21.5c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2 C26,20.6,25.1,21.5,24,21.5z M24,16.5c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3s3-1.35,3-3C27,17.85,25.65,16.5,24,16.5z M24,21.5 c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C26,20.6,25.1,21.5,24,21.5z M26.01,26.28l-1.3,1.3c-0.39,0.39-1.03,0.39-1.42,0 l-1.3-1.3l-3.82,6.65l0.45,0.24c1.66,0.88,3.47,1.33,5.38,1.33c1.87,0,3.73-0.46,5.37-1.34l0.46-0.24L26.01,26.28z M19.55,32.52 l2.65-4.61l0.38,0.38c0.78,0.78,2.06,0.78,2.84,0l0.38-0.38l2.64,4.6C25.65,33.82,22.3,33.81,19.55,32.52z M26.01,26.28l-1.3,1.3 c-0.39,0.39-1.03,0.39-1.42,0l-1.3-1.3l-3.82,6.65l0.45,0.24c1.66,0.88,3.47,1.33,5.38,1.33c1.87,0,3.73-0.46,5.37-1.34l0.46-0.24 L26.01,26.28z M19.55,32.52l2.65-4.61l0.38,0.38c0.78,0.78,2.06,0.78,2.84,0l0.38-0.38l2.64,4.6 C25.65,33.82,22.3,33.81,19.55,32.52z M24,16.5c-1.65,0-3,1.35-3,3c0,1.65,1.35,3,3,3s3-1.35,3-3C27,17.85,25.65,16.5,24,16.5z M24,21.5c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2s2,0.9,2,2C26,20.6,25.1,21.5,24,21.5z" opacity=".05"></path><linearGradient id="4VWS6u7YnbqFQfq9jue69d_1LAX3PYMg2iA_gr4" x1="145.793" x2="157.479" y1="44.127" y2="24.441" gradientTransform="matrix(-1 0 0 1 184 0)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#d8effe"></stop><stop offset=".178" stop-color="#d6edfd"></stop><stop offset=".278" stop-color="#cde7f8"></stop><stop offset=".358" stop-color="#c0ddef"></stop><stop offset=".428" stop-color="#accfe4"></stop><stop offset=".446" stop-color="#a6cbe0"></stop><stop offset=".675" stop-color="#bcd9eb"></stop><stop offset=".841" stop-color="#bad7ea"></stop><stop offset=".935" stop-color="#b2d2e6"></stop><stop offset="1" stop-color="#a6cbe0"></stop></linearGradient><path fill="url(#4VWS6u7YnbqFQfq9jue69d_1LAX3PYMg2iA_gr4)" d="M27.734,22.253L39.22,42.228 c0.043,0.075,0.066,0.161,0.067,0.248l0.008,3.024c0,0.193-0.105,0.349-0.251,0.433c-0.146,0.084-0.334,0.096-0.501-0.001 l-2.61-1.528c-0.075-0.044-0.137-0.107-0.181-0.182L23.786,23.411L27.734,22.253z"></path><linearGradient id="4VWS6u7YnbqFQfq9jue69e_1LAX3PYMg2iA_gr5" x1="14.904" x2="38.991" y1="30.5" y2="30.5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#d7eefe"></stop><stop offset=".859" stop-color="#d7eefe"></stop><stop offset="1" stop-color="#d7eefe"></stop></linearGradient><path fill="url(#4VWS6u7YnbqFQfq9jue69e_1LAX3PYMg2iA_gr5)" d="M24,38c-3.318,0-6.464-1.062-9.096-3.071 l2.428-3.18C19.26,33.222,21.566,34,24,34c5.903,0,10.735-4.674,10.989-10.515C35.001,23.215,35.214,23,35.483,23h2.999 c0.283,0,0.518,0.236,0.508,0.519C38.717,31.551,32.097,38,24,38z"></path><linearGradient id="4VWS6u7YnbqFQfq9jue69f_1LAX3PYMg2iA_gr6" x1="9.816" x2="21.501" y1="44.089" y2="24.403" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#d8effe"></stop><stop offset=".517" stop-color="#d6eefd"></stop><stop offset=".703" stop-color="#cfe9f9"></stop><stop offset=".836" stop-color="#c4e0f2"></stop><stop offset=".942" stop-color="#b3d4e8"></stop><stop offset="1" stop-color="#a6cbe0"></stop></linearGradient><path fill="url(#4VWS6u7YnbqFQfq9jue69f_1LAX3PYMg2iA_gr6)" d="M20.266,22.253L8.78,42.228 c-0.043,0.075-0.066,0.161-0.067,0.248L8.706,45.5c0,0.193,0.105,0.349,0.251,0.433c0.146,0.084,0.334,0.096,0.501-0.001 l2.61-1.528c0.075-0.044,0.137-0.107,0.181-0.182l11.966-20.811L20.266,22.253z"></path><path fill="#37474f" d="M28.5,13H26v-2.5c0-0.276-0.224-0.5-0.5-0.5h-3c-0.276,0-0.5,0.224-0.5,0.5V13h-2.5 c-0.828,0-1.5,0.672-1.5,1.5v8.293c0,0.133,0.053,0.26,0.146,0.354l4.786,4.786c0.59,0.59,1.546,0.59,2.135,0l4.786-4.786 C29.947,23.053,30,22.926,30,22.793V14.5C30,13.672,29.328,13,28.5,13z M24,22c-1.381,0-2.5-1.119-2.5-2.5 c0-1.381,1.119-2.5,2.5-2.5s2.5,1.119,2.5,2.5C26.5,20.881,25.381,22,24,22z"></path></g>
</svg>
<p class="center-align">Android Studio</p>
</article>
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="48" height="48" viewBox="0 0 48 48">
<path fill="#F44336" d="M23.65,24.898c-0.998-1.609-1.722-2.943-2.725-5.455C19.229,15.2,31.24,11.366,26.37,3.999c2.111,5.089-7.577,8.235-8.477,12.473C17.07,20.37,23.645,24.898,23.65,24.898z"></path><path fill="#F44336" d="M23.878,17.27c-0.192,2.516,2.229,3.857,2.299,5.695c0.056,1.496-1.447,2.743-1.447,2.743s2.728-0.536,3.579-2.818c0.945-2.534-1.834-4.269-1.548-6.298c0.267-1.938,6.031-5.543,6.031-5.543S24.311,11.611,23.878,17.27z"></path><g><path fill="#1565C0" d="M32.084 25.055c1.754-.394 3.233.723 3.233 2.01 0 2.901-4.021 5.643-4.021 5.643s6.225-.742 6.225-5.505C37.521 24.053 34.464 23.266 32.084 25.055zM29.129 27.395c0 0 1.941-1.383 2.458-1.902-4.763 1.011-15.638 1.147-15.638.269 0-.809 3.507-1.638 3.507-1.638s-7.773-.112-7.773 2.181C11.683 28.695 21.858 28.866 29.129 27.395z"></path><path fill="#1565C0" d="M27.935,29.571c-4.509,1.499-12.814,1.02-10.354-0.993c-1.198,0-2.974,0.963-2.974,1.889c0,1.857,8.982,3.291,15.63,0.572L27.935,29.571z"></path><path fill="#1565C0" d="M18.686,32.739c-1.636,0-2.695,1.054-2.695,1.822c0,2.391,9.76,2.632,13.627,0.205l-2.458-1.632C24.271,34.404,17.014,34.579,18.686,32.739z"></path><path fill="#1565C0" d="M36.281,36.632c0-0.936-1.055-1.377-1.433-1.588c2.228,5.373-22.317,4.956-22.317,1.784c0-0.721,1.807-1.427,3.477-1.093l-1.42-0.839C11.26,34.374,9,35.837,9,37.017C9,42.52,36.281,42.255,36.281,36.632z"></path><path fill="#1565C0" d="M39,38.604c-4.146,4.095-14.659,5.587-25.231,3.057C24.341,46.164,38.95,43.628,39,38.604z"></path></g>
</svg>
<p class="center-align">Java</p>
</article>
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="48" height="48" viewBox="0 0 48 48">
<path fill="#ff8f00" d="M8,37L23.234,8.436c0.321-0.602,1.189-0.591,1.494,0.02L30,19L8,37z"></path><path fill="#ffa000" d="M8,36.992l5.546-34.199c0.145-0.895,1.347-1.089,1.767-0.285L26,22.992L8,36.992z"></path><path fill="#ff6f00" d="M8.008 36.986L8.208 36.829 25.737 22.488 20.793 13.012z"></path><path fill="#ffc400" d="M8,37l26.666-25.713c0.559-0.539,1.492-0.221,1.606,0.547L40,37l-15,8.743 c-0.609,0.342-1.352,0.342-1.961,0L8,37z"></path>
</svg>
<p class="center-align">Firebase</p>
</article>
</div>
<div class="border small-round padding max">
<h6>Skills involved</h6>
<li>Web scraping</li>
<li>Android development</li>
<li>Push notifications with firebase</li>
</div>
</div>
<div class="border no-padding small-round l m" style="max-width: 20rem">
<img class="responsive" src="https://play-lh.googleusercontent.com/BA3r3GqeeZjiB1bcRD5RcNiU1J5RgImFNk5H6cPWmNSMceoiCw7XDC9llJtHGeHoTuY=w2560-h1440-rw">
</div>
</div>
</article>
<article class="margin">
<div class="border no-padding small-round s">
<img class="responsive" src="https://user-images.githubusercontent.com/25397800/150418509-4d36d37f-a528-48c7-9e0a-a13946ef6b87.png">
</div>
<div class="row">
<div class="border no-padding small-round l m" style="max-width: 20rem">
<img class="responsive" src="https://user-images.githubusercontent.com/25397800/150418509-4d36d37f-a528-48c7-9e0a-a13946ef6b87.png">
</div>
<div class="max">
<div class="row">
<img class="small circle" src="https://play-lh.googleusercontent.com/gBouMHruuHrv2jN1Hn1KR-gWKUHL1jTxJVDe-d3894bi6joZK9rLYhOh85-vbbIPmA=w240-h480-rw">
<h4 class="max left-align small">HBNI Audio Stream Listener (Desktop)</h4>
</div>
<p>View upcoming events and listen to current streams.</p>
<nav>
<a class="link" href="https://github.com/TheCodingJsoftware/HBNI-Audio-Stream-Listener"><i class="mdi mdi-github"></i></a>
</nav>
<div class="row border small-round padding bottom-margin center-align">
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#0277BD"
d="M24.047,5c-1.555,0.005-2.633,0.142-3.936,0.367c-3.848,0.67-4.549,2.077-4.549,4.67V14h9v2H15.22h-4.35c-2.636,0-4.943,1.242-5.674,4.219c-0.826,3.417-0.863,5.557,0,9.125C5.851,32.005,7.294,34,9.931,34h3.632v-5.104c0-2.966,2.686-5.896,5.764-5.896h7.236c2.523,0,5-1.862,5-4.377v-8.586c0-2.439-1.759-4.263-4.218-4.672C27.406,5.359,25.589,4.994,24.047,5z M19.063,9c0.821,0,1.5,0.677,1.5,1.502c0,0.833-0.679,1.498-1.5,1.498c-0.837,0-1.5-0.664-1.5-1.498C17.563,9.68,18.226,9,19.063,9z">
</path>
<path fill="#FFC107"
d="M23.078,43c1.555-0.005,2.633-0.142,3.936-0.367c3.848-0.67,4.549-2.077,4.549-4.67V34h-9v-2h9.343h4.35c2.636,0,4.943-1.242,5.674-4.219c0.826-3.417,0.863-5.557,0-9.125C41.274,15.995,39.831,14,37.194,14h-3.632v5.104c0,2.966-2.686,5.896-5.764,5.896h-7.236c-2.523,0-5,1.862-5,4.377v8.586c0,2.439,1.759,4.263,4.218,4.672C19.719,42.641,21.536,43.006,23.078,43z M28.063,39c-0.821,0-1.5-0.677-1.5-1.502c0-0.833,0.679-1.498,1.5-1.498c0.837,0,1.5,0.664,1.5,1.498C29.563,38.32,28.899,39,28.063,39z">
</path>
</svg>
<p class="center-align">Python</p>
</article>
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0,0,256,256" style="fill:#000000;">
<g fill="#3cba4b" fill-rule="nonzero" stroke="none" stroke-width="1" stroke-linecap="butt"
stroke-linejoin="miter" stroke-miterlimit="10" stroke-dasharray="" stroke-dashoffset="0"
font-family="none" font-weight="none" font-size="none" text-anchor="none"
style="mix-blend-mode: normal">
<g transform="scale(5.12,5.12)">
<path
d="M9.43359,8c-0.52734,0 -0.96094,0.17969 -1.33203,0.55078c-1.83594,1.82422 -3.67578,3.64063 -5.52344,5.45313c-0.39062,0.38281 -0.57812,0.82813 -0.57812,1.36328c0.00781,8.03906 0.00781,24.01563 0.00781,25.51563l0.07031,1.11328h1c1.47266,0 25.44531,-0.00391 37.47266,0.00391c0.54297,0 0.99609,-0.1875 1.39453,-0.57812c1.81641,-1.8125 3.64063,-3.61328 5.47266,-5.40625c0.39063,-0.39062 0.58203,-0.84375 0.58203,-1.39844c-0.00781,-8.37109 0,-25.61719 0,-25.61719v-1zM19.09375,14c0.94141,0.00391 1.875,0.08203 2.80078,0.32031c1.87891,0.48047 3.21484,1.58203 4,3.33984c0.46094,1.03516 0.73047,2.12109 0.88672,3.23438c0.16406,1.19531 0.23828,2.40234 0.21094,3.60547c-0.03516,1.5625 -0.14453,3.11328 -0.57812,4.625c-0.30469,1.05859 -0.76953,2.03516 -1.54297,2.83984c-0.29297,0.30859 -0.63281,0.57422 -0.96875,0.87891c0.77734,1.23828 1.5625,2.49219 2.37891,3.78906c-0.98828,0.45703 -1.95312,0.90234 -2.96484,1.36719c-0.85156,-1.37891 -1.69531,-2.74609 -2.53125,-4.09375c-1.66406,0.22656 -3.28125,0.17578 -4.875,-0.24219c-1.83594,-0.48047 -3.14062,-1.57031 -3.88281,-3.30469c-0.41406,-0.96484 -0.65625,-1.96484 -0.80859,-2.99219c-0.16406,-1.09766 -0.23047,-2.20703 -0.21875,-3.31641c0.01953,-1.64453 0.11719,-3.28516 0.58984,-4.87891c0.17188,-0.58203 0.39063,-1.15625 0.64453,-1.70703c0.73047,-1.58203 1.98438,-2.57422 3.65625,-3.07031c0.73828,-0.21484 1.48828,-0.33984 2.25391,-0.375c0.31641,-0.01172 0.63281,-0.01953 0.94922,-0.01953zM31,16h3v4h4v3h-4c0,0 -0.01172,3.10938 0,5c0.00391,0.53125 0.01953,1.34766 0.0625,1.875c0.00781,0.14063 0.04688,0.27734 0.08203,0.41797c0.09375,0.33594 0.31641,0.55859 0.65234,0.62891c0.26563,0.05469 0.53906,0.08203 0.80859,0.07813c0.625,-0.01172 1.41406,-0.10937 2.03906,-0.13281c0.05859,-0.00391 0.11328,0.01172 0.21875,0.01953c0.06641,0.78516 0.10938,1.87891 0.13672,2.69531c-0.28516,0.05469 -0.55078,0.10547 -0.8125,0.15234c-0.93359,0.16797 -2.03906,0.31641 -2.98437,0.23438c-0.49609,-0.04687 -0.98047,-0.14844 -1.44141,-0.34375c-0.60547,-0.26172 -1.03516,-0.6875 -1.29297,-1.29687c-0.30859,-0.71484 -0.46875,-1.55859 -0.46875,-2.32812v-7h-2v-3h2zM18.99609,17.01953c-0.59375,0 -1.1875,0.07031 -1.77734,0.21484c-1.04687,0.26172 -1.83203,0.81641 -2.29687,1.70313c-0.11328,0.21094 -0.21875,0.42969 -0.30078,0.65234c-0.41406,1.07422 -0.57812,2.19141 -0.60937,3.32031c-0.02734,1.04297 -0.00391,2.08984 0.05078,3.13281c0.05469,0.92969 0.24609,1.83984 0.60547,2.72266c0.44531,1.08984 1.29297,1.77344 2.55078,2.05469c1.19922,0.26953 2.40234,0.26563 3.59766,-0.00781c1.17578,-0.27344 2.01172,-0.90234 2.43359,-1.93359c0.10938,-0.26172 0.20703,-0.53125 0.28516,-0.80469c0.37109,-1.28516 0.41016,-2.59766 0.46484,-4.28906c-0.05859,-0.60937 -0.11719,-1.59375 -0.24219,-2.57031c-0.10156,-0.80859 -0.33203,-1.59375 -0.73828,-2.32812c-0.47266,-0.85547 -1.23047,-1.40234 -2.25,-1.65234c-0.58984,-0.14453 -1.18359,-0.21484 -1.77344,-0.21484z">
</path>
</g>
</g>
</svg>
<p class="center-align">PyQt5</p>
</article>
</div>
<div class="border small-round padding max">
<h6>Skills involved</h6>
<li>Web scraping</li>
</div>
</d>
</div>
</article>
<h2 class="center-align">Websites</h2>
<div class="small-divider"></div>
<article class="margin">
<div class="border small-round no-padding s">
<img class="responsive" src="/static/images/hbniaudioarchive.png"">
</div>
<div class="row">
<div class="max">
<div class="row">
<img class="small circle" src="https://audioarchives.hbni.net/static/icon.png">
<h4 class="max left-align small">HBNI Audio Archive</h4>
</div>
<p>View, play and download archived broadcasts from the HBNI Audio Streaming Service.</p>
<nav>
<a class="link" href="https://audioarchives.hbni.net"><i class="mdi mdi-web"></i></a>
<a class="link" href="https://github.com/TheCodingJsoftware/HBNI-Audio-Archive"><i class="mdi mdi-github"></i></a>
</nav>
<div class="border row padding small-round bottom-margin center-align scroll" style="display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));">
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50" viewBox="0 0 50 50">
<path d="M 2.609375 14.628906 C 2.194125 14.663781 1.8316094 14.997641 2.3496094 15.556641 C 3.3446094 16.118641 1.3683125 16.532203 1.9453125 16.908203 C 2.1293125 17.304203 1.9305781 17.745406 1.3925781 17.816406 C 0.60457812 17.884406 0.67926562 18.960484 1.4472656 18.396484 C 2.3042656 18.124484 1.5954062 18.504031 1.1914062 18.582031 C 0.28440625 18.846031 -0.33364063 19.752078 0.19335938 20.580078 C 0.69735938 21.720078 0.83165625 22.991734 1.2226562 24.177734 C 1.8696563 26.001734 2.8149688 27.737328 4.0429688 29.236328 C 4.6259687 30.086328 5.4782969 30.690313 6.2792969 31.320312 C 7.0672969 31.831312 7.9447969 32.342516 8.8417969 32.603516 C 10.434797 33.186516 12.144359 33.241047 13.818359 33.373047 C 14.838359 33.371047 15.862141 33.299141 16.869141 33.119141 C 17.775141 33.217141 18.427094 32.442563 19.246094 32.851562 C 19.742094 32.411563 20.464938 32.603203 20.960938 32.283203 C 21.327938 31.035203 19.700547 32.035781 19.185547 31.425781 C 18.625547 32.083781 18.155562 31.353594 17.476562 31.558594 C 16.320563 31.616594 17.564156 31.040719 17.535156 30.511719 C 16.922156 30.041719 16.229891 31.157031 15.837891 31.457031 C 14.869891 31.282031 13.911437 31.006891 13.023438 30.587891 C 12.011437 30.060891 11.018156 29.433922 10.285156 28.544922 C 9.5181563 27.636922 8.6703125 26.718734 8.3203125 25.552734 C 7.5803125 23.627734 7.6284531 21.543484 7.4394531 19.521484 C 7.5094531 18.152484 8.9550781 19.668828 9.5800781 19.173828 C 9.3660781 18.463828 8.2257031 18.239078 7.5957031 17.955078 C 6.9877031 17.913078 6.7661406 17.368219 6.1191406 17.324219 C 6.1501406 16.564219 4.9303281 16.982406 4.4863281 16.441406 C 4.9233281 15.313406 3.0385469 16.468187 3.1855469 15.492188 C 3.4925469 14.857687 3.024625 14.594031 2.609375 14.628906 z M 2.6152344 14.724609 C 2.7137969 14.700016 2.8271562 14.719797 2.9414062 14.810547 C 3.4834062 15.540547 1.9445156 14.726828 2.4785156 15.423828 C 2.1537656 15.271578 2.3195469 14.798391 2.6152344 14.724609 z M 41.914062 15.085938 C 41.847063 15.085938 41.671672 15.177281 41.388672 15.363281 C 41.038672 15.589281 40.669203 15.767484 40.283203 15.896484 C 40.041203 15.979484 39.921875 16.095141 39.921875 16.244141 C 39.921875 16.347141 40.005781 16.427375 40.175781 16.484375 C 40.536781 16.603375 40.773719 16.767516 40.886719 16.978516 C 40.969719 17.143516 41.011719 17.436375 41.011719 17.859375 L 41.011719 24.615234 C 41.011719 25.207234 40.868938 25.539328 40.585938 25.611328 C 40.270937 25.693328 40.113281 25.814609 40.113281 25.974609 C 40.113281 26.041609 40.118906 26.094859 40.128906 26.130859 C 40.153906 26.233859 40.321859 26.272094 40.630859 26.246094 C 41.857859 26.148094 42.729141 26.123922 43.244141 26.169922 C 43.409141 26.185922 43.509828 26.178391 43.548828 26.150391 C 43.587828 26.122391 43.607422 26.048687 43.607422 25.929688 C 43.607422 25.779687 43.486141 25.689203 43.244141 25.658203 C 42.852141 25.617203 42.602141 25.560281 42.494141 25.488281 C 42.340141 25.385281 42.256094 25.169844 42.246094 24.839844 C 42.236094 24.509844 42.232422 24.257031 42.232422 24.082031 C 42.232422 23.835031 42.353703 23.643766 42.595703 23.509766 C 42.811703 23.354766 42.962781 23.277344 43.050781 23.277344 C 43.122781 23.277344 43.182516 23.320344 43.228516 23.402344 C 43.795516 24.361344 44.486781 25.278297 45.300781 26.154297 C 45.423781 26.283297 45.630922 26.318719 45.919922 26.261719 C 46.502922 26.215719 46.972984 26.190547 47.333984 26.185547 C 47.575984 26.175547 47.697266 26.078437 47.697266 25.898438 C 47.697266 25.754437 47.668328 25.665812 47.611328 25.632812 C 47.554328 25.599812 47.408875 25.582031 47.171875 25.582031 C 46.852875 25.582031 46.508578 25.425328 46.142578 25.111328 C 45.570578 24.612328 44.962359 23.871578 44.318359 22.892578 C 44.143359 22.619578 44.056641 22.447 44.056641 22.375 C 44.056641 22.329 44.076188 22.290766 44.117188 22.259766 C 44.673188 21.703766 45.1975 21.313797 45.6875 21.091797 C 46.0385 20.926797 46.411594 20.835313 46.808594 20.820312 C 47.061594 20.805312 47.1875 20.710156 47.1875 20.535156 C 47.1875 20.349156 47.107266 20.253047 46.947266 20.248047 C 46.458266 20.248047 45.965703 20.245234 45.470703 20.240234 C 44.759703 20.235234 44.218656 20.20825 43.847656 20.15625 C 43.682656 20.13025 43.591172 20.208672 43.576172 20.388672 C 43.566172 20.568672 43.652031 20.668453 43.832031 20.689453 C 44.249031 20.746453 44.457031 20.843422 44.457031 20.982422 C 44.457031 21.059422 44.395484 21.163969 44.271484 21.292969 C 43.647484 21.833969 43.123312 22.270469 42.695312 22.605469 C 42.535313 22.739469 42.416844 22.806641 42.339844 22.806641 C 42.267844 22.806641 42.230469 22.739469 42.230469 22.605469 L 42.216797 17.767578 C 42.216797 17.133578 42.219609 16.627953 42.224609 16.251953 C 42.229609 15.705953 42.232422 15.450328 42.232422 15.486328 C 42.232422 15.218328 42.125062 15.085938 41.914062 15.085938 z M 24.267578 15.140625 C 24.185578 15.140625 23.988688 15.231969 23.679688 15.417969 C 23.303688 15.654969 22.939844 15.830359 22.589844 15.943359 C 22.357844 16.020359 22.242188 16.137969 22.242188 16.292969 C 22.242187 16.395969 22.322422 16.47425 22.482422 16.53125 C 22.786422 16.63925 22.998141 16.792281 23.119141 16.988281 C 23.240141 17.184281 23.302734 17.491203 23.302734 17.908203 L 23.302734 24.902344 C 23.302734 25.324344 23.161859 25.579062 22.880859 25.664062 C 22.599859 25.749063 22.460938 25.852563 22.460938 25.976562 C 22.460938 26.115562 22.484203 26.201422 22.533203 26.232422 C 22.582203 26.262422 22.712828 26.267094 22.923828 26.246094 C 23.975828 26.158094 24.855406 26.149797 25.566406 26.216797 C 25.798406 26.241797 25.914062 26.151312 25.914062 25.945312 C 25.914062 25.796312 25.799406 25.708594 25.566406 25.683594 C 25.190406 25.637594 24.924531 25.542391 24.769531 25.400391 C 24.614531 25.258391 24.537109 25.030797 24.537109 24.716797 L 24.507812 17.814453 C 24.501812 17.320453 24.506484 16.816641 24.521484 16.306641 C 24.542484 15.770641 24.552734 15.512203 24.552734 15.533203 C 24.552734 15.270203 24.458578 15.140625 24.267578 15.140625 z M 13.988281 15.953125 C 13.931281 15.963125 13.891234 16.017234 13.865234 16.115234 C 13.814234 16.275234 13.891656 16.401141 14.097656 16.494141 C 14.426656 16.644141 14.652437 16.811141 14.773438 16.994141 C 14.894438 17.177141 14.955078 17.439297 14.955078 17.779297 L 14.955078 24.396484 C 14.955078 25.226484 14.702266 25.669563 14.197266 25.726562 C 13.976266 25.747563 13.865234 25.823031 13.865234 25.957031 C 13.865234 26.169031 13.975266 26.259516 14.197266 26.228516 C 14.990266 26.120516 15.99775 26.116844 17.21875 26.214844 C 17.64075 26.250844 17.867438 26.183672 17.898438 26.013672 C 17.929437 25.818672 17.818406 25.707641 17.566406 25.681641 C 17.072406 25.619641 16.750563 25.549656 16.601562 25.472656 C 16.410562 25.379656 16.314453 25.203312 16.314453 24.945312 L 16.314453 21.46875 C 16.314453 21.40275 16.360125 21.367188 16.453125 21.367188 C 17.272125 21.367187 17.865516 21.389594 18.228516 21.433594 C 18.591516 21.477594 18.840609 21.822797 18.974609 22.466797 C 19.011609 22.636797 19.100141 22.712266 19.244141 22.697266 C 19.419141 22.687266 19.505 22.616422 19.5 22.482422 C 19.448 21.359422 19.494672 20.447094 19.638672 19.746094 C 19.664672 19.622094 19.589063 19.541859 19.414062 19.505859 C 19.208063 19.459859 19.088734 19.540094 19.052734 19.746094 C 18.995734 20.123094 18.937906 20.355313 18.878906 20.445312 C 18.819906 20.535312 18.703203 20.590328 18.533203 20.611328 C 17.662203 20.668328 16.998062 20.700078 16.539062 20.705078 C 16.390062 20.710078 16.316406 20.654156 16.316406 20.535156 L 16.316406 17.033203 C 16.316406 16.914203 16.340578 16.836781 16.392578 16.800781 C 16.475578 16.743781 16.651922 16.716797 16.919922 16.716797 C 18.089922 16.716797 18.819281 16.739156 19.113281 16.785156 C 19.386281 16.821156 19.606484 16.928516 19.771484 17.103516 C 19.911484 17.252516 20.057891 17.514625 20.212891 17.890625 C 20.268891 18.029625 20.369672 18.099609 20.513672 18.099609 C 20.657672 18.099609 20.728516 18.019375 20.728516 17.859375 C 20.748516 17.045375 20.802625 16.466094 20.890625 16.121094 C 20.895625 16.100094 20.898391 16.080687 20.900391 16.054688 C 20.900391 15.977687 20.727812 15.94775 20.382812 15.96875 C 19.346812 16.03075 18.117313 16.0625 16.695312 16.0625 C 15.489312 16.0625 14.723437 16.036375 14.398438 15.984375 C 14.176438 15.948375 14.040281 15.938125 13.988281 15.953125 z M 3.7910156 16.136719 C 3.9290156 16.165969 3.9766563 16.248328 3.5976562 16.298828 L 3.4453125 16.291016 C 3.4253125 16.131516 3.6530156 16.107469 3.7910156 16.136719 z M 3.6386719 16.669922 C 3.9126719 16.789922 4.4744063 16.845484 4.5664062 17.146484 C 4.0054062 16.854484 4.6780313 17.498328 4.2070312 17.486328 C 3.9530312 17.489328 3.4826719 16.943922 3.6386719 16.669922 z M 3.4980469 17.123047 C 4.1330469 17.606047 3.1441875 17.122781 2.7421875 17.425781 C 2.1091875 17.489781 3.4360469 17.069047 3.4980469 17.123047 z M 5.1757812 17.412109 C 5.2568125 17.434484 5.2567969 17.511125 5.1230469 17.671875 C 5.6150469 18.259875 5.2334375 18.061531 4.8984375 17.644531 C 5.1924375 17.847531 4.9656719 18.724094 4.5136719 18.121094 C 4.1936719 17.525094 3.9910781 17.927937 4.3300781 18.335938 C 3.9970781 17.708938 3.033125 17.976797 2.328125 18.216797 C 1.873125 18.166797 3.5105 17.828047 3.6875 17.748047 C 3.96125 17.753297 4.9326875 17.344984 5.1757812 17.412109 z M 7.1484375 18.076172 C 7.3495469 18.073578 7.5478906 18.081156 7.7441406 18.097656 C 8.0591406 18.464656 7.5056875 19.085953 6.9296875 19.126953 C 6.2296875 19.388953 5.5171875 19.453063 4.8671875 19.539062 C 4.0331875 19.434063 3.4343125 20.184297 2.5703125 20.279297 C 2.8003125 19.853297 2.3813594 20.132328 1.9433594 20.111328 C 2.1663594 20.971328 0.40035938 19.882781 1.4433594 19.675781 C 0.66135938 19.397781 0.65042188 20.2195 0.73242188 20.6875 L 0.6796875 20.6875 C -0.0363125 19.7655 0.76001562 19.389484 1.6660156 19.271484 C 1.4940156 19.696484 1.9134062 19.833156 2.3164062 19.910156 C 2.9694063 19.730156 1.8868594 19.614359 2.3808594 19.443359 C 2.6518594 19.393359 1.5168906 19.171922 2.4628906 19.044922 C 3.4328906 18.881922 4.3055781 18.500781 5.2675781 18.300781 C 5.9185781 18.171781 6.5451094 18.083953 7.1484375 18.076172 z M 6.9335938 18.294922 C 6.8479687 18.268297 6.648875 18.321844 6.546875 18.589844 C 6.620875 18.758844 6.6575781 18.540422 6.6425781 18.482422 C 6.9920781 18.428922 7.0192188 18.321547 6.9335938 18.294922 z M 4.9160156 18.654297 C 4.6361406 18.641422 4.177625 18.701984 4.015625 18.896484 C 4.221625 18.990484 4.4481406 18.636375 4.7441406 18.859375 C 5.2966406 18.754375 5.1958906 18.667172 4.9160156 18.654297 z M 8.9121094 18.705078 C 9.052002 18.682236 9.4851562 18.843984 9.3320312 19.115234 C 9.2270312 19.145234 9.2449687 18.986937 9.1679688 18.960938 C 8.8507188 18.799312 8.8281738 18.718783 8.9121094 18.705078 z M 3.4863281 19.080078 C 3.4131875 19.08 3.3546563 19.113125 3.3476562 19.203125 L 3.4882812 19.332031 C 4.0500312 19.377781 3.70575 19.080313 3.4863281 19.080078 z M 3.171875 19.337891 C 3.0675937 19.322656 2.9709687 19.380422 2.9179688 19.576172 C 3.0159688 19.552172 3.171625 19.608688 3.265625 19.679688 C 3.858125 20.084688 3.4847187 19.383594 3.171875 19.337891 z M 6.9824219 19.433594 C 7.5024453 19.33182 7.3507187 20.677922 7.1835938 21.091797 C 7.4985937 20.876797 7.4379375 22.090969 7.3359375 22.542969 C 7.5079375 22.311969 7.5787188 22.91675 7.3867188 23.34375 C 7.4027188 23.27375 7.8028125 23.21275 7.5078125 23.71875 C 7.2828125 23.22275 7.1850781 24.727734 7.3300781 24.052734 C 7.7270781 23.414734 7.6231406 24.018781 7.7441406 24.300781 C 7.8221406 24.885781 8.0831094 25.425359 8.1621094 25.943359 C 8.5291094 26.313359 8.0058125 26.0625 8.0078125 26.5625 C 8.1268125 26.4175 8.612375 26.766156 8.609375 27.285156 C 8.649375 26.462156 8.6966563 27.092641 9.0976562 27.306641 C 9.4326562 27.846641 9.6835938 28.351875 10.183594 28.796875 C 10.573594 29.247875 10.159125 28.931031 10.328125 29.207031 C 10.742125 29.941031 11.70125 30.366594 12.53125 30.558594 C 12.89525 31.032594 13.441641 31.504062 14.181641 31.289062 C 13.555641 31.675063 15.944719 31.780047 15.136719 31.998047 C 14.716719 32.226047 14.318203 31.851094 13.908203 31.871094 C 13.338203 31.675094 12.437172 31.074422 11.826172 31.482422 C 10.981172 32.011422 12.259219 30.892578 11.574219 31.392578 C 10.880219 32.225578 11.102781 30.874297 10.425781 31.279297 C 10.386781 31.150297 9.824 31.114719 10.25 30.886719 C 9.868 30.862719 10.106141 30.838203 10.244141 30.533203 C 10.080141 30.499203 9.1685469 30.531422 8.8105469 30.232422 C 8.3885469 29.683422 8.8842188 29.906328 9.3242188 29.986328 C 8.6182188 30.110328 9.5670625 30.516016 10.039062 30.291016 C 9.8270625 30.201016 9.5844375 29.742797 9.0234375 29.341797 C 8.2394375 28.869797 7.59425 28.644578 6.78125 28.267578 C 5.90125 27.745578 6.9782031 28.082422 7.2832031 28.357422 C 8.1612031 28.744422 7.8156406 27.814266 7.3066406 27.572266 C 6.7486406 27.595266 6.6052031 26.954234 6.1582031 26.990234 C 6.8642031 27.103234 7.3543594 26.807656 6.5683594 26.097656 C 5.8213594 25.225656 6.8803125 26.755594 6.4453125 26.558594 C 6.2473125 26.297594 6.3956719 25.922109 5.7636719 25.787109 C 5.7566719 26.028109 5.6770625 26.401531 5.5390625 25.894531 C 5.3630625 25.924531 5.1615781 26.117703 5.0175781 25.595703 C 5.1535781 25.002703 4.4303594 24.867281 4.3183594 24.488281 C 4.9433594 24.887281 5.2262031 24.572719 4.7832031 24.136719 C 4.4782031 23.603719 4.435625 24.021703 4.265625 24.095703 C 3.652625 24.721703 4.2095 23.015812 3.9375 23.507812 C 3.6635 23.499813 3.8211719 23.809359 3.8261719 24.193359 C 2.9301719 23.971359 4.0437344 24.664875 4.3027344 25.046875 C 3.8937344 24.618875 3.9630938 25.367719 3.6210938 25.011719 C 3.5050937 24.696719 3.4889219 24.199328 2.9199219 24.111328 C 3.5669219 23.887328 2.5350938 23.432203 2.6210938 23.408203 C 2.9910937 23.071203 3.038375 22.608031 3.484375 23.332031 C 2.919375 23.286031 3.4684219 24.264656 3.6074219 23.972656 C 3.5854219 23.471656 3.838375 22.945844 2.984375 22.714844 C 2.733375 23.052844 2.3007344 22.052672 2.8027344 22.263672 C 2.7367344 21.599672 3.5813437 21.991125 3.5273438 21.703125 C 3.9633438 21.512125 2.9995312 20.895437 3.5195312 20.648438 C 3.9175312 20.890438 4.9498594 20.267641 4.2558594 20.181641 C 4.6898594 20.177641 5.0379844 20.367734 5.0839844 19.927734 C 5.4349844 20.003734 6.3844844 20.306078 5.5214844 19.830078 C 5.7974844 19.693078 6.3807969 19.577266 6.7167969 19.572266 C 6.8204219 19.491641 6.9081328 19.448133 6.9824219 19.433594 z M 36.621094 19.992188 C 35.957094 19.992188 35.426297 20.140453 35.029297 20.439453 C 34.601297 20.749453 34.388672 21.181281 34.388672 21.738281 C 34.388672 22.191281 34.525828 22.552312 34.798828 22.820312 C 35.050828 23.072312 35.552687 23.366172 36.304688 23.701172 C 36.824688 23.928172 37.175469 24.126875 37.355469 24.296875 C 37.520469 24.446875 37.603516 24.631516 37.603516 24.853516 C 37.603516 25.358516 37.240672 25.611328 36.513672 25.611328 C 35.652672 25.611328 35.028578 25.274609 34.642578 24.599609 C 34.554578 24.450609 34.448219 24.383437 34.324219 24.398438 C 34.200219 24.408438 34.138672 24.549266 34.138672 24.822266 C 34.138672 25.456266 34.160172 25.810813 34.201172 25.882812 C 34.268172 25.959812 34.510734 26.043719 34.927734 26.136719 C 35.411734 26.239719 35.896859 26.292969 36.380859 26.292969 C 37.107859 26.292969 37.681562 26.130594 38.101562 25.808594 C 38.521563 25.486594 38.730469 25.053812 38.730469 24.507812 C 38.730469 24.013813 38.576531 23.619266 38.269531 23.322266 C 38.032531 23.096266 37.583828 22.839641 36.923828 22.556641 C 36.294828 22.283641 35.896563 22.082125 35.726562 21.953125 C 35.535562 21.803125 35.439453 21.604563 35.439453 21.351562 C 35.439453 20.898562 35.792047 20.671875 36.498047 20.671875 C 37.122047 20.671875 37.637922 21.002969 38.044922 21.667969 C 38.101922 21.760969 38.214766 21.789906 38.384766 21.753906 C 38.543766 21.712906 38.616563 21.658797 38.601562 21.591797 C 38.472563 21.045797 38.386703 20.628844 38.345703 20.339844 C 38.329703 20.241844 38.136625 20.158797 37.765625 20.091797 C 37.420625 20.025797 37.038094 19.992188 36.621094 19.992188 z M 30.1875 20.023438 C 29.5795 20.023438 28.947109 20.197969 28.287109 20.542969 C 27.658109 20.872969 27.34375 21.161203 27.34375 21.408203 C 27.34375 21.804203 27.555516 21.982406 27.978516 21.941406 C 28.349516 21.910406 28.634031 21.695828 28.832031 21.298828 C 29.030031 20.901828 29.240891 20.703125 29.462891 20.703125 C 30.240891 20.703125 30.613031 21.127656 30.582031 21.972656 L 30.568359 22.466797 C 30.563359 22.682797 30.385156 22.825578 30.035156 22.892578 C 27.994156 23.279578 26.974609 23.917594 26.974609 24.808594 C 26.974609 25.277594 27.1285 25.648875 27.4375 25.921875 C 27.7205 26.168875 28.073094 26.292969 28.496094 26.292969 C 28.944094 26.292969 29.390984 26.187562 29.833984 25.976562 C 30.276984 25.765563 30.522359 25.658203 30.568359 25.658203 C 30.630359 25.658203 30.737578 25.757125 30.892578 25.953125 C 31.046578 26.149125 31.224781 26.246094 31.425781 26.246094 C 31.662781 26.246094 31.979047 26.136969 32.373047 25.917969 C 32.767047 25.698969 32.964844 25.535734 32.964844 25.427734 C 32.964844 25.226734 32.889281 25.126 32.738281 25.125 C 32.712281 25.125 32.620937 25.138063 32.460938 25.164062 C 32.300938 25.190062 32.193719 25.203125 32.136719 25.203125 C 31.848719 25.203125 31.705938 25.036172 31.710938 24.701172 L 31.742188 21.515625 C 31.752188 20.520625 31.2335 20.023438 30.1875 20.023438 z M 6.9257812 20.259766 C 6.7942969 20.297453 6.5887187 20.996344 6.7304688 21.246094 C 7.0424688 21.743094 7.3546563 20.024563 7.0976562 20.601562 C 6.9596562 21.336562 6.8185781 21.029422 7.0175781 20.482422 C 7.0055781 20.306672 6.9696094 20.247203 6.9257812 20.259766 z M 2.5351562 20.910156 C 2.5848594 20.907924 2.6721406 20.911906 2.8066406 20.925781 C 3.5006406 20.901781 3.2778125 21.310891 2.8828125 21.337891 C 2.8738125 21.363891 2.5209687 21.25325 2.6679688 21.15625 C 3.6199688 21.277 2.1872344 20.925783 2.5351562 20.910156 z M 4.2832031 21.152344 C 4.3410781 21.282094 4.4392344 21.526266 4.3652344 21.634766 C 4.5602344 21.827766 5.2264062 22.171219 4.6914062 21.699219 C 5.0324062 21.631219 4.6463594 21.523328 4.4433594 21.361328 C 4.2078594 21.007828 4.2253281 21.022594 4.2832031 21.152344 z M 2.0195312 21.169922 C 2.1770313 21.163797 2.3387031 21.244641 2.0332031 21.431641 C 1.7087031 21.269141 1.8620313 21.176047 2.0195312 21.169922 z M 6.4589844 21.625 C 6.448875 21.610625 6.4435781 21.623359 6.4550781 21.693359 C 6.5728281 21.957359 6.4893125 21.668125 6.4589844 21.625 z M 4.09375 21.888672 C 4.18575 22.021672 4.4347812 21.962797 4.5507812 22.091797 C 5.5987812 22.525797 4.45675 21.810672 4.09375 21.888672 z M 3.9296875 21.970703 C 3.8781301 21.982421 3.8873906 22.050922 4.0019531 22.208984 C 4.0739531 22.371984 4.2475781 22.385828 4.3925781 22.423828 C 5.5170781 22.942203 4.1531028 21.919925 3.9296875 21.970703 z M 1.9941406 22.058594 C 2.1650156 22.086469 2.3705312 22.178578 2.1445312 22.267578 L 2.0527344 22.232422 C 1.6872344 22.065922 1.8232656 22.030719 1.9941406 22.058594 z M 3.5839844 22.195312 C 3.5327813 22.197984 3.5767031 22.274828 3.8144531 22.486328 L 3.96875 22.644531 C 4.74875 22.858281 3.7375937 22.187297 3.5839844 22.195312 z M 3.4785156 22.404297 C 3.43825 22.403031 3.8000625 22.789953 3.6328125 22.783203 C 3.0538125 22.360203 3.2901875 22.659375 3.6171875 22.984375 C 3.9721875 23.511375 4.2655 22.670453 3.6875 22.564453 C 3.55 22.448953 3.4919375 22.404719 3.4785156 22.404297 z M 5.9355469 22.955078 C 5.9281875 22.979219 5.9269063 23.060781 5.9414062 23.238281 C 6.0381563 23.326031 5.957625 22.882656 5.9355469 22.955078 z M 6.4472656 23 C 6.3225312 23.00075 6.2288594 23.885063 6.5371094 24.070312 C 6.6641094 24.435312 6.7997031 24.285094 6.8457031 23.871094 C 6.5477031 23.877094 6.9683594 23.222562 6.5683594 23.351562 C 6.5333594 23.096812 6.4888438 22.99975 6.4472656 23 z M 7.3085938 23.019531 C 7.2862187 22.969906 7.2323906 23.078406 7.2128906 23.441406 L 7.2128906 23.544922 C 7.3208906 23.276422 7.3309688 23.069156 7.3085938 23.019531 z M 1.46875 23.048828 C 1.5477813 23.029797 1.99825 23.942109 1.9375 24.193359 C 1.6615 24.097359 1.674875 23.6655 1.546875 23.4375 C 1.458125 23.16525 1.4424062 23.055172 1.46875 23.048828 z M 4.7597656 23.09375 C 4.6867656 23.29675 4.9147344 23.962453 5.0527344 24.189453 C 5.4047344 24.730453 5.2468125 23.893594 5.6328125 24.433594 C 5.4208125 23.959594 5.7325 24.217625 5.6875 24.015625 C 5.5895 23.811625 4.6402656 22.731875 5.0722656 23.546875 C 5.4632656 24.518875 4.8267656 23.42475 4.7597656 23.09375 z M 1.2832031 23.251953 C 1.388877 23.320068 1.6721094 23.780859 1.7246094 24.037109 C 2.1696094 24.573109 1.9940781 24.868391 2.4550781 25.525391 C 1.8620781 25.151391 1.7500469 24.258641 1.3730469 23.681641 C 1.2189219 23.311516 1.2197988 23.211084 1.2832031 23.251953 z M 30.371094 23.373047 C 30.421969 23.376922 30.462141 23.389656 30.494141 23.410156 C 30.559141 23.451156 30.588984 23.535062 30.583984 23.664062 L 30.568359 24.933594 C 30.568359 25.093594 30.408844 25.23075 30.089844 25.34375 C 29.816844 25.44175 29.550969 25.490234 29.292969 25.490234 C 28.648969 25.490234 28.326172 25.194562 28.326172 24.601562 C 28.326172 24.013563 28.947453 23.608719 30.189453 23.386719 C 30.258953 23.373719 30.320219 23.369172 30.371094 23.373047 z M 4.5566406 24.931641 C 4.7951875 25.006508 4.6510156 25.786703 5.0097656 25.892578 C 5.8107656 26.937578 4.4549531 25.923266 4.0019531 25.822266 C 4.0599531 25.819266 3.5998281 25.691484 3.7988281 25.646484 C 3.6538281 25.497484 3.3293125 24.956359 4.0703125 25.318359 C 4.6593125 25.613359 4.7087344 25.414313 4.4277344 24.945312 C 4.4799844 24.923188 4.5225625 24.920945 4.5566406 24.931641 z M 1.8535156 25.083984 C 1.8733438 24.984234 2.2812187 25.640313 2.3554688 25.914062 C 2.5794687 26.627062 3.2805625 27.037766 3.3515625 27.509766 C 4.1285625 27.957766 3.7298125 28.688531 4.3828125 28.894531 C 4.6728125 28.747531 4.7013594 29.774547 5.3183594 29.560547 C 4.9753594 29.721547 5.4627656 29.911938 5.6347656 30.210938 C 6.0237656 30.157937 6.8763438 31.067906 6.0273438 30.753906 C 5.6693438 30.677906 5.424875 30.3055 5.171875 30.0625 C 4.420875 29.5855 3.9334844 28.787437 3.5214844 28.023438 C 2.9904844 27.220438 2.3512812 26.417516 1.9882812 25.478516 C 1.8817813 25.234766 1.8469062 25.117234 1.8535156 25.083984 z M 7.8203125 25.6875 C 7.7807266 25.707779 7.7786563 25.826438 7.8945312 26.085938 L 7.9628906 26.197266 C 8.0572656 25.890391 7.8862891 25.653701 7.8203125 25.6875 z M 5.1191406 26.605469 C 5.3401406 26.653594 5.6726406 26.772328 5.8066406 26.798828 C 5.8436406 26.957828 5.0491406 26.933141 5.7441406 27.244141 C 5.3391406 27.233141 5.2169219 27.202641 5.7949219 27.556641 C 5.5679219 27.738641 6.2525781 27.88325 6.0175781 28.15625 C 6.7145781 28.70025 5.89175 28.294266 5.59375 28.072266 C 5.41775 27.950266 4.7005 27.707828 4.8125 27.548828 C 5.6585 27.992828 5.0272969 27.529375 4.6542969 27.234375 C 5.3362969 27.401375 4.1078125 26.72925 4.7578125 26.90625 C 4.9508125 26.95325 4.4655625 26.508031 5.1015625 26.832031 C 4.7885625 26.579031 4.8981406 26.557344 5.1191406 26.605469 z M 9.3613281 28.310547 C 9.2741875 28.279797 9.3604375 28.617062 9.5546875 28.820312 C 9.9686875 29.313312 9.6537656 28.540422 9.5097656 28.482422 C 9.4397656 28.372172 9.390375 28.320797 9.3613281 28.310547 z M 5.7089844 28.794922 C 5.9394844 28.797422 6.3163281 28.901391 6.5488281 29.025391 C 7.5688281 29.252391 6.3318281 29.525891 5.9238281 29.212891 L 5.7519531 29.175781 C 5.3954531 28.892781 5.4784844 28.792422 5.7089844 28.794922 z M 6.9277344 28.902344 C 7.0125684 28.884238 7.398125 29.042813 7.5625 29.195312 C 8.0515 29.261313 8.0536719 29.484703 7.5136719 29.345703 C 7.4176719 29.286703 7.2628906 29.290016 7.2128906 29.166016 C 6.9346406 28.988266 6.876834 28.913207 6.9277344 28.902344 z M 7.578125 28.910156 C 7.732375 28.907531 7.9849531 28.951359 8.0644531 29.068359 C 9.1354531 29.240359 7.9966875 29.315203 7.6796875 29.033203 C 7.3681875 28.961703 7.423875 28.912781 7.578125 28.910156 z M 7.578125 29.513672 C 7.6939063 29.488078 8.45 29.800219 7.90625 29.730469 L 7.7480469 29.679688 C 7.5722969 29.569438 7.5395312 29.522203 7.578125 29.513672 z M 11.181641 29.695312 C 11.215391 29.707172 11.249688 29.738078 11.273438 29.798828 C 10.992188 29.794328 11.080391 29.659734 11.181641 29.695312 z M 7.5820312 29.988281 C 7.8017344 30.009516 8.6469375 30.471266 7.8984375 30.259766 L 7.7832031 30.214844 L 7.6523438 30.154297 C 7.5040938 30.022547 7.5087969 29.981203 7.5820312 29.988281 z M 9.4003906 31.205078 C 9.5019219 31.188906 10.335703 31.264563 9.6269531 31.257812 C 9.4137031 31.225313 9.3665469 31.210469 9.4003906 31.205078 z M 7.1835938 31.328125 C 7.243625 31.341541 7.3387656 31.370875 7.4785156 31.421875 C 8.3735156 31.974875 9.4053281 32.267359 10.361328 32.693359 C 11.201328 32.803359 12.087063 33.025656 12.914062 32.847656 C 13.604062 33.192656 14.319719 32.758313 15.011719 33.070312 C 13.482719 33.368312 11.909719 33.042078 10.386719 32.830078 C 9.4267187 32.709078 8.5693594 32.310641 7.6933594 31.931641 C 7.5663594 31.871641 7.4462187 31.796563 7.3242188 31.726562 C 6.7222187 31.392563 6.7968125 31.324344 7.3828125 31.652344 C 7.5898125 31.817344 9.058375 32.418484 8.359375 32.021484 C 8.095125 31.955859 6.763375 31.234213 7.1835938 31.328125 z M 12.75 31.59375 C 12.8185 31.63775 12.820859 31.781391 12.818359 31.962891 C 12.358359 32.470891 12.632656 31.75525 12.347656 32.03125 C 12.084656 32.24125 12.147063 31.906172 12.289062 31.826172 C 12.546563 31.605672 12.6815 31.54975 12.75 31.59375 z M 16.583984 31.755859 C 16.994609 31.791234 17.464328 31.886078 17.736328 31.892578 C 17.571328 32.239578 16.551516 31.920719 16.103516 32.011719 L 15.910156 32 L 15.791016 31.980469 C 15.822516 31.744469 16.173359 31.720484 16.583984 31.755859 z M 20.115234 31.867188 C 21.177234 31.866187 20.185266 32.021531 19.697266 32.019531 C 19.143266 31.889531 19.948234 31.893187 20.115234 31.867188 z M 13.71875 32.005859 C 13.80375 31.996234 13.832797 32.06325 13.591797 32.21875 L 13.503906 32.246094 C 13.491906 32.100094 13.63375 32.015484 13.71875 32.005859 z M 13.314453 32.068359 C 13.330078 32.092516 13.295156 32.161687 13.160156 32.304688 C 12.767156 32.330187 13.267578 31.995891 13.314453 32.068359 z M 9.4824219 32.177734 C 9.5783281 32.153641 10.611391 32.451578 10.744141 32.423828 C 11.797141 32.814828 10.115578 32.551031 9.7675781 32.332031 C 9.5233281 32.228781 9.4504531 32.185766 9.4824219 32.177734 z M 14.570312 32.228516 C 14.572594 32.25475 14.517781 32.316234 14.363281 32.427734 L 14.234375 32.511719 C 14.051375 32.384969 14.563469 32.149813 14.570312 32.228516 z"></path>
</svg>
<p class="center-align">Flask</p>
</article>
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#E65100" d="M41,5H7l3,34l14,4l14-4L41,5L41,5z"></path>
<path fill="#FF6D00" d="M24 8L24 39.9 35.2 36.7 37.7 8z"></path>
<path fill="#FFF"
d="M24,25v-4h8.6l-0.7,11.5L24,35.1v-4.2l4.1-1.4l0.3-4.5H24z M32.9,17l0.3-4H24v4H32.9z">
</path>
<path fill="#EEE"
d="M24,30.9v4.2l-7.9-2.6L15.7,27h4l0.2,2.5L24,30.9z M19.1,17H24v-4h-9.1l0.7,12H24v-4h-4.6L19.1,17z">
</path>
</svg>
<p class="center-align">HTML</p>
</article>
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 100 100">
<path
d="M51.958,98c-0.58,0-1.16-0.078-1.724-0.232l-27.742-7.702c-2.593-0.72-4.495-3.004-4.735-5.685 l-6.179-69.304c-0.16-1.813,0.451-3.621,1.677-4.962C14.485,8.77,16.233,8,18.053,8h67.895c1.821,0,3.569,0.771,4.798,2.115 c1.225,1.339,1.837,3.147,1.677,4.959L86.236,84.37c-0.24,2.683-2.145,4.967-4.739,5.686l-27.803,7.709 C53.124,97.921,52.542,98,51.958,98z"
opacity=".35"></path>
<path fill="#f2f2f2"
d="M49.958,96c-0.58,0-1.16-0.078-1.724-0.232l-27.742-7.702c-2.593-0.72-4.495-3.004-4.735-5.685 L9.578,13.077c-0.16-1.813,0.451-3.621,1.677-4.962C12.485,6.77,14.233,6,16.053,6h67.895c1.821,0,3.569,0.771,4.798,2.115 c1.225,1.339,1.837,3.147,1.677,4.959L84.236,82.37c-0.24,2.683-2.145,4.967-4.739,5.686l-27.803,7.709 C51.124,95.921,50.542,96,49.958,96z">
</path>
<polygon fill="#2b59a1"
points="83.947,12.5 77.762,81.792 49.958,89.5 22.231,81.803 16.053,12.5"></polygon>
<path fill="#40396e"
d="M49.958,91c-0.135,0-0.27-0.019-0.401-0.055L21.83,83.249c-0.602-0.167-1.037-0.689-1.093-1.312 l-6.179-69.303c-0.037-0.419,0.104-0.835,0.388-1.146C15.23,11.177,15.632,11,16.053,11h67.895c0.421,0,0.822,0.177,1.106,0.488 c0.284,0.311,0.425,0.726,0.388,1.146l-6.186,69.292c-0.056,0.622-0.491,1.145-1.094,1.312l-27.804,7.709 C50.228,90.982,50.093,91,49.958,91z M23.634,80.635l26.324,7.309l26.402-7.32L82.308,14H17.692L23.634,80.635z">
</path>
<polygon fill="#2785bd" points="72.467,77.38 77.771,17.957 50,17.957 50,83.608"></polygon>
<polygon fill="#d9eeff" points="50,43.957 51,47.957 50,51.957 30.94,51.957 30.23,43.957">
</polygon>
<polygon fill="#d9eeff" points="50,26.957 51,30.957 50,34.957 29.441,34.957 28.72,26.957">
</polygon>
<polygon fill="#d9eeff"
points="51,69.957 50,74.796 32.55,69.967 31.39,56.957 39.92,56.957 40.5,63.397 50,65.957">
</polygon>
<path fill="#f2f2f2"
d="M50,26.957v8h11.969l-0.807,9H50c-0.009-0.002-0.008,8-0.008,8h10.485l-1.027,11.44L50,65.957v8.84 l17.4-4.83l0.12-1.44l2-22.37l0.21-2.29l1.5-16.91H50z">
</path>
</svg>
<p class="center-align">CSS</p>
</article>
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#ffd600" d="M6,42V6h36v36H6z"></path>
<path fill="#000001"
d="M29.538 32.947c.692 1.124 1.444 2.201 3.037 2.201 1.338 0 2.04-.665 2.04-1.585 0-1.101-.726-1.492-2.198-2.133l-.807-.344c-2.329-.988-3.878-2.226-3.878-4.841 0-2.41 1.845-4.244 4.728-4.244 2.053 0 3.528.711 4.592 2.573l-2.514 1.607c-.553-.988-1.151-1.377-2.078-1.377-.946 0-1.545.597-1.545 1.377 0 .964.6 1.354 1.985 1.951l.807.344C36.452 29.645 38 30.839 38 33.523 38 36.415 35.716 38 32.65 38c-2.999 0-4.702-1.505-5.65-3.368L29.538 32.947zM17.952 33.029c.506.906 1.275 1.603 2.381 1.603 1.058 0 1.667-.418 1.667-2.043V22h3.333v11.101c0 3.367-1.953 4.899-4.805 4.899-2.577 0-4.437-1.746-5.195-3.368L17.952 33.029z">
</path>
</svg>
<p class="center-align">JS</p>
</article>
</div>
<div class="border padding small-round max">
<h6>Skills involved</h6>
<li>Web design by material standards</li>
</div>
</div>
<div class="border small-round no-padding l m" style="max-width: 20rem">
<img class="responsive" src="/static/images/hbniaudioarchive.png"">
</div>
</article>
<article class="margin">
<div class="border no-padding small-round s">
<img class="responsive" src="/static/images/hutteritebookshelf.png"">
</div>
<div class="row">
<div class="border no-padding small-round l m" style="max-width: 20rem">
<img class="responsive" src="/static/images/hutteritebookshelf.png"">
</div>
<div class="max">
<div class="row">
<img class="small circle" src="https://raw.githubusercontent.com/TheCodingJsoftware/Hutterite-Bookshelf/main/static/icons/favicon.png">
<h4 class="max left-align small">Hutterite Bookshelf</h4>
</div>
<p>A public archive of Hutterian documents.</p>
<nav>
<a class="link" href="https://hutteritebookshelf.hbni.net"><i class="mdi mdi-web"></i></a>
<a class="link" href="https://github.com/TheCodingJsoftware/Hutterite-Bookshelf"><i class="mdi mdi-github"></i></a>
</nav>
<div class="border row padding small-round bottom-margin center-align scroll" style="display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));">
<article class="transparent no-padding row middle-align">
<img class="round" src="https://avatars.githubusercontent.com/u/7468980?s=200&v=4" width="50" height="50"
alt="tornado">
<p class="center-align">Tornado</p>
</article>
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="48" height="48" viewBox="0 0 48 48">
<path fill="#fff" d="M44.083,29.79c-0.183-0.829-0.935-1.796-2.452-1.796c-0.31,0-0.649,0.039-1.035,0.119c-0.708,0.146-1.311,0.217-1.842,0.241c4.133-7.04,6.816-16.819,4.159-20.214c-3.501-4.473-8.214-5.141-10.711-5.141L31.967,3c-0.929,0.015-1.893,0.129-2.863,0.339l-3.583,0.774C25.033,4.052,24.536,4.009,24.018,4l-0.03,0l-0.016,0l-0.152-0.001c-1.593,0-3.046,0.338-4.341,0.973l-1.251-0.493c-1.72-0.678-4.308-1.485-6.868-1.485c-0.144,0-0.287,0.003-0.431,0.008C8.407,3.093,6.241,4.05,4.664,5.769C2.696,7.915,1.8,11.054,2.003,15.1C2.013,15.309,4.461,36,11.4,36h0.025l0.064-0.001c0.901-0.022,1.76-0.384,2.563-1.077c0.613,0.46,1.406,0.732,2.145,0.84c0.488,0.115,1.366,0.278,2.418,0.278c1.284,0,2.442-0.263,3.44-0.738c-0.001,0.88-0.006,1.994-0.016,3.418l-0.001,0.075l0.005,0.075c0.097,1.419,0.342,2.698,0.711,3.701c1.051,2.859,2.866,4.434,5.111,4.434c0.093,0,0.188-0.003,0.284-0.009c1.846-0.114,3.717-1.151,5.004-2.772c1.393-1.755,1.715-3.607,1.839-5.026L35,39.111v-0.088v-4.079l0.103,0.01l0.436,0.038l0.042,0.004l0.042,0.002c0.124,0.006,0.252,0.008,0.381,0.008c1.507,0,3.362-0.391,4.616-0.974C41.819,33.476,44.559,31.948,44.083,29.79z"></path><path fill="#0277bd" d="M33,34c0-0.205,0.012-0.376,0.018-0.565C33.008,33.184,33,33,33,33s0.012-0.009,0.032-0.022c0.149-2.673,0.886-3.703,1.675-4.29c-0.11-0.153-0.237-0.318-0.356-0.475c-0.333-0.437-0.748-0.979-1.192-1.674l-0.082-0.158c-0.067-0.164-0.229-0.447-0.435-0.819c-1.183-2.14-3.645-6.592-1.96-9.404c0.738-1.232,2.122-1.942,4.121-2.117C33.986,11.718,30.925,6.115,23.985,6c-0.002,0-0.004,0-0.006,0c-6.041-0.098-8.026,5.392-8.672,8.672c0.89-0.377,1.906-0.606,2.836-0.606c0.014,0,0.029,0,0.043,0c2.29,0.017,3.865,1.239,4.323,3.354c0.335,1.552,0.496,2.91,0.492,4.153c-0.01,2.719-0.558,4.149-1.042,5.411l-0.154,0.408c-0.124,0.334-0.255,0.645-0.379,0.937c-0.126,0.298-0.237,0.563-0.318,0.802c0.484,0.11,0.864,0.265,1.125,0.38l0.151,0.066c0.047,0.02,0.094,0.043,0.137,0.069c0.848,0.516,1.376,1.309,1.489,2.233c0.061,0.498,0.051,3.893,0.03,6.855c0.087,1.285,0.305,2.364,0.593,3.146c0.409,1.114,1.431,3.241,3.394,3.119c1.37-0.085,2.687-0.919,3.561-2.019c0.938-1.181,1.284-2.487,1.414-3.958V34z"></path><path fill="#0277bd" d="M15.114 28.917c-1.613-1.683-2.399-3.947-2.104-6.056.285-2.035.124-4.027.037-5.098-.029-.357-.048-.623-.047-.77 0-.008.002-.015.003-.023 0-.004-.002-.007-.002-.011.121-3.021 1.286-7.787 4.493-10.62C15.932 5.724 13.388 4.913 11 5 7.258 5.136 3.636 7.724 4 15c.137 2.73 3.222 19.103 7.44 19 .603-.015 1.229-.402 1.872-1.176 1.017-1.223 2.005-2.332 2.708-3.104C15.705 29.481 15.401 29.217 15.114 28.917zM37.023 14.731c.015.154.002.286-.022.408.031.92-.068 1.813-.169 2.677-.074.636-.15 1.293-.171 1.952-.021.645.07 1.282.166 1.956.225 1.578.459 3.359-.765 5.437.225.296.423.571.581.837 4.61-7.475 6.468-16.361 4.695-18.626C38.655 5.944 34.941 4.952 31.999 5c-.921.015-1.758.139-2.473.294C34.602 7.754 36.863 13.026 37.023 14.731zM41 30.071c-2.665.55-3.947.257-4.569-.126-.1.072-.2.133-.293.19-.372.225-.961.583-1.105 2.782.083.016.156.025.246.044L35.714 33c1.32.06 3.049-.31 4.063-.781C41.962 31.205 43.153 29.627 41 30.071zM22.023 32.119c-.037-.298-.198-.539-.492-.732l-.108-.047C21.062 31.181 20.653 31 20 31h-.004c-.127.01-.253.019-.38.019-.052 0-.103-.007-.155-.009-.474.365-1.148.647-2.816.99-2.98.759-1.221 1.655-.078 1.794 1.106.277 3.735.614 5.481-.809C22.043 32.537 22.035 32.229 22.023 32.119z"></path><path fill="#0277bd" d="M20.681 18.501c-.292.302-.753.566-1.262.484-.828-.134-1.463-1.133-1.417-1.508h0c.044-.374.751-.569 1.578-.435.287.047.548.128.768.228-.32-.688-.899-1.085-1.782-1.182-1.565-.174-3.226.644-3.56 1.097.007.11.02.251.033.417.093 1.147.265 3.284-.05 5.537-.208 1.485.393 3.169 1.567 4.395.757.79 1.641 1.29 2.513 1.438.111-.478.309-.944.513-1.425.113-.265.233-.547.346-.852l.162-.427c.443-1.155.9-2.35.909-4.703C21.003 20.66 20.892 19.627 20.681 18.501zM34.847 22.007c-.104-.729-.211-1.484-.185-2.303.023-.742.105-1.442.184-2.119.062-.533.11-1.045.138-1.55-1.289.107-2.145.479-2.551 1.108.168-.057.358-.102.568-.129.892-.116 1.543.141 1.618.637.055.363-.253.705-.388.836-.277.269-.626.442-.981.488-.064.008-.129.012-.192.012-.353 0-.69-.121-.949-.3.112 1.973 1.567 4.612 2.283 5.907.153.277.271.498.369.688C35.154 24.163 35.009 23.143 34.847 22.007z"></path>
</svg>
<p class="center-align">PostgreSQL</p>
</article>
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#E65100" d="M41,5H7l3,34l14,4l14-4L41,5L41,5z"></path>
<path fill="#FF6D00" d="M24 8L24 39.9 35.2 36.7 37.7 8z"></path>
<path fill="#FFF"
d="M24,25v-4h8.6l-0.7,11.5L24,35.1v-4.2l4.1-1.4l0.3-4.5H24z M32.9,17l0.3-4H24v4H32.9z">
</path>
<path fill="#EEE"
d="M24,30.9v4.2l-7.9-2.6L15.7,27h4l0.2,2.5L24,30.9z M19.1,17H24v-4h-9.1l0.7,12H24v-4h-4.6L19.1,17z">
</path>
</svg>
<p class="center-align">HTML</p>
</article>
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 100 100">
<path
d="M51.958,98c-0.58,0-1.16-0.078-1.724-0.232l-27.742-7.702c-2.593-0.72-4.495-3.004-4.735-5.685 l-6.179-69.304c-0.16-1.813,0.451-3.621,1.677-4.962C14.485,8.77,16.233,8,18.053,8h67.895c1.821,0,3.569,0.771,4.798,2.115 c1.225,1.339,1.837,3.147,1.677,4.959L86.236,84.37c-0.24,2.683-2.145,4.967-4.739,5.686l-27.803,7.709 C53.124,97.921,52.542,98,51.958,98z"
opacity=".35"></path>
<path fill="#f2f2f2"
d="M49.958,96c-0.58,0-1.16-0.078-1.724-0.232l-27.742-7.702c-2.593-0.72-4.495-3.004-4.735-5.685 L9.578,13.077c-0.16-1.813,0.451-3.621,1.677-4.962C12.485,6.77,14.233,6,16.053,6h67.895c1.821,0,3.569,0.771,4.798,2.115 c1.225,1.339,1.837,3.147,1.677,4.959L84.236,82.37c-0.24,2.683-2.145,4.967-4.739,5.686l-27.803,7.709 C51.124,95.921,50.542,96,49.958,96z">
</path>
<polygon fill="#2b59a1"
points="83.947,12.5 77.762,81.792 49.958,89.5 22.231,81.803 16.053,12.5"></polygon>
<path fill="#40396e"
d="M49.958,91c-0.135,0-0.27-0.019-0.401-0.055L21.83,83.249c-0.602-0.167-1.037-0.689-1.093-1.312 l-6.179-69.303c-0.037-0.419,0.104-0.835,0.388-1.146C15.23,11.177,15.632,11,16.053,11h67.895c0.421,0,0.822,0.177,1.106,0.488 c0.284,0.311,0.425,0.726,0.388,1.146l-6.186,69.292c-0.056,0.622-0.491,1.145-1.094,1.312l-27.804,7.709 C50.228,90.982,50.093,91,49.958,91z M23.634,80.635l26.324,7.309l26.402-7.32L82.308,14H17.692L23.634,80.635z">
</path>
<polygon fill="#2785bd" points="72.467,77.38 77.771,17.957 50,17.957 50,83.608"></polygon>
<polygon fill="#d9eeff" points="50,43.957 51,47.957 50,51.957 30.94,51.957 30.23,43.957">
</polygon>
<polygon fill="#d9eeff" points="50,26.957 51,30.957 50,34.957 29.441,34.957 28.72,26.957">
</polygon>
<polygon fill="#d9eeff"
points="51,69.957 50,74.796 32.55,69.967 31.39,56.957 39.92,56.957 40.5,63.397 50,65.957">
</polygon>
<path fill="#f2f2f2"
d="M50,26.957v8h11.969l-0.807,9H50c-0.009-0.002-0.008,8-0.008,8h10.485l-1.027,11.44L50,65.957v8.84 l17.4-4.83l0.12-1.44l2-22.37l0.21-2.29l1.5-16.91H50z">
</path>
</svg>
<p class="center-align">CSS</p>
</article>
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="48" height="48" viewBox="0 0 48 48">
<rect width="36" height="36" x="6" y="6" fill="#1976d2"></rect><polygon fill="#fff" points="27.49,22 14.227,22 14.227,25.264 18.984,25.264 18.984,40 22.753,40 22.753,25.264 27.49,25.264"></polygon><path fill="#fff" d="M39.194,26.084c0,0-1.787-1.192-3.807-1.192s-2.747,0.96-2.747,1.986 c0,2.648,7.381,2.383,7.381,7.712c0,8.209-11.254,4.568-11.254,4.568V35.22c0,0,2.152,1.622,4.733,1.622s2.483-1.688,2.483-1.92 c0-2.449-7.315-2.449-7.315-7.878c0-7.381,10.658-4.469,10.658-4.469L39.194,26.084z"></path>
</svg>
<p class="center-align">TS</p>
</article>
</div>
<div class="border small-round padding max">
<h6>Skills involved</h6>
<li>Database management</li>
<li>Websockets</li>
<li>Webdesign by material standards</li>
<li>Service workers</li>
<li>Caching</li>
<li>File sharing</li>
<li>Session management</li>
</div>
</div>
</div>
</article>
<article class="margin">
<div class="border no-padding small-round s">
<img class="responsive" src="/static/images/invigoserver.png"">
</div>
<div class="row">
<div class="max">
<div class="row">
<img class="small" src="https://raw.githubusercontent.com/TheCodingJsoftware/Invigo/master/icons/icon.png">
<h4 class="max left-align small">Invigo Server</h4>
</div>
<p>LAN file sharing server that <a class="link" href="https://github.com/TheCodingJsoftware/Inventory-Manager">Invigo</a> relies on to keep all clients synced, in addition to hosting various website for automation, monitoring and convenience.</p>
<nav>
<a class="link" href="https://github.com/TheCodingJsoftware/Invigo-Server"><i class="mdi mdi-github"></i></a>
</nav>
<div class="border row padding small-round bottom-margin center-align scroll" style="display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));">
<article class="transparent no-padding row middle-align">
<img class="round" src="https://avatars.githubusercontent.com/u/7468980?s=200&v=4" width="50" height="50" alt="tornado">
<p class="center-align">Tornado</p>
</article>
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">
<path fill="#E65100" d="M41,5H7l3,34l14,4l14-4L41,5L41,5z"></path>
<path fill="#FF6D00" d="M24 8L24 39.9 35.2 36.7 37.7 8z"></path>
<path fill="#FFF"
d="M24,25v-4h8.6l-0.7,11.5L24,35.1v-4.2l4.1-1.4l0.3-4.5H24z M32.9,17l0.3-4H24v4H32.9z">
</path>
<path fill="#EEE"
d="M24,30.9v4.2l-7.9-2.6L15.7,27h4l0.2,2.5L24,30.9z M19.1,17H24v-4h-9.1l0.7,12H24v-4h-4.6L19.1,17z">
</path>
</svg>
<p class="center-align">HTML</p>
</article>
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 100 100">
<path
d="M51.958,98c-0.58,0-1.16-0.078-1.724-0.232l-27.742-7.702c-2.593-0.72-4.495-3.004-4.735-5.685 l-6.179-69.304c-0.16-1.813,0.451-3.621,1.677-4.962C14.485,8.77,16.233,8,18.053,8h67.895c1.821,0,3.569,0.771,4.798,2.115 c1.225,1.339,1.837,3.147,1.677,4.959L86.236,84.37c-0.24,2.683-2.145,4.967-4.739,5.686l-27.803,7.709 C53.124,97.921,52.542,98,51.958,98z"
opacity=".35"></path>
<path fill="#f2f2f2"
d="M49.958,96c-0.58,0-1.16-0.078-1.724-0.232l-27.742-7.702c-2.593-0.72-4.495-3.004-4.735-5.685 L9.578,13.077c-0.16-1.813,0.451-3.621,1.677-4.962C12.485,6.77,14.233,6,16.053,6h67.895c1.821,0,3.569,0.771,4.798,2.115 c1.225,1.339,1.837,3.147,1.677,4.959L84.236,82.37c-0.24,2.683-2.145,4.967-4.739,5.686l-27.803,7.709 C51.124,95.921,50.542,96,49.958,96z">
</path>
<polygon fill="#2b59a1"
points="83.947,12.5 77.762,81.792 49.958,89.5 22.231,81.803 16.053,12.5"></polygon>
<path fill="#40396e"
d="M49.958,91c-0.135,0-0.27-0.019-0.401-0.055L21.83,83.249c-0.602-0.167-1.037-0.689-1.093-1.312 l-6.179-69.303c-0.037-0.419,0.104-0.835,0.388-1.146C15.23,11.177,15.632,11,16.053,11h67.895c0.421,0,0.822,0.177,1.106,0.488 c0.284,0.311,0.425,0.726,0.388,1.146l-6.186,69.292c-0.056,0.622-0.491,1.145-1.094,1.312l-27.804,7.709 C50.228,90.982,50.093,91,49.958,91z M23.634,80.635l26.324,7.309l26.402-7.32L82.308,14H17.692L23.634,80.635z">
</path>
<polygon fill="#2785bd" points="72.467,77.38 77.771,17.957 50,17.957 50,83.608"></polygon>
<polygon fill="#d9eeff" points="50,43.957 51,47.957 50,51.957 30.94,51.957 30.23,43.957">
</polygon>
<polygon fill="#d9eeff" points="50,26.957 51,30.957 50,34.957 29.441,34.957 28.72,26.957">
</polygon>
<polygon fill="#d9eeff"
points="51,69.957 50,74.796 32.55,69.967 31.39,56.957 39.92,56.957 40.5,63.397 50,65.957">
</polygon>
<path fill="#f2f2f2"
d="M50,26.957v8h11.969l-0.807,9H50c-0.009-0.002-0.008,8-0.008,8h10.485l-1.027,11.44L50,65.957v8.84 l17.4-4.83l0.12-1.44l2-22.37l0.21-2.29l1.5-16.91H50z">
</path>
</svg>
<p class="center-align">CSS</p>
</article>
<article class="transparent no-padding row middle-align">
<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="50" height="50"
viewBox="0 0 50 50">