-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHome.html
executable file
·941 lines (868 loc) · 89.8 KB
/
Home.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="description" content="Oudom's Personal and portfolio website" />
<meta name="keywords" content="Web Developer" />
<meta name="author" content="Oudom" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>Pannha Oudom Munint</title>
<!-- FONT AWSOME -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.css" rel="stylesheet" type='text/css'>
<!--Site icon, change here-->
<link rel="icon" type="image/x-icon" href="/images/2282188.png">
<!-- Bootstrap 3 -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<!-- Bootstrap 5 -->
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" /> -->
<!-- Style sheets -->
<link rel="stylesheet" href="css/animate.css" />
<link rel="stylesheet" href="css/all.min.css" />
</head>
<body data-spy="scroll" data-target=".navbar-collapse" data-offset="50" style="overflow-x: hidden;">
<div>
<!-- PRE LOADER -->
<div class="preloader">
<div class="spinner">
<span class="spinner-rotate"></span>
</div>
</div>
<!-- Navigation Section -->
<div class="navbar navbar-fixed-top custom-navbar" role="navigation">
<div class="container">
<!-- navbar header -->
<div class="navbar-header">
<button
class="navbar-toggle"
data-toggle="collapse"
data-target=".navbar-collapse"
>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
</button>
<a href="#" class="navbar-brand">Oudom</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#home" class="">Home</a></li>
<li><a href="#service" class="">Projects</a></li>
<li><a href="#experience" class="">Experiences</a></li>
<li><a href="#footer" class="">Contact</a></li>
</ul>
</div>
</div>
</div>
<!-- Home Section -->
<section id="home" class="parallax-section">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<div class="home-thumb">
<div class="section-title">
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<h2 class="h2">
<div class="mask">
<span data-show>Software Engineer</span>
<span>Fullstack</span>
<span>Unity/Unreal</span>
</div>
</h2>
<span id="type-text"></span>
<h1 class="intro">
I am Pannha Oudom Munint,<br />currently based in Newcastle
</h1>
<br>
<br>
<br>
<a href="#footer" class="cta">
<span>Get in Touch!</span>
<svg width="15px" height="10px" viewBox="0 0 15 10">
<path d="M1,5 L11,5"></path>
<polyline points="8 1 12 5 8 9"></polyline>
</svg>
</a>
<div class="col-md-12 col-sm-12" style="padding-left: 0px;">
<ul class="social-icon">
<li><a href="https://github.com/OudomMunint" target="_blank" class="fa fa-github"></a></li>
<li><a href="https://www.linkedin.com/in/oudom-munint/" target="_blank" class="fa fa-linkedin-square"></a></li>
<li><a href="mailto:[email protected]" class="fa fa-envelope"></a></li>
<!-- <li><a href="https://codepen.io/Oudom-Munint" target="_blank" class="fa fa-codepen"></a></li> -->
</ul>
</div>
<br>
<br>
<!-- Return to Top -->
<a href="javascript:" class="return-to-top"><i class="fa fa-arrow-up"></i></a>
</div>
</div>
</div>
<div id="home-rightside" class="col-md-6 col-sm-6" style="background-color: white;">
<div style="position: absolute; top:300px; left: 100px;" class="GhcContainer">
<!-- Github contributions -->
<div class="GHC" style="border-radius: 10px;">
<h2 style="color: white;">My GitHub contributions</h2>
<img src="https://ghchart.rshah.org/OudomMunint" alt="Doms's Github chart" />
</div>
<div class="GHRMS" style="padding: 10px;">
<!-- github-readme-stats -->
<a href="https://github.com/anuraghazra/github-readme-stats">
<img align="center" src="https://github-readme-stats.vercel.app/api?username=oudommunint&show_icons=true&theme=radical&hide_border=true&include_all_commits=false&rank_icon=percentile%&show=reviews,prs_merged,prs_merged_percentage&hide=contribs" />
</a>
<!-- Top languages chart -->
<a href="https://github.com/anuraghazra/convoychat">
<img text-align="center" src="https://github-readme-stats.vercel.app/api/top-langs/?username=oudommunint&hide=css,html,c,freebasic,makefile&hide_border=true&theme=radical&langs_count=100&layout=compact&card_width=350" />
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Project section-->
<div class="box" style="margin-top: 150px;">
<p id="service"></p>
<div class="containerPrj">
<h1 style="text-align:center; background-color: rgb(227, 227, 227);"><strong class="wow fadeInDownBig" data-wow-delay="0.5s">Projects</strong></h1>
<main class="gridPrj">
<article class="wow fadeInUp social-icon" data-wow-delay="0.5s">
<div class="text">
<a target="_blank" href="https://github.com/OudomMunint/.NetMAUI-To-Do-List-App"><h3><i class="fa fa-mobile"></i> Check Mate</h3>
<!-- <h3>(Work in progress)</h3> -->
<p>A cross platform mobile application. It is a To do list app that does CRUD operations, it allows you to add, save and delete a task, task description is also available. Made with .NET MAUI, SQLite.</p>
</div></a>
<ul style="padding:10px;" class="content-skills">
<li>.NET MAUI</li>
<li>SQLite</li>
<li>C#</li>
<li>XAML</li>
<li>Figma</li>
<li>GitHub</li>
<li>Xcode Simulators</li>
<li>Android Studio</li>
<li> MVVM architecture </li>
</ul>
</article>
<article class="wow fadeInUp social-icon" data-wow-delay="0.5s">
<div class="text">
<a target="_blank" href="https://github.com/OudomMunint/Benchmark"><h3><i class="fa fa-terminal"></i> Benchmark .NET</h3>
<!-- <h3>(Work in progress)</h3> -->
<p>A .NET Core 7.0 console application that gathers system specs and runs CPU benchmarks. Written in C#</p>
</div></a>
<ul style="padding:10px;" class="content-skills">
<li>.NET Core 7.0</li>
<li>C#</li>
<li>GitHub</li>
<li>Benchmarking</li>
<li>Cross platform</li>
</ul>
</article>
<article class="wow fadeInUp social-icon" data-wow-delay="0.5s">
<div class="text">
<a href="https://pdscode.com.au/" target="_blank"><h3><i class="fa fa-globe"></i> PDS Code</h3>
<p> During my final year I was a fullstack developer with Productivity development Solutions(PDS). I Developed and launched a new website for their sister company PDS Code. I had the chance to work with technologies like Wordpress, HTML, CSS, SCSS, Javascript, React for the frontend and technologies like PHP, SQLite, SSL for the Backend.</p>
</div></a>
<ul style="padding:10px;" class="content-skills">
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>Wordpress</li>
<li>PHP</li>
<li>MySQL</li>
<li>Tailwind</li>
<li>Bootstrap</li>
<li>React</li>
<li>Figma</li>
<li>SemRush SEO</li>
</ul>
</article>
<article class="wow fadeInUp social-icon" data-wow-delay="0.5s">
<div class="text">
<a href="https://github.com/OudomMunint/Unreal-3rd-person-shooter-4.27"><h3><i class="fa fas fa-gamepad"></i> Third person shooter</h3>
<p>This third person shooter was made with UE5.1, it features low poly cell shaded graphics, robust performance, advanced technologies. It also features an advanced AI system made using Unreal's AI perception system.</p>
</div></a>
<ul style="padding:10px;" class="content-skills">
<li>Unreal Engine 4</li>
<li>Unreal Engine Blueprint</li>
<li>Adobe Premier Pro</li>
<li>Nvidia GameWorks SDK</li>
<li>Megascan Assets</li>
</ul>
</article>
<article class="wow fadeInUp social-icon" data-wow-delay="0.5s">
<div class="text">
<a href="https://www.publicartworkers.com/" target="_blank"><h3><i class="fa fa-globe"></i> Public Art Workers</h3>
<p>My entry into Professional software developement. I worked with public art workers along with other designers on a new website, I used squareSpace as a CMS as it was easy to transfer ownership to clients that don't do web dev. Custom HTML, CSS/SaSS and Javascript and jquery was added because out of the box wasn't enough.</p>
</div></a>
<ul style="padding:10px;" class="content-skills">
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>Square Space</li>
<li>WIX</li>
<li>Figma</li>
<li>UX&UI</li>
<li>Network Administration</li>
</ul>
</article>
<article class="wow fadeInUp social-icon" data-wow-delay="0.5s">
<div class="text">
<a target="_blank" href="https://studiozed.netlify.app/"><h3><svg viewBox="0 0 128 128" style="width: 25px; height: 25px;">
<g fill="#61DAFB">
<circle cx="64" cy="47.5" r="9.3"></circle>
<path
d="M64 81.7C71.3 88.8 78.5 93 84.3 93c1.9 0 3.7-.4 5.2-1.3 5.2-3 7.1-10.5 5.3-21.2-.3-1.9-.7-3.8-1.2-5.8 2-.6 3.8-1.2 5.6-1.8 10.1-3.9 15.7-9.3 15.7-15.2 0-6-5.6-11.4-15.7-15.2-1.8-.7-3.6-1.3-5.6-1.8.5-2 .9-3.9 1.2-5.8 1.7-10.9-.2-18.5-5.4-21.5-1.5-.9-3.3-1.3-5.2-1.3-5.7 0-13 4.2-20.3 11.3C56.7 6.3 49.5 2.1 43.7 2.1c-1.9 0-3.7.4-5.2 1.3-5.2 3-7.1 10.5-5.3 21.2.3 1.9.7 3.8 1.2 5.8-2 .6-3.8 1.2-5.6 1.8-10.1 3.9-15.7 9.3-15.7 15.2 0 6 5.6 11.4 15.7 15.2 1.8.7 3.6 1.3 5.6 1.8-.5 2-.9 3.9-1.2 5.8-1.7 10.7.2 18.3 5.3 21.2 1.5.9 3.3 1.3 5.2 1.3 5.8.2 13-4 20.3-11zm-5.6-13.5c1.8.1 3.7.1 5.6.1 1.9 0 3.8 0 5.6-.1-1.8 2.4-3.7 4.6-5.6 6.7-1.9-2.1-3.8-4.3-5.6-6.7zM46 57.9c1 1.7 1.9 3.3 3 4.9-3.1-.4-6-.9-8.8-1.5.9-2.7 1.9-5.5 3.1-8.3.8 1.6 1.7 3.3 2.7 4.9zm-5.8-24.1c2.8-.6 5.7-1.1 8.8-1.5-1 1.6-2 3.2-3 4.9-1 1.7-1.9 3.3-2.7 5-1.3-2.9-2.3-5.7-3.1-8.4zm5.5 13.7c1.3-2.7 2.7-5.4 4.3-8.1 1.5-2.6 3.2-5.2 4.9-7.8 3-.2 6-.3 9.1-.3 3.2 0 6.2.1 9.1.3 1.8 2.6 3.4 5.2 4.9 7.8 1.6 2.7 3 5.4 4.3 8.1-1.3 2.7-2.7 5.4-4.3 8.1-1.5 2.6-3.2 5.2-4.9 7.8-3 .2-6 .3-9.1.3-3.2 0-6.2-.1-9.1-.3-1.8-2.6-3.4-5.2-4.9-7.8-1.6-2.7-3-5.4-4.3-8.1zm39.1-5.4l-2.7-5c-1-1.7-1.9-3.3-3-4.9 3.1.4 6 .9 8.8 1.5-.9 2.8-1.9 5.6-3.1 8.4zm0 10.8c1.2 2.8 2.2 5.6 3.1 8.3-2.8.6-5.7 1.1-8.8 1.5 1-1.6 2-3.2 3-4.9.9-1.5 1.8-3.2 2.7-4.9zm2.3 34.7c-.8.5-1.8.7-2.9.7-4.9 0-11-4-17-10 2.9-3.1 5.7-6.6 8.5-10.5 4.7-.4 9.2-1.1 13.4-2.1.5 1.8.8 3.6 1.1 5.4 1.4 8.5.3 14.6-3.1 16.5zm5.2-52.7c11.2 3.2 17.9 8.1 17.9 12.6 0 3.9-4.6 7.8-12.7 10.9-1.6.6-3.4 1.2-5.2 1.7-1.3-4.1-2.9-8.3-4.9-12.6 2-4.3 3.7-8.5 4.9-12.6zm-8-28.2c1.1 0 2 .2 2.9.7 3.3 1.9 4.5 7.9 3.1 16.5-.3 1.7-.7 3.5-1.1 5.4-4.2-.9-8.7-1.6-13.4-2.1-2.7-3.9-5.6-7.4-8.5-10.5 6-5.9 12.1-10 17-10zM69.6 26.8c-1.8-.1-3.7-.1-5.6-.1s-3.8 0-5.6.1c1.8-2.4 3.7-4.6 5.6-6.7 1.9 2.1 3.8 4.4 5.6 6.7zM40.9 7.4c.8-.5 1.8-.7 2.9-.7 4.9 0 11 4 17 10-2.9 3.1-5.7 6.6-8.5 10.5-4.7.4-9.2 1.1-13.4 2.1-.5-1.8-.8-3.6-1.1-5.4-1.4-8.5-.3-14.5 3.1-16.5zm-5.2 52.7C24.5 56.9 17.8 52 17.8 47.5c0-3.9 4.6-7.8 12.7-10.9 1.6-.6 3.4-1.2 5.2-1.7 1.3 4.1 2.9 8.3 4.9 12.6-2 4.3-3.7 8.6-4.9 12.6zm2.1 11c.3-1.7.7-3.5 1.1-5.4 4.2.9 8.7 1.6 13.4 2.1 2.7 3.9 5.6 7.4 8.5 10.5-6 5.9-12.1 10-17 10-1.1 0-2-.2-2.9-.7-3.4-1.9-4.5-8-3.1-16.5zm-4.2 41.2c2.2-2.7 2.3-5.7 1.1-8.7-1.2-3-3.7-4.4-6.8-4.5-3.7-.1-7.5 0-11.2 0H16V125h3v-9.8h4.7c.6 0 1.1.2 1.4.7l6 9.3c.1.2.4.5.6.5h3.9c-2.4-3.7-4.7-7.2-7.1-10.8 2.1-.3 3.9-1 5.1-2.6zm-14.6-.2v-9.9h1.1c2.3 0 4.7-.1 7 .1 2.7.1 4.6 2.2 4.6 4.9s-2.2 4.8-4.9 4.9c-2.4.1-4.8 0-7.8 0zm38.7 1.3c-1.6-7-8-8.8-12.9-6.6-3.8 1.7-5.5 5-5.6 9.1-.1 3.1.8 5.9 3.2 8 2.7 2.4 6 2.7 9.4 2.1 1.9-.4 3.6-1.3 4.9-2.7-.5-.7-1-1.4-1.5-2-2.8 2.4-5.9 3.2-9.3 1.6-2.2-1.1-3.3-3.8-3.5-5.8h15.5v-1.3c.1-.9 0-1.7-.2-2.4zM42.6 115c-.3-3 2.7-6.2 6-6.2 3.8-.1 6.2 2.2 6.3 6.2H42.6zm30.7-8.7c-1.5-.3-3.1-.4-4.6-.3-2.4.2-4.5 1.3-6.2 3.1.5.7.9 1.4 1.5 2.2.2-.2.4-.4.6-.5 1.6-1.5 3.5-2.3 5.8-2.1 1.8.1 3.5.7 4 2.5.4 1.4.3 2.9.4 4.4-.3 0-.4-.1-.5-.2-2.4-2-5.1-2.4-8-1.7-2.7.7-4.4 2.8-4.6 5.5-.2 3.1 1.2 5.4 3.9 6.5 1.7.7 3.6.7 5.4.3 1.4-.3 2-1.1 4-2.2v1.3h2.8c0-4 .1-8.9 0-13.5 0-2.9-1.7-4.7-4.5-5.3zm1.4 12.6c-.1.3 0 .6 0 .9 0 2.1-.5 2.8-2.5 3.6-1.4.5-2.9.7-4.4.2-1.7-.5-2.9-2-2.9-3.7-.1-1.7 1-3.4 2.7-3.9 2.3-.8 4.4-.3 6.3 1.1.6.5 1 1 .8 1.8zm15.6-9.9c2.6-.8 5-.3 6.8 1.9l.3.2c.7-.6 1.3-1.2 2.1-1.9-.3-.3-.4-.5-.6-.8-2.9-3.1-8.6-3.5-12.1-1-4.9 3.6-4.8 10.6-2.4 14.3 2.3 3.5 5.6 4.7 9.5 4.2 2.3-.3 4.2-1.4 5.7-3.3-.7-.6-1.4-1.2-2.1-1.9-.2.2-.3.3-.4.5-2.7 3-7.2 2.7-9.6-.5-1.4-1.9-1.7-4.1-1.3-6.3.2-2.5 1.5-4.5 4.1-5.4zm20.8 13.6c-.2.1-.3.2-.3.2-.8.6-1.6.7-2.5.4-.9-.4-1-1.2-1.1-2v-11.4c0-.2 0 .2.1-.8h3.8v-3h-4v-5h-3v5.4h-2.6c-.2 0-.5.2-.5.4-.1.7 0 1.2 0 2.2h3.2v12.8c0 1.6.4 3 1.8 3.8 1.5.9 4.4.7 5.7-.4.2-.1.3-.5.3-.6-.3-.6-.6-1.3-.9-2z">
</path>
</g>
</svg></i> Studio Zed website</h3>
<!-- <h3>(Work in progress)</h3> -->
<p>This is a React web app for a Design studio called Studio Zed, it is an internally run design studio within the University of Newcastle giving students an opportunity to get real world experience.</p>
</div></a>
<ul style="padding:10px;" class="content-skills">
<li>ReactJs</li>
<li>ExpressJs</li>
<li>NodeJs</li>
<li>Vercel</li>
<li>CSS</li>
<li>Bootstrap</li>
<li>Figma</li>
</ul>
</article>
<article class="wow fadeInUp social-icon" data-wow-delay="0.5s">
<div class="text">
<a href="https://www.redsix.com.au/" target="_blank"><h3><i class="fa fas fa-mobile"></i> RedSix</h3>
<strong>
<h5>(Private company repository)</h5>
</strong>
<p>This is a Maui.Net mobile app for a company called RedSix, sponsored by the NRL they specialize in helping verterans through PTSD and help prevent suicide.</p>
</div></a>
<ul style="padding:10px;" class="content-skills">
<li>.Net Maui</li>
<li>.NET Core Web API</li>
<li>C#</li>
<li>XAML</li>
<li>Figma</li>
<li>Xamarin</li>
</ul>
</article>
<article class="wow fadeInUp social-icon" data-wow-delay="0.5s">
<div class="text">
<a href="https://www.pdsglobal.com/" target="_blank"><h3><i class="fa fas fa-code-fork"></i> PDS ASP.NET MVC application</h3></a>
<strong>
<h5>(Private company repository)</h5>
</strong>
<p>I am currently working on PDS Global's mining and education asset management software, servicing clients such as<a target="_blank" href="https://www.bhp.com/"> BHP</a>,
<a target="_blank" href="https://www.agl.com.au/"> AGL Energy</a>, <a href="https://www.centennialcoal.com.au/">Centennial Coal</a>, <a href="https://www.glencore.com.au/who-we-are/advancing-everyday-life?utm_source=Google&utm_medium=Paid_Search&utm_campaign=Brand_Campaign&gclid=Cj0KCQiA14WdBhD8ARIsANao07h0nFBZAgiSdJSeZSuX08XRxzlqplIWOWY6xZP19m0Agc7O_XA4eLQaAvOIEALw_wcB">Glencore</a>.</p>
</div>
<ul style="padding:10px;" class="content-skills">
<li>ASP.Net MVC</li>
<li>C#</li>
<li>HTML</li>
<li>SCSS</li>
<li>CSS3</li>
<li>Kendo UI</li>
<li>Jquery UI</li>
<li>JavaScript</li>
<li>TypeScript</li>
<li>Azure Dev Ops</li>
</ul>
</article>
<article class="wow fadeInUp social-icon" data-wow-delay="0.5s">
<div class="text">
<a href="https://www.youtube.com/watch?v=WQnhcpkzAzI&ab_channel=Dom" target="_blank"><h3><i class="fa fas fa-gamepad"></i> Unreal Engine 4 project</h3>
<p>A games design project featuring a forest environment made with megascan assets. It features robust performance and advanced graphics techniques from UE4 and Nvidia gameworks SDK.
This project was made using Unreal engine.</p>
</div></a>
<ul style="padding:10px;" class="content-skills">
<li>Unreal Engine 4</li>
<li>Nvidia GameWorks SDK</li>
<li>C++</li>
<li>HLSL</li>
<li>Nvidia RTX</li>
<li>Nvidia DLSS</li>
</ul>
</article>
<article class="wow fadeInUp social-icon" data-wow-delay="0.5s">
<div class="text">
<a href="https://github.com/OudomMunint/Unity-2D-Platformer" target="_blank"> <h3> <i class="fa fa-gamepad"></i> 2D-Platformer game </h3>
<p>Made a fully working 2D-Platformer called "legionary". Made with the Unity game engine, 3rd party assets and built in assets. I was responsible for all aspects of the game, scripting with C#, UI design, gameplay, level design, set dressing and graphics. </p>
</div> </a>
<ul style="padding:10px;" class="content-skills">
<li>Unity Engine</li>
<li>C#</li>
<li>Figma</li>
<li>GitHub</li>
<li>Adobe Premier Pro</li>
<li>Adobe Photoshop</li>
</ul>
</article>
<article class="wow fadeInUp social-icon" data-wow-delay="0.5s">
<div class="text">
<a href="UI2.html" target="_blank"><h3><i class="fa fa-laptop"></i> UI Designs</h3>
<p>This is a collection of user interfaces like dashboards etc, that i've made throughout the years, for Uni projects and for work. The tool i prefer using is Figma.</p>
</div></a>
<ul style="padding:10px;" class="content-skills">
<li>Figma</li>
<li>Adobe Photoshop</li>
<li>VB.Net</li>
<li>Windows Form</li>
<li>HTML</li>
<li>CSS</li>
</ul>
</article>
<article class="wow fadeInUp social-icon" data-wow-delay="0.5s">
<div class="text">
<a href=" "><h3><i class="fa fas fa-gamepad"></i> Post apocalyptic FPS</h3>
<strong>
<h5>(No repo or showcase yet)</h5>
</strong>
<p>This is a working prototype for a first person shooter. Featuring a post apocalyptic city environment made with unreal engine 4.27, It features advanced and high quality graphics as well as a fun but simple first shooter person game-play.</p>
</div></a>
<ul style="padding:10px;" class="content-skills">
<li>Unreal Engine 4</li>
<li>Adobe Premier Pro</li>
<li>Nvidia GameWorks SDK</li>
<li>C++</li>
<li>HLSL</li>
<li>Nvidia RTX</li>
<li>Nvidia DLSS</li>
<li>AMD FSR 2.0</li>
</ul>
</article>
<article class="wow fadeInUp social-icon" data-wow-delay="0.5s">
<div class="text">
<h2><i class="fa fa-spinner"></i> More coming soon</h2>
</div>
</article>
</main>
</div>
</div>
<!-- Trigger.js scrolling Opacity -->
<div id="aboutMe" class="body">
<div class="triggerDiv"tg-name="_" tg-ref="container" tg-from="1" tg-to="8" tg-step="1">
<section tg-name="_" tg-map="1,2,3,4,5,6,7,8,9,10: 1">
<span class="triggerSpan" tg-name="opacity" tg-filter="2!" tg-follow="container">
I am an experienced software engineer based in Newcastle, New South Wales Australia, open to work remotely.
</span
><br>
<span class="triggerSpan" tg-name="opacity" tg-filter="3!" tg-follow="container"
>An IT graduate from the University of Newcastle,
i have a passion for web and app development. </span
>
<span class="triggerSpan" tg-name="opacity" tg-filter="4!" tg-follow="container"
>I'm currently working at <a class="pds"href="https://www.pdsglobal.com/" target="_blank" style="color: white;">Productivity Developement Solutions</a> as a software engineer.</span
>
<br>
<span class="triggerSpan" tg-name="opacity" tg-filter="5!" tg-follow="container"
>I love to design dashboards, UI effects, animations as well as making
dynamic, creative and intuitive user experiences & Interface.</span
>
<span class="triggerSpan" tg-name="opacity" tg-filter="6!" tg-follow="container"
>I love computer graphics, I build and optimize graphically insane game
environments and implement the latest technologies Like DLSS, FSR and
much more.</span
>
<span class="triggerSpan" tg-name="opacity" tg-filter="7!" tg-follow="container"
>I am also interested in PC hardware, Micro-Architectures and the latest
technologies in computing.</span
>
<!-- <span class="triggerSpan" tg-name="opacity" tg-filter="6,7" tg-map="6: 0.15; 7: 1" tg-follow="container" class="pro">I am also into computer hardware, Micro-Architectures and the latest
technologies in computing.</span> -->
<!-- <span
tg-name="opacity"
tg-filter="7!"
tg-map="6: 0.3; 7: 1"
tg-follow="container"
class="pro"
>Let’s Pro.</span
> -->
</section>
</div>
</div>
<!--timeline section start-->
<section id="experience" class="parallax-section"></section>
<section class="cd-timeline js-cd-timeline">
<h1 class="wow fadeInDown" data-wow-delay="0.5s" style="text-align:center; background-color: rgb(232,239,245); padding-top: 70px; padding-bottom: 70px;"><strong>My Journey</strong></h1>
<div class="container max-width-lg cd-timeline__container">
<div class="cd-timeline__block">
<div class="cd-timeline__img cd-timeline__img--picture">
<img src="/images/education-svgrepo-com.svg" alt="Picture" />
</div>
<!-- cd-timeline__img -->
<div class="cd-timeline__content text-component">
<h2>Diploma of IT</h2>
<p class="color-contrast-medium">
Completed Diploma of Information Technology from the Newcastle
International College(NIC). During which I gained a lot of knowledge and tools
</p>
<ul class="content-skills">
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>jQuery</li>
<li>Wordpress</li>
</ul>
<div class="flex justify-between items-center">
<span class="cd-timeline__date"
><strong> June, 2018 - June 2019 </strong>
</span>
</div>
</div>
<!-- cd-timeline__content -->
</div>
<!-- cd-timeline__block -->
<div class="cd-timeline__block">
<div class="cd-timeline__img cd-timeline__img--movie">
<img src="/images/education-svgrepo-com.svg" alt="Movie" />
</div>
<!-- cd-timeline__img -->
<div class="cd-timeline__content text-component">
<h2>Bachelor of Information technology</h2>
<p class="color-contrast-medium">
Completed Bachelor's of Information Technology at the University
of Newcastle Australia.<br>
The last 3 years have taught me a lot and equipped me with a lot of tools and knowledge under my belt.
</p>
<ul class="content-skills">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Unity 3D</li>
<li>Unreal Engine 4 & 5</li>
<li>C#</li>
<li>VB.Net</li>
<li>MAUI.Net</li>
<li>MySQL</li>
<li>OpenGL</li>
<li>Wordpress</li>
<li>Microsoft Office suite</li>
<li>Premier Pro</li>
<li>Figma</li>
<li>Project Management</li>
<li>Professional Reports and Presentations</li>
</ul>
<div class="flex justify-between items-center">
<span class="cd-timeline__date">
<strong>July 2019 - Present </strong></span
>
</div>
</div>
<!-- cd-timeline__content -->
</div>
<!-- cd-timeline__block -->
<div class="cd-timeline__block">
<div class="cd-timeline__img cd-timeline__img--picture">
<img src="/images/work-svgrepo-com.svg" alt="Picture" />
</div>
<!-- cd-timeline__img -->
<div class="cd-timeline__content text-component">
<h1>Studio Zed</h1>
<h2>ReactJs Engineer</h2>
<p class="color-contrast-medium">
During my final year I was contracted by Studio Zed, a popup design studio, to design, develope and deploy a website.
this was done with ReactJs, NodeJs. I collaborated with designers and participated in stakeholder meetings.
I was able to deliver this project within 8 sprint cycles. Check it out at
<a href="https://studiozed.netlify.app/">Studio Zed</a>
I was responsible for wireframing, developement, CI/CD and release.
<ul class="content-skills">
<li>ReactJs</li>
<li>NodeJs</li>
<li>JavaScript</li>
<li>CI / CD</li>
<li>Vercel</li>
<li>HTML</li>
<li>CSS</li>
<li>Netlify</li>
<li>GitHub</li>
<li>Figma</li>
<li>UX&UI</li>
</ul>
</p>
<div class="flex justify-between items-center">
<span class="cd-timeline__date"
><strong>December, 2021 - March, 2022</strong></span
>
</div>
</div>
<!-- cd-timeline__content -->
</div>
<!-- cd-timeline__block -->
<div class="cd-timeline__block">
<div class="cd-timeline__img cd-timeline__img--location">
<img src="/images/web-development-svgrepo-com.svg" alt="Location" />
</div>
<!-- cd-timeline__img -->
<div class="cd-timeline__content text-component">
<h1>PDS Code</h1>
<h2>Jr Web Developer</h2>
<br>
<p class="color-contrast-medium">
During my final year I was a Jr web dev at <a href="https://www.pdsglobal.com/">Productivity development Solutions(PDS)</a> I Developed and launched a new website for their sister company
<a href="https://www.pdscode.com.au/">PDS Code.</a> I had the chance to work with technologies like Wordpress, HTML, CSS, SCSS, Javascript, React for the frontend and technologies like PHP, SQLite, SSL for the Backend.
</p>
<ul class="content-skills">
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript</li>
<li>React</li>
<li>Wordpress</li>
<li>Bootstrap</li>
<li>PHP</li>
<li>SQLite</li>
<li>Figma</li>
</ul>
<div class="flex justify-between items-center">
<span class="cd-timeline__date"><strong>February-August, 2022</strong></span>
</div>
</div>
<!-- cd-timeline__content -->
</div>
<!-- cd-timeline__block -->
<div class="cd-timeline__block">
<div class="cd-timeline__img cd-timeline__img--location">
<img src="/images/web-development-svgrepo-com.svg" alt="Location" />
</div>
<!-- cd-timeline__img -->
<div class="cd-timeline__content text-component">
<h1>PDS</h1>
<h2>Fullstack Software Engineer</h2>
<br>
<p class="color-contrast-medium">
I am currently a Fullstack developer at <a href="https://www.pdsglobal.com/">Productivity development Solutions (PDS)</a>.
I am currently working on 4 projects, one for PDS's asset management system using ASP.NET MVC + going back once in a while to fix bugs and optimize the <a href="https://www.pdscode.com.au/">PDS Code website</a>.
the other 2 project are mobile apps, one is a revamp version of our existing asset management app called <a href="https://apps.apple.com/au/app/ipds-for-iphone/id1337482305">iPDS</a>,
the other app is a social media app that focuses on mental health and suicide prevention called RedSix, both apps are built using .NET MAUI.
I am Excited as always to learn and adapt new tech and will never stop doing so!
</p>
<ul class="content-skills">
<li>ASP.NET MVC</li>
<li>HTML</li>
<li>CSS</li>
<li>Razor</li>
<li>JavaScript</li>
<li>jQuery</li>
<li>Bootstrap</li>
<li>Kendo UI</li>
<li>TypeScript</li>
</ul>
<span class="cd-timeline__date"><strong>August, 2022 - Present</strong></span>
</div>
<!-- cd-timeline__content -->
</div>
<!-- cd-timeline__block -->
</div>
</section>
<!-- Hidden canvas -->
<canvas id="myCanvas" width="100%" height="100%">
<div id="svg-container" style="display:none;">
<!-- ARD -->
<svg viewBox="0 0 128 128">
<g fill="#00979C" fill-rule="evenodd">
<path
d="M.316 55.504v-9.555c.223-.125.164-.355.207-.547C3.531 32.316 11.734 24.45 24.668 21.31c1.133-.274 2.32-.247 3.422-.653h6.37c.145.274.415.164.63.188 6.422.687 12.203 2.957 17.316 6.914 4.364 3.37 7.84 7.547 10.938 12.058.383.559.566.575.953.004 1.773-2.61 3.707-5.097 5.86-7.41 5.35-5.738 11.706-9.695 19.511-11.144 1.172-.22 2.383-.207 3.52-.61h6.19c.13.23.36.157.556.18 1.843.207 3.664.547 5.453 1.062 13.449 3.864 22.933 16.184 22.136 30.133-.668 11.645-6.562 20.032-16.78 25.418-5.157 2.719-10.75 3.489-16.524 3.375-7.625-.148-14.254-2.77-19.969-7.773-3.965-3.469-7.082-7.64-9.945-12.016-.426-.652-.59-.57-.973.02-1.812 2.789-3.758 5.492-5.96 8-3.868 4.406-8.337 8-13.93 9.96-6.915 2.422-13.965 2.516-20.954.54C12.414 76.707 5.468 70.3 1.723 60.48c-.618-1.617-.875-3.335-1.407-4.976zm31.79 14.684c5.734.238 10.62-1.688 14.765-5.543 4.324-4.024 7.383-9.004 10.488-13.946.188-.297.13-.531-.05-.808-2.645-4.121-5.356-8.203-8.934-11.602-6.883-6.543-14.992-8.742-24.04-5.852C16.778 34.855 12 40.234 10.884 48.22c-1.043 7.445 1.855 13.457 7.812 17.941 3.965 2.988 8.532 4.164 13.41 4.028zm63.347 0c2.246.058 4.457-.09 6.59-.731 7.82-2.332 13.105-7.293 14.578-15.43 1.469-8.105-1.668-14.593-8.39-19.226-7.493-5.168-18.415-4.66-26.055 1.023-5.074 3.774-8.524 8.91-11.875 14.133-.196.3-.145.531.027.805 2.688 4.3 5.379 8.597 8.863 12.324 4.407 4.715 9.704 7.394 16.262 7.102zm32.227 29.007c-.297.942-.535 1.903-.895 2.82-2.234 5.68-10.222 7.204-14.055 2.684-1.304-1.539-1.878-3.386-2.097-5.347-.305-2.743-.297-5.465.734-8.098 1.457-3.695 4.61-5.613 8.754-5.3 3.777.284 6.29 2.538 7.188 6.433.117.5.058 1.047.37 1.5zm-12.618-2.61c.004 1.509.086 3.009.622 4.438.406 1.106 1.086 1.942 2.293 2.254 2.156.559 3.925-.328 4.582-2.472.843-2.77.804-5.59.007-8.364-.515-1.808-1.605-2.601-3.316-2.632-1.828-.036-2.96.746-3.617 2.507-.512 1.38-.563 2.825-.57 4.27zm-17.753-3.14v12.278c0 1.21 0 1.21-1.254 1.21-.618 0-1.239-.042-1.856.012-.691.063-.906-.18-.898-.882.031-3.626.015-7.25.015-10.876 0-2.71.02-5.421-.011-8.132-.008-.618.168-.817.789-.793 1.207.047 2.418.05 3.625-.004.601-.024.883.191 1.125.719 1.886 4.09 3.8 8.164 5.71 12.242.048.097.114.191.31.515V98.68c0-3.86.015-7.72-.016-11.578-.004-.649.144-.891.824-.84.851.062 1.707.035 2.562.008.48-.02.672.117.672.636a4570.62 4570.62 0 000 19.364c0 .488-.144.68-.652.671a90.154 90.154 0 00-3.98.004c-.544.016-.684-.316-.864-.703a3437.438 3437.438 0 00-5.64-12.176c-.094-.199-.106-.464-.461-.62zm-65.496 3.7c1.515 1.218 2.117 2.906 2.914 4.472.77 1.52 1.5 3.063 2.273 4.582.262.52.313.774-.426.746a58.648 58.648 0 00-3.707 0c-.5.016-.722-.191-.914-.625-.863-1.965-1.765-3.914-2.648-5.87-.485-1.075-1.254-1.731-2.461-1.9-.715-.097-.903.13-.89.837.042 2.238-.009 4.476.03 6.715.012.656-.16.886-.832.847-.941-.058-1.886-.035-2.828-.008-.5.012-.746-.101-.746-.675.02-6.454.012-12.903.016-19.356 0-.281-.074-.644.39-.629 3.145.102 6.313-.332 9.426.367 4.277.961 4.817 4.575 4.047 7.247-.504 1.753-1.86 2.71-3.645 3.25zm-5.84-4.711v2.207c0 .242-.008.492.34.492 1.203.012 2.421.097 3.539-.496 1.011-.54 1.43-1.426 1.28-2.664-.12-1.012-.679-1.641-1.804-1.895a9.13 9.13 0 00-1.926-.223c-1.77-.02-1.386-.164-1.43 1.344-.011.41 0 .824 0 1.235zm13.015 4.148c0-3.125.02-6.246-.015-9.371-.008-.703.136-.984.91-.95 2.5.102 5.012-.156 7.504.15 4.734.581 7.175 3.054 7.707 7.85.261 2.329.176 4.653-.66 6.891-1.317 3.512-4.067 5.13-7.602 5.618-2.398.328-4.824.117-7.242.171-.649.016-.602-.386-.602-.812v-9.547zm4.348-.016v4.766c0 2.04 0 2.04 2.078 1.953 2.578-.11 4.223-1.433 4.832-3.953.488-2.008.438-4.031-.062-6.027-.5-1.985-1.813-3.094-3.864-3.325-.726-.082-1.468-.054-2.199-.12-.621-.06-.809.18-.797.796.035 1.969.012 3.942.012 5.91zm-25.84 10.375c-2.367 0-2.367 0-3.004-2.238-.508-1.781-.508-1.781-2.363-1.781-1.477 0-2.95.027-4.422-.012-.547-.015-.777.168-.906.692-.223.914-.563 1.8-.785 2.714-.125.508-.383.649-.871.633a40.27 40.27 0 00-2.915 0c-.66.028-.722-.183-.542-.77 1.472-4.75 2.917-9.507 4.37-14.265.5-1.629 1.024-3.254 1.493-4.894.148-.528.351-.774.949-.754 1.504.046 3.008.03 4.508.007.46-.007.664.141.8.594a5006.596 5006.596 0 005.93 19.324c.176.57.09.813-.562.758-.555-.047-1.117-.008-1.68-.008zm-6.867-15.66l-.184.012c-.777 2.672-1.558 5.34-2.336 8.012.137.039.192.07.25.07.942.008 1.883.016 2.825.016 1.804.004 1.808 0 1.312-1.7-.621-2.136-1.246-4.277-1.867-6.41zm46.445 2.684c0-2.328.012-4.656-.011-6.988-.004-.516.12-.739.683-.711.973.043 1.95.05 2.918-.004.652-.035.777.23.773.816-.019 3.922-.011 7.844-.003 11.766 0 .676.02 1.355.09 2.027.187 1.848 1.28 2.781 3.288 2.84 2.012.062 3.149-.809 3.422-2.672a14.01 14.01 0 00.141-2.023c.016-3.922.023-7.844-.012-11.762-.004-.738.125-1.07.953-.996.907.082 1.829.039 2.739.012.48-.016.683.113.68.632-.032 4.48.046 8.965-.083 13.442-.109 3.89-2.644 6.41-6.543 6.844-1.664.187-3.3.093-4.89-.434-2.551-.852-4.008-2.902-4.106-5.895-.07-2.296-.011-4.597-.011-6.894zm25.895-7.688c2.035 0 4.066.02 6.101-.015.575-.008.785.16.746.746a17.403 17.403 0 000 2.117c.036.563-.191.707-.714.691-1.063-.035-2.122.008-3.184-.02-.496-.015-.734.083-.734.665.023 4.066.02 8.133.004 12.2-.004.542.167.726.707.706 1.058-.027 2.12.024 3.18-.02.6-.019.769.212.741.774-.039.734-.03 1.473-.004 2.207.02.473-.175.61-.62.61-4.126-.012-8.25-.012-12.38 0-.492.003-.69-.153-.671-.657a27.82 27.82 0 00-.004-2.21c-.024-.532.152-.735.703-.72 1.09.032 2.18-.007 3.27.012.5.012.66-.175.656-.672-.012-4.093-.012-8.191 0-12.289 0-.46-.164-.613-.618-.605-1.09.023-2.183-.024-3.27.02-.597.023-.788-.196-.737-.762.086-.899-.375-2.043.199-2.633.5-.512 1.625-.129 2.476-.145 1.38-.015 2.77 0 4.153 0zm41.883-61.8c-.133.199-.18.265-.223.332-.242.363-.055 1.097-.664 1.086-.54-.012-.403-.684-.594-1.051-.05-.098-.11-.188-.277-.461 0 .504.008.789 0 1.078-.008.195.035.441-.274.457-.312.016-.293-.234-.297-.43-.007-.68-.007-1.355-.003-2.031 0-.23-.036-.496.324-.504.27-.004.504-.015.617.336.144.43.195.91.527 1.324.317-.402.371-.867.492-1.293.102-.347.317-.37.598-.37.356.003.34.253.344.488.004.68.004 1.355-.004 2.035-.004.191.023.445-.281.449-.305 0-.282-.242-.285-.442-.008-.289 0-.574 0-1.003zm-3.712-1.532c.087 0 .18-.015.262 0 .325.063.828-.187.934.2.144.543-.426.27-.668.386-.242.117-.195.332-.2.528-.011.468-.007.937-.007 1.406 0 .258-.05.473-.383.46-.305-.01-.293-.234-.293-.437a36.975 36.975 0 01-.004-1.316c.012-.375.016-.727-.523-.676-.188.016-.352-.039-.352-.277 0-.328.254-.262.442-.27.265-.012.527-.004.793-.004zm0 0">
</path>
<path
d="M31.977 47.543c3.238 0 6.48.023 9.718-.02.758-.011.953.223.907.942a19.358 19.358 0 000 2.734c.054.758-.149 1.004-.954.996-4.3-.043-8.601-.023-12.898-.023-2.18 0-4.36-.031-6.535.02-.762.019-.957-.235-.914-.95.058-.937.05-1.887 0-2.828-.035-.676.16-.898.87-.89 3.267.042 6.54.019 9.806.019zm63.039-6.414c.765 0 1.535.023 2.3-.008.5-.02.66.156.653.66-.028 1.414.02 2.828-.024 4.242-.023.641.133.875.82.848 1.383-.055 2.77.004 4.153-.023.535-.012.812.093.797.715a112.75 112.75 0 00-.004 4.597c.012.555-.2.7-.727.692-1.414-.032-2.828.015-4.242-.024-.601-.02-.82.133-.8.774.046 1.414-.008 2.828.027 4.242.015.593-.13.836-.774.816a91.282 91.282 0 00-4.507-.004c-.583.016-.762-.172-.747-.754.04-1.472-.007-2.945.024-4.418.008-.5-.145-.664-.649-.652-1.414.027-2.832-.031-4.242.027-.726.028-.894-.234-.879-.906.043-1.383.067-2.77-.004-4.152-.043-.817.262-.992 1.012-.961 1.356.058 2.711-.008 4.067.027.539.016.71-.148.695-.699-.035-1.41.015-2.828-.024-4.242-.015-.598.133-.852.774-.809.765.051 1.531.012 2.3.012zm0 0">
</path>
</g>
</svg>
<!-- C -->
<svg viewBox="0 0 128 128">
<path fill="#659AD3"
d="M115.4 30.7L67.1 2.9c-.8-.5-1.9-.7-3.1-.7-1.2 0-2.3.3-3.1.7l-48 27.9c-1.7 1-2.9 3.5-2.9 5.4v55.7c0 1.1.2 2.4 1 3.5l106.8-62c-.6-1.2-1.5-2.1-2.4-2.7z">
</path>
<path fill="#03599C"
d="M10.7 95.3c.5.8 1.2 1.5 1.9 1.9l48.2 27.9c.8.5 1.9.7 3.1.7 1.2 0 2.3-.3 3.1-.7l48-27.9c1.7-1 2.9-3.5 2.9-5.4V36.1c0-.9-.1-1.9-.6-2.8l-106.6 62z">
</path>
<path fill="#fff"
d="M85.3 76.1C81.1 83.5 73.1 88.5 64 88.5c-13.5 0-24.5-11-24.5-24.5s11-24.5 24.5-24.5c9.1 0 17.1 5 21.3 12.5l13-7.5c-6.8-11.9-19.6-20-34.3-20-21.8 0-39.5 17.7-39.5 39.5s17.7 39.5 39.5 39.5c14.6 0 27.4-8 34.2-19.8l-12.9-7.6z">
</path>
</svg>
<!-- atom -->
<svg viewBox="0 0 128 128">
<path fill="#67995D"
d="M49.66 53.23h1.14l8.19 21.57H58l-2.79-7.35H45.16l-2.82 7.35h-.99l8.31-21.57zm5.19 13.32L50.23 54.4l-4.71 12.15h9.33zm12.99-12.39h-6.72v-.93h14.46v.93h-6.721V74.8h-1.02V54.16zm14.879 1.95c1.681-2.24 4.11-3.36 7.29-3.36 3.2 0 5.641 1.11 7.32 3.33 1.5 2.021 2.25 4.67 2.25 7.951 0 3.299-.75 5.939-2.25 7.92-1.68 2.199-4.12 3.3-7.32 3.3s-5.63-1.101-7.29-3.3c-1.5-1.98-2.25-4.621-2.25-7.92 0-3.261.75-5.901 2.25-7.921zm.75 15.15c1.48 2.081 3.66 3.12 6.54 3.12 2.9 0 5.09-1.039 6.57-3.12 1.3-1.819 1.95-4.229 1.95-7.229 0-2.98-.66-5.39-1.98-7.23-1.5-2.1-3.68-3.15-6.54-3.15s-5.04 1.05-6.54 3.15c-1.3 1.84-1.949 4.25-1.949 7.23s.649 5.389 1.949 7.229zM106.6 53.23h1.44l7.859 15.179 7.561-15.179h1.41V74.8h-.9V54.49l-7.8 15.15h-.601L107.5 54.49V74.8h-.9V53.23z">
</path>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#67995D"
d="M13.217 64.784l-.572 1.191c-.88 1.89-1.607 3.833-1.984 5.891-.208 1.144-.322 2.297-.023 3.446.257.987.79 1.494 1.704 1.536.4.019.82-.066 1.209-.176 1.03-.292 1.929-.856 2.796-1.467.21-.149.427-.242.689-.144.465.173.634.79.241 1.083-1.418 1.057-2.917 1.967-4.754 2.022-1.504.047-2.592-.76-3.071-2.193-.359-1.07-.38-2.171-.249-3.274.391-3.286 1.66-6.271 3.183-9.166.131-.249.138-.446.046-.711a109.395 109.395 0 01-1.081-3.297c-.067-.21-.135-.269-.361-.219-1.491.328-2.961.729-4.286 1.512a6.613 6.613 0 00-1.409 1.108c-.68.714-.693 1.503-.138 2.319.484.711 1.168 1.197 1.888 1.638l.69.391c.33.196.443.58.274.897a.653.653 0 01-.896.267c-1.014-.52-1.958-1.138-2.715-2.005-.463-.53-.804-1.128-.917-1.835-.14-.882.113-1.66.643-2.357.547-.721 1.265-1.234 2.048-1.66 1.39-.757 2.888-1.208 4.425-1.542l.353-.087c-.072-.411-.15-.809-.213-1.21-.251-1.63-.367-3.263.032-4.889.159-.644.408-1.251.841-1.764.884-1.044 2.021-1.277 3.295-.966 1.261.309 2.318 1.006 3.306 1.818.278.23.286.645.059.912-.233.272-.595.308-.912.092-.496-.338-.98-.7-1.497-1.005-.592-.35-1.228-.599-1.935-.602-.586-.002-1.042.235-1.374.709-.423.601-.573 1.295-.653 2.006-.168 1.505.031 2.984.324 4.456.031.156.092.212.257.195 1.187-.119 2.376-.236 3.564-.335a.759.759 0 00.588-.319c1.546-1.953 3.241-3.761 5.234-5.27 1.111-.84 2.283-1.573 3.635-1.974.846-.25 1.702-.343 2.554-.043 1.063.374 1.658 1.183 1.965 2.227.325 1.107.274 2.237.143 3.366-.034.289-.085.577-.139.863-.074.389-.364.595-.752.55-.354-.041-.584-.325-.546-.72.051-.543.175-1.084.18-1.627.007-.644-.007-1.302-.141-1.926-.278-1.298-1.177-1.807-2.505-1.515-.996.22-1.88.688-2.721 1.243-1.728 1.139-3.203 2.563-4.572 4.103-.255.286-.5.581-.747.874l-.034.123h.359c3.527.035 7.002.455 10.397 1.432 1.616.466 3.178 1.073 4.613 1.966.765.475 1.466 1.025 2.021 1.744 1.131 1.463 1.036 3.108-.266 4.418-.879.886-1.961 1.445-3.115 1.88a.643.643 0 01-.811-.37c-.137-.344.012-.698.361-.868.533-.258 1.086-.48 1.59-.788a5.529 5.529 0 001.145-.922c.705-.75.731-1.57.133-2.409-.447-.628-1.048-1.089-1.695-1.491-1.596-.992-3.348-1.606-5.15-2.085-1.88-.5-3.789-.849-5.729-.987-1.546-.11-3.098-.142-4.646-.215-.224-.01-.376.056-.5.247-.908 1.4-1.826 2.794-2.729 4.197a.497.497 0 00-.05.395c1.529 3.638 3.466 7.033 6.031 10.047 1.08 1.27 2.256 2.442 3.683 3.33.669.417 1.367.765 2.178.817.734.051 1.27-.257 1.634-.88.345-.587.481-1.236.544-1.904.198-2.152-.228-4.23-.792-6.286-.579-2.105-1.396-4.123-2.334-6.093-.075-.158-.139-.347-.13-.518.015-.311.26-.531.566-.58.27-.042.552.105.687.395.336.718.677 1.436.983 2.167.949 2.257 1.713 4.573 2.116 6.995.281 1.69.416 3.388.025 5.081a5.819 5.819 0 01-.379 1.108c-.666 1.455-2.016 2.112-3.579 1.771-1.271-.278-2.344-.943-3.345-1.736-1.841-1.459-3.335-3.238-4.686-5.145a40.635 40.635 0 01-3.931-6.909l-.168-.344zm-.666-5.781l.843 2.677 1.951-2.979-2.794.302zm7.472 6.91a1.913 1.913 0 01-1.916-1.908 1.918 1.918 0 011.937-1.917A1.918 1.918 0 0121.961 64a1.914 1.914 0 01-1.938 1.913z">
</path>
</svg>
<!-- GITHUB -->
<svg viewBox="0 0 128 128">
<g fill="#FFF">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M64 1.512c-23.493 0-42.545 19.047-42.545 42.545 0 18.797 12.19 34.745 29.095 40.37 2.126.394 2.907-.923 2.907-2.047 0-1.014-.04-4.366-.058-7.92-11.837 2.573-14.334-5.02-14.334-5.02-1.935-4.918-4.724-6.226-4.724-6.226-3.86-2.64.29-2.586.29-2.586 4.273.3 6.523 4.385 6.523 4.385 3.794 6.504 9.953 4.623 12.38 3.536.383-2.75 1.485-4.628 2.702-5.69-9.45-1.075-19.384-4.724-19.384-21.026 0-4.645 1.662-8.44 4.384-11.42-.442-1.072-1.898-5.4.412-11.26 0 0 3.572-1.142 11.7 4.363 3.395-.943 7.035-1.416 10.65-1.432 3.616.017 7.258.49 10.658 1.432 8.12-5.504 11.688-4.362 11.688-4.362 2.316 5.86.86 10.187.418 11.26 2.728 2.978 4.378 6.774 4.378 11.42 0 16.34-9.953 19.938-19.427 20.99 1.526 1.32 2.886 3.91 2.886 7.88 0 5.692-.048 10.273-.048 11.674 0 1.13.766 2.458 2.922 2.04 16.896-5.632 29.07-21.574 29.07-40.365C106.545 20.56 87.497 1.512 64 1.512z">
</path>
<path
d="M37.57 62.596c-.095.212-.428.275-.73.13-.31-.14-.482-.427-.382-.64.09-.216.424-.277.733-.132.31.14.486.43.38.642zM39.293 64.52c-.203.187-.6.1-.87-.198-.278-.297-.33-.694-.124-.884.208-.188.593-.1.87.197.28.3.335.693.123.884zm1.677 2.448c-.26.182-.687.012-.95-.367-.262-.377-.262-.83.005-1.013.264-.182.684-.018.95.357.262.385.262.84-.005 1.024zm2.298 2.368c-.233.257-.73.188-1.093-.163-.372-.343-.475-.83-.242-1.087.237-.257.736-.185 1.102.163.37.342.482.83.233 1.086zm3.172 1.374c-.104.334-.582.485-1.064.344-.482-.146-.796-.536-.7-.872.1-.336.582-.493 1.067-.342.48.144.795.53.696.87zm3.48.255c.013.35-.396.642-.902.648-.508.012-.92-.272-.926-.618 0-.354.4-.642.908-.65.506-.01.92.272.92.62zm3.24-.551c.06.342-.29.694-.793.787-.494.092-.95-.12-1.014-.46-.06-.35.297-.7.79-.792.503-.088.953.118 1.017.466zm0 0">
</path>
<path
d="M24.855 108.302h-10.7a.5.5 0 00-.5.5v5.232a.5.5 0 00.5.5h4.173v6.5s-.937.32-3.53.32c-3.056 0-7.327-1.116-7.327-10.508 0-9.393 4.448-10.63 8.624-10.63 3.614 0 5.17.636 6.162.943.31.094.6-.216.6-.492l1.193-5.055a.468.468 0 00-.192-.39c-.403-.288-2.857-1.66-9.058-1.66-7.144 0-14.472 3.038-14.472 17.65 0 14.61 8.39 16.787 15.46 16.787 5.854 0 9.405-2.502 9.405-2.502.146-.08.162-.285.162-.38v-16.316a.5.5 0 00-.5-.5zM79.506 94.81H73.48a.5.5 0 00-.498.503l.002 11.644h-9.392V95.313a.5.5 0 00-.497-.503H57.07a.5.5 0 00-.498.503v31.53c0 .277.224.503.498.503h6.025a.5.5 0 00.497-.504v-13.486h9.392l-.016 13.486c0 .278.224.504.5.504h6.038a.5.5 0 00.497-.504v-31.53a.497.497 0 00-.497-.502zm-47.166.717c-2.144 0-3.884 1.753-3.884 3.923 0 2.167 1.74 3.925 3.884 3.925 2.146 0 3.885-1.758 3.885-3.925 0-2.17-1.74-3.923-3.885-3.923zm2.956 9.608H29.29c-.276 0-.522.284-.522.56v20.852c0 .613.382.795.876.795h5.41c.595 0 .74-.292.74-.805v-20.899a.5.5 0 00-.498-.502zm67.606.047h-5.98a.5.5 0 00-.496.504v15.46s-1.52 1.11-3.675 1.11-2.727-.977-2.727-3.088v-13.482a.5.5 0 00-.497-.504h-6.068a.502.502 0 00-.498.504v14.502c0 6.27 3.495 7.804 8.302 7.804 3.944 0 7.124-2.18 7.124-2.18s.15 1.15.22 1.285c.07.136.247.273.44.273l3.86-.017a.502.502 0 00.5-.504l-.003-21.166a.504.504 0 00-.5-.502zm16.342-.708c-3.396 0-5.706 1.515-5.706 1.515V95.312a.5.5 0 00-.497-.503H107a.5.5 0 00-.5.503v31.53a.5.5 0 00.5.503h4.192c.19 0 .332-.097.437-.268.103-.17.254-1.454.254-1.454s2.47 2.34 7.148 2.34c5.49 0 8.64-2.784 8.64-12.502s-5.03-10.988-8.428-10.988zm-2.36 17.764c-2.073-.063-3.48-1.004-3.48-1.004v-9.985s1.388-.85 3.09-1.004c2.153-.193 4.228.458 4.228 5.594 0 5.417-.935 6.486-3.837 6.398zm-63.689-.118c-.263 0-.937.107-1.63.107-2.22 0-2.973-1.032-2.973-2.368v-8.866h4.52a.5.5 0 00.5-.504v-4.856a.5.5 0 00-.5-.502h-4.52l-.007-5.97c0-.227-.116-.34-.378-.34h-6.16c-.238 0-.367.106-.367.335v6.17s-3.087.745-3.295.805a.5.5 0 00-.36.48v3.877a.5.5 0 00.497.503h3.158v9.328c0 6.93 4.86 7.61 8.14 7.61 1.497 0 3.29-.48 3.586-.59.18-.067.283-.252.283-.453l.004-4.265a.51.51 0 00-.5-.502z"
fill="#FFF"></path>
</g>
</svg>
<svg viewBox="0 0 128 128">
<g fill="#f58220">
<path
d="M11.4 115.62H8.25v-24.4H22.5v3.01H11.4v8.02h10.04v2.93H11.42v10.44h-.02zM27.92 94.74c-.43.43-.96.64-1.57.64-.61 0-1.15-.21-1.57-.64-.43-.43-.64-.96-.64-1.57s.21-1.15.64-1.57c.43-.43.96-.64 1.57-.64.61 0 1.15.21 1.57.64s.64.96.64 1.57-.22 1.11-.64 1.57zm0 20.88h-3.14v-16.7h3.14v16.7zM34.47 115.62h-3.14v-16.7h3.01v2.72h.13c.32-.91.96-1.65 1.97-2.24.99-.59 1.95-.88 2.88-.88s1.71.13 2.34.4l-1.2 2.93c-.4-.16-.96-.24-1.68-.24-1.15 0-2.13.45-3.01 1.36-.88.91-1.31 2.08-1.31 3.52v9.13zM49.23 116.18c-2.53 0-4.58-.85-6.15-2.53s-2.37-3.81-2.37-6.37c0-2.42.77-4.53 2.29-6.29 1.55-1.76 3.49-2.64 5.89-2.64 2.48 0 4.45.8 5.94 2.42 1.49 1.63 2.24 3.78 2.24 6.47l-.03.59H43.85c.08 1.68.67 3.01 1.68 4 1.04.99 2.24 1.47 3.62 1.47 2.24 0 3.78-.96 4.58-2.88l2.8 1.17c-.53 1.31-1.44 2.37-2.69 3.25-1.25.89-2.8 1.34-4.61 1.34zm4.51-10.92c-.08-.96-.51-1.87-1.31-2.72-.8-.85-2-1.31-3.6-1.31-1.17 0-2.16.37-3.01 1.09-.85.72-1.44 1.71-1.76 2.93l9.68.01zM68.1 116.18c-1.28 0-2.42-.27-3.44-.83-1.01-.53-1.76-1.23-2.26-2.05h-.13v2.32h-3.01v-24.4h3.14v7.7l-.13 2.32h.13c.51-.83 1.25-1.49 2.26-2.05 1.01-.53 2.16-.83 3.44-.83 2.16 0 4.02.85 5.6 2.56 1.57 1.71 2.34 3.81 2.34 6.34s-.77 4.64-2.34 6.34c-1.58 1.73-3.44 2.58-5.6 2.58zm-.54-2.87c1.47 0 2.72-.56 3.76-1.65 1.04-1.09 1.57-2.56 1.57-4.37s-.53-3.28-1.57-4.37c-1.04-1.09-2.29-1.65-3.76-1.65s-2.74.53-3.76 1.63c-1.01 1.09-1.55 2.56-1.55 4.4 0 1.84.51 3.3 1.55 4.4 1.05 1.07 2.3 1.61 3.76 1.61zM83.84 116.18c-1.79 0-3.25-.51-4.45-1.55-1.2-1.01-1.79-2.37-1.79-4.05 0-1.81.69-3.25 2.1-4.29 1.41-1.04 3.14-1.55 5.22-1.55 1.84 0 3.36.35 4.53 1.01v-.48c0-1.23-.43-2.21-1.25-2.96-.85-.75-1.87-1.12-3.09-1.12-.91 0-1.73.21-2.48.64-.75.43-1.25 1.01-1.52 1.79l-2.88-1.23c.4-1.01 1.15-1.92 2.29-2.77 1.15-.85 2.64-1.28 4.5-1.28 2.13 0 3.92.61 5.33 1.87 1.41 1.25 2.1 3.01 2.1 5.28v10.12h-3.01v-2.32h-.13c-1.23 1.93-3.07 2.89-5.47 2.89zm.51-2.87c1.31 0 2.48-.48 3.52-1.44 1.07-.96 1.6-2.1 1.6-3.44-.88-.72-2.21-1.09-4-1.09-1.52 0-2.66.32-3.44.99-.77.67-1.17 1.44-1.17 2.32 0 .83.35 1.47 1.07 1.95.71.47 1.51.71 2.42.71zM101.19 116.18c-1.87 0-3.41-.45-4.61-1.36a7.894 7.894 0 01-2.66-3.41l2.8-1.17c.88 2.1 2.4 3.14 4.53 3.14.99 0 1.79-.21 2.4-.64.61-.43.93-1.01.93-1.71 0-1.09-.77-1.84-2.29-2.21L98.9 108c-1.07-.27-2.08-.8-3.04-1.55-.96-.77-1.44-1.79-1.44-3.09 0-1.47.67-2.66 1.97-3.6 1.31-.93 2.85-1.39 4.66-1.39 1.47 0 2.8.35 3.94 1.01 1.17.67 2 1.63 2.48 2.88l-2.72 1.12c-.61-1.47-1.89-2.21-3.81-2.21-.93 0-1.71.19-2.34.59-.64.4-.96.91-.96 1.57 0 .96.75 1.6 2.21 1.95l3.3.77c1.57.37 2.72.99 3.49 1.87.75.88 1.12 1.89 1.12 3.01 0 1.49-.61 2.74-1.84 3.76-1.21 1.01-2.79 1.49-4.73 1.49zM117.58 116.18c-2.53 0-4.58-.85-6.15-2.53-1.57-1.68-2.37-3.81-2.37-6.37 0-2.42.77-4.53 2.29-6.29 1.55-1.76 3.49-2.64 5.89-2.64 2.48 0 4.45.8 5.94 2.42 1.49 1.63 2.24 3.78 2.24 6.47l-.03.59H112.2c.08 1.68.67 3.01 1.68 4 1.04.99 2.24 1.47 3.62 1.47 2.24 0 3.78-.96 4.58-2.88l2.8 1.17c-.53 1.31-1.44 2.37-2.69 3.25-1.26.89-2.8 1.34-4.61 1.34zm4.5-10.92c-.08-.96-.51-1.87-1.31-2.72-.8-.85-2-1.31-3.6-1.31-1.17 0-2.16.37-3.01 1.09-.85.72-1.44 1.71-1.76 2.93l9.68.01zM39.25 59.42l7.69-49.28c.27-1.68 2.52-2.08 3.31-.57l8.26 15.47-19.26 34.38zm54.67 11.97L86.58 26c-.22-1.41-1.99-1.99-3.01-.97L37.35 71.39l25.59 14.36c1.59.88 3.58.88 5.17 0l25.81-14.36zM73.14 31.8l-5.92-11.27c-.66-1.28-2.47-1.28-3.14 0l-26.03 46.4L73.14 31.8z">
</path>
</g>
</svg>
<!-- REACT -->
<svg viewBox="0 0 128 128">
<g fill="#61DAFB">
<circle cx="64" cy="47.5" r="9.3"></circle>
<path
d="M64 81.7C71.3 88.8 78.5 93 84.3 93c1.9 0 3.7-.4 5.2-1.3 5.2-3 7.1-10.5 5.3-21.2-.3-1.9-.7-3.8-1.2-5.8 2-.6 3.8-1.2 5.6-1.8 10.1-3.9 15.7-9.3 15.7-15.2 0-6-5.6-11.4-15.7-15.2-1.8-.7-3.6-1.3-5.6-1.8.5-2 .9-3.9 1.2-5.8 1.7-10.9-.2-18.5-5.4-21.5-1.5-.9-3.3-1.3-5.2-1.3-5.7 0-13 4.2-20.3 11.3C56.7 6.3 49.5 2.1 43.7 2.1c-1.9 0-3.7.4-5.2 1.3-5.2 3-7.1 10.5-5.3 21.2.3 1.9.7 3.8 1.2 5.8-2 .6-3.8 1.2-5.6 1.8-10.1 3.9-15.7 9.3-15.7 15.2 0 6 5.6 11.4 15.7 15.2 1.8.7 3.6 1.3 5.6 1.8-.5 2-.9 3.9-1.2 5.8-1.7 10.7.2 18.3 5.3 21.2 1.5.9 3.3 1.3 5.2 1.3 5.8.2 13-4 20.3-11zm-5.6-13.5c1.8.1 3.7.1 5.6.1 1.9 0 3.8 0 5.6-.1-1.8 2.4-3.7 4.6-5.6 6.7-1.9-2.1-3.8-4.3-5.6-6.7zM46 57.9c1 1.7 1.9 3.3 3 4.9-3.1-.4-6-.9-8.8-1.5.9-2.7 1.9-5.5 3.1-8.3.8 1.6 1.7 3.3 2.7 4.9zm-5.8-24.1c2.8-.6 5.7-1.1 8.8-1.5-1 1.6-2 3.2-3 4.9-1 1.7-1.9 3.3-2.7 5-1.3-2.9-2.3-5.7-3.1-8.4zm5.5 13.7c1.3-2.7 2.7-5.4 4.3-8.1 1.5-2.6 3.2-5.2 4.9-7.8 3-.2 6-.3 9.1-.3 3.2 0 6.2.1 9.1.3 1.8 2.6 3.4 5.2 4.9 7.8 1.6 2.7 3 5.4 4.3 8.1-1.3 2.7-2.7 5.4-4.3 8.1-1.5 2.6-3.2 5.2-4.9 7.8-3 .2-6 .3-9.1.3-3.2 0-6.2-.1-9.1-.3-1.8-2.6-3.4-5.2-4.9-7.8-1.6-2.7-3-5.4-4.3-8.1zm39.1-5.4l-2.7-5c-1-1.7-1.9-3.3-3-4.9 3.1.4 6 .9 8.8 1.5-.9 2.8-1.9 5.6-3.1 8.4zm0 10.8c1.2 2.8 2.2 5.6 3.1 8.3-2.8.6-5.7 1.1-8.8 1.5 1-1.6 2-3.2 3-4.9.9-1.5 1.8-3.2 2.7-4.9zm2.3 34.7c-.8.5-1.8.7-2.9.7-4.9 0-11-4-17-10 2.9-3.1 5.7-6.6 8.5-10.5 4.7-.4 9.2-1.1 13.4-2.1.5 1.8.8 3.6 1.1 5.4 1.4 8.5.3 14.6-3.1 16.5zm5.2-52.7c11.2 3.2 17.9 8.1 17.9 12.6 0 3.9-4.6 7.8-12.7 10.9-1.6.6-3.4 1.2-5.2 1.7-1.3-4.1-2.9-8.3-4.9-12.6 2-4.3 3.7-8.5 4.9-12.6zm-8-28.2c1.1 0 2 .2 2.9.7 3.3 1.9 4.5 7.9 3.1 16.5-.3 1.7-.7 3.5-1.1 5.4-4.2-.9-8.7-1.6-13.4-2.1-2.7-3.9-5.6-7.4-8.5-10.5 6-5.9 12.1-10 17-10zM69.6 26.8c-1.8-.1-3.7-.1-5.6-.1s-3.8 0-5.6.1c1.8-2.4 3.7-4.6 5.6-6.7 1.9 2.1 3.8 4.4 5.6 6.7zM40.9 7.4c.8-.5 1.8-.7 2.9-.7 4.9 0 11 4 17 10-2.9 3.1-5.7 6.6-8.5 10.5-4.7.4-9.2 1.1-13.4 2.1-.5-1.8-.8-3.6-1.1-5.4-1.4-8.5-.3-14.5 3.1-16.5zm-5.2 52.7C24.5 56.9 17.8 52 17.8 47.5c0-3.9 4.6-7.8 12.7-10.9 1.6-.6 3.4-1.2 5.2-1.7 1.3 4.1 2.9 8.3 4.9 12.6-2 4.3-3.7 8.6-4.9 12.6zm2.1 11c.3-1.7.7-3.5 1.1-5.4 4.2.9 8.7 1.6 13.4 2.1 2.7 3.9 5.6 7.4 8.5 10.5-6 5.9-12.1 10-17 10-1.1 0-2-.2-2.9-.7-3.4-1.9-4.5-8-3.1-16.5zm-4.2 41.2c2.2-2.7 2.3-5.7 1.1-8.7-1.2-3-3.7-4.4-6.8-4.5-3.7-.1-7.5 0-11.2 0H16V125h3v-9.8h4.7c.6 0 1.1.2 1.4.7l6 9.3c.1.2.4.5.6.5h3.9c-2.4-3.7-4.7-7.2-7.1-10.8 2.1-.3 3.9-1 5.1-2.6zm-14.6-.2v-9.9h1.1c2.3 0 4.7-.1 7 .1 2.7.1 4.6 2.2 4.6 4.9s-2.2 4.8-4.9 4.9c-2.4.1-4.8 0-7.8 0zm38.7 1.3c-1.6-7-8-8.8-12.9-6.6-3.8 1.7-5.5 5-5.6 9.1-.1 3.1.8 5.9 3.2 8 2.7 2.4 6 2.7 9.4 2.1 1.9-.4 3.6-1.3 4.9-2.7-.5-.7-1-1.4-1.5-2-2.8 2.4-5.9 3.2-9.3 1.6-2.2-1.1-3.3-3.8-3.5-5.8h15.5v-1.3c.1-.9 0-1.7-.2-2.4zM42.6 115c-.3-3 2.7-6.2 6-6.2 3.8-.1 6.2 2.2 6.3 6.2H42.6zm30.7-8.7c-1.5-.3-3.1-.4-4.6-.3-2.4.2-4.5 1.3-6.2 3.1.5.7.9 1.4 1.5 2.2.2-.2.4-.4.6-.5 1.6-1.5 3.5-2.3 5.8-2.1 1.8.1 3.5.7 4 2.5.4 1.4.3 2.9.4 4.4-.3 0-.4-.1-.5-.2-2.4-2-5.1-2.4-8-1.7-2.7.7-4.4 2.8-4.6 5.5-.2 3.1 1.2 5.4 3.9 6.5 1.7.7 3.6.7 5.4.3 1.4-.3 2-1.1 4-2.2v1.3h2.8c0-4 .1-8.9 0-13.5 0-2.9-1.7-4.7-4.5-5.3zm1.4 12.6c-.1.3 0 .6 0 .9 0 2.1-.5 2.8-2.5 3.6-1.4.5-2.9.7-4.4.2-1.7-.5-2.9-2-2.9-3.7-.1-1.7 1-3.4 2.7-3.9 2.3-.8 4.4-.3 6.3 1.1.6.5 1 1 .8 1.8zm15.6-9.9c2.6-.8 5-.3 6.8 1.9l.3.2c.7-.6 1.3-1.2 2.1-1.9-.3-.3-.4-.5-.6-.8-2.9-3.1-8.6-3.5-12.1-1-4.9 3.6-4.8 10.6-2.4 14.3 2.3 3.5 5.6 4.7 9.5 4.2 2.3-.3 4.2-1.4 5.7-3.3-.7-.6-1.4-1.2-2.1-1.9-.2.2-.3.3-.4.5-2.7 3-7.2 2.7-9.6-.5-1.4-1.9-1.7-4.1-1.3-6.3.2-2.5 1.5-4.5 4.1-5.4zm20.8 13.6c-.2.1-.3.2-.3.2-.8.6-1.6.7-2.5.4-.9-.4-1-1.2-1.1-2v-11.4c0-.2 0 .2.1-.8h3.8v-3h-4v-5h-3v5.4h-2.6c-.2 0-.5.2-.5.4-.1.7 0 1.2 0 2.2h3.2v12.8c0 1.6.4 3 1.8 3.8 1.5.9 4.4.7 5.7-.4.2-.1.3-.5.3-.6-.3-.6-.6-1.3-.9-2z">
</path>
</g>
</svg>
<!-- NODE JS -->
<svg viewBox="0 0 128 128">
<path fill="#83CD29"
d="M112.771 30.334L68.674 4.729c-2.781-1.584-6.402-1.584-9.205 0L14.901 30.334C12.031 31.985 10 35.088 10 38.407v51.142c0 3.319 2.084 6.423 4.954 8.083l11.775 6.688c5.628 2.772 7.617 2.772 10.178 2.772 8.333 0 13.093-5.039 13.093-13.828v-50.49c0-.713-.371-1.774-1.071-1.774h-5.623C42.594 41 41 42.061 41 42.773v50.49c0 3.896-3.524 7.773-10.11 4.48L18.723 90.73c-.424-.23-.723-.693-.723-1.181V38.407c0-.482.555-.966.982-1.213l44.424-25.561c.415-.235 1.025-.235 1.439 0l43.882 25.555c.42.253.272.722.272 1.219v51.142c0 .488.183.963-.232 1.198l-44.086 25.576c-.378.227-.847.227-1.261 0l-11.307-6.749c-.341-.198-.746-.269-1.073-.086-3.146 1.783-3.726 2.02-6.677 3.043-.726.253-1.797.692.41 1.929l14.798 8.754a9.294 9.294 0 004.647 1.246c1.642 0 3.25-.426 4.667-1.246l43.885-25.582c2.87-1.672 4.23-4.764 4.23-8.083V38.407c0-3.319-1.36-6.414-4.229-8.073zM77.91 81.445c-11.726 0-14.309-3.235-15.17-9.066-.1-.628-.633-1.379-1.272-1.379h-5.731c-.709 0-1.279.86-1.279 1.566 0 7.466 4.059 16.512 23.453 16.512 14.039 0 22.088-5.455 22.088-15.109 0-9.572-6.467-12.084-20.082-13.886-13.762-1.819-15.16-2.738-15.16-5.962 0-2.658 1.184-6.203 11.374-6.203 9.105 0 12.461 1.954 13.842 8.091.118.577.645.991 1.24.991h5.754c.354 0 .692-.143.94-.396.24-.272.367-.613.335-.979-.891-10.568-7.912-15.493-22.112-15.493-12.631 0-20.166 5.334-20.166 14.275 0 9.698 7.497 12.378 19.622 13.577 14.505 1.422 15.633 3.542 15.633 6.395 0 4.955-3.978 7.066-13.309 7.066z">
</path>
</svg>
<!-- RASPBERRY -->
<svg viewBox="0 0 128 128">
<path
d="M42.489 5.002c-.606.018-1.258.239-1.998.814-1.813-.689-3.57-.928-5.142.474-2.427-.31-3.216.33-3.814 1.077-.532-.011-3.986-.54-5.57 1.788-3.98-.464-5.239 2.306-3.814 4.889-.812 1.24-1.655 2.464.246 4.827-.672 1.317-.255 2.744 1.33 4.473-.419 1.85.403 3.155 1.877 4.173-.276 2.531 2.357 4.004 3.143 4.528.302 1.475.932 2.868 3.94 3.637.495 2.2 2.303 2.579 4.053 3.04-5.785 3.313-10.746 7.67-10.712 18.363l-.848 1.49c-6.633 3.973-12.601 16.743-3.269 27.123.61 3.25 1.632 5.583 2.542 8.166 1.362 10.409 10.247 15.282 12.59 15.859 3.435 2.576 7.092 5.02 12.042 6.733 4.665 4.74 9.72 6.546 14.803 6.544h.224c5.083.003 10.138-1.804 14.803-6.544 4.95-1.712 8.607-4.157 12.041-6.733 2.344-.577 11.229-5.45 12.59-15.86.91-2.582 1.933-4.915 2.543-8.165 9.332-10.38 3.364-23.152-3.27-27.126l-.848-1.488c.034-10.692-4.927-15.05-10.712-18.363 1.75-.461 3.558-.841 4.054-3.04 3.007-.77 3.636-2.162 3.938-3.637.787-.525 3.42-1.997 3.144-4.53 1.474-1.016 2.296-2.322 1.878-4.172 1.584-1.728 2-3.156 1.328-4.472 1.902-2.362 1.058-3.587.246-4.827 1.425-2.583.168-5.353-3.814-4.889-1.584-2.327-5.037-1.798-5.57-1.788-.598-.747-1.387-1.387-3.814-1.077-1.571-1.401-3.329-1.162-5.142-.473-2.152-1.673-3.577-.332-5.204.175-2.606-.84-3.202.31-4.482.778-2.842-.592-3.706.696-5.069 2.056l-1.585-.031c-4.286 2.488-6.416 7.555-7.17 10.16-.756-2.606-2.88-7.673-7.166-10.16l-1.585.03c-1.364-1.36-2.228-2.647-5.07-2.055-1.28-.468-1.875-1.617-4.483-.778-1.068-.333-2.05-1.025-3.206-.99l.002.001"
fill="#050606"></path>
<path
d="M34.04 15.95c11.373 5.774 17.984 10.447 21.606 14.426-1.854 7.323-11.531 7.657-15.07 7.451.725-.332 1.33-.73 1.544-1.34-.888-.622-4.036-.066-6.234-1.283.844-.172 1.239-.34 1.634-.953-2.077-.653-4.313-1.215-5.629-2.296.71.01 1.373.157 2.3-.477-1.86-.987-3.845-1.769-5.386-3.278.96-.023 1.998-.01 2.3-.358-1.703-1.038-3.14-2.194-4.328-3.457 1.346.16 1.914.022 2.24-.21-1.288-1.297-2.916-2.393-3.693-3.993 1 .34 1.914.47 2.573-.03-.438-.972-2.311-1.545-3.39-3.815 1.052.1 2.168.226 2.391 0-.488-1.96-1.326-3.061-2.148-4.202 2.251-.033 5.662.008 5.508-.18l-1.392-1.4c2.199-.583 4.449.094 6.083.596.733-.57-.013-1.29-.908-2.027 1.869.246 3.557.67 5.083 1.252.816-.725-.529-1.45-1.18-2.176 2.888.54 4.111 1.298 5.326 2.057.883-.833.05-1.54-.544-2.265 2.177.794 3.298 1.82 4.479 2.831.4-.532 1.016-.922.272-2.206 1.545.878 2.71 1.912 3.57 3.07.957-.6.57-1.42.576-2.175 1.606 1.287 2.626 2.656 3.874 3.994.25-.18.47-.792.665-1.759 3.832 3.662 9.247 12.886 1.392 16.543-6.685-5.43-14.67-9.378-23.517-12.34h.002m60.239 0c-11.373 5.775-17.984 10.446-21.606 14.426 1.855 7.323 11.532 7.657 15.07 7.451-.725-.332-1.329-.73-1.543-1.34.888-.622 4.036-.066 6.234-1.283-.844-.172-1.24-.34-1.634-.953 2.076-.653 4.313-1.215 5.628-2.296-.71.01-1.373.157-2.3-.477 1.86-.987 3.845-1.769 5.387-3.278-.962-.023-1.998-.01-2.3-.358 1.703-1.038 3.139-2.194 4.328-3.457-1.346.16-1.914.022-2.24-.21 1.287-1.297 2.916-2.393 3.692-3.993-.999.34-1.913.47-2.572-.03.437-.972 2.31-1.545 3.39-3.815-1.053.1-2.168.226-2.392 0 .49-1.96 1.327-3.062 2.149-4.203-2.251-.033-5.662.008-5.508-.179l1.393-1.4c-2.2-.584-4.45.093-6.083.595-.734-.57.013-1.29.907-2.027-1.868.246-3.557.67-5.083 1.252-.816-.725.529-1.45 1.18-2.176-2.887.54-4.11 1.298-5.326 2.057-.882-.833-.05-1.54.544-2.265-2.177.794-3.298 1.82-4.478 2.831-.4-.532-1.017-.922-.273-2.206-1.545.878-2.71 1.912-3.57 3.07-.957-.6-.57-1.42-.576-2.175-1.606 1.287-2.626 2.657-3.873 3.994-.251-.18-.471-.792-.666-1.759-3.832 3.662-9.247 12.886-1.392 16.543 6.682-5.432 14.665-9.379 23.514-12.34h-.001"
fill="#63c54d"></path>
<path
d="M77.913 90.52c.04 6.833-6.028 12.402-13.551 12.438-7.524.036-13.655-5.474-13.695-12.308v-.13c-.04-6.834 6.027-12.403 13.551-12.439 7.524-.036 13.655 5.474 13.695 12.308v.13M56.672 55.173c5.645 3.642 6.662 11.9 2.273 18.442-4.39 6.543-12.524 8.894-18.169 5.251-5.644-3.642-6.662-11.9-2.273-18.442 4.39-6.543 12.524-8.894 18.169-5.251m15.236-.66c-5.645 3.643-6.663 11.9-2.273 18.443 4.39 6.542 12.524 8.894 18.168 5.25 5.645-3.642 6.663-11.899 2.273-18.442-4.39-6.542-12.523-8.893-18.168-5.25m-43.099 6.652c6.094-1.609 2.057 24.835-2.901 22.665-5.455-4.321-7.212-16.977 2.9-22.665m70.43-.329c-6.095-1.609-2.058 24.835 2.901 22.666 5.455-4.322 7.211-16.978-2.901-22.666m-20.44-19.73c10.517-1.75 19.268 4.405 18.915 15.639-.346 4.306-22.79-14.998-18.915-15.64m-29.059-.329c-10.519-1.75-19.27 4.407-18.916 15.64.346 4.306 22.79-14.999 18.916-15.64m14.489-2.62c-6.277-.16-12.301 4.59-12.316 7.344-.017 3.348 4.963 6.775 12.36 6.862 7.552.053 12.371-2.743 12.396-6.198.027-3.914-6.87-8.068-12.44-8.008m.485 68.645c5.473-.236 12.817 1.736 12.831 4.351.091 2.54-6.66 8.278-13.194 8.168-6.767.287-13.402-5.46-13.315-7.452-.101-2.921 8.24-5.201 13.678-5.067M44.459 91.3c3.896 4.625 5.672 12.748 2.421 15.142-3.076 1.829-10.547 1.076-15.858-6.438-3.58-6.304-3.119-12.72-.604-14.605 3.76-2.256 9.57.791 14.04 5.901m39.232-1.465c-4.217 4.864-6.565 13.735-3.489 16.592 2.94 2.22 10.834 1.91 16.666-6.06 4.234-5.352 2.815-14.29.397-16.664-3.593-2.738-8.75.765-13.575 6.13v.002"
fill="#c51850"></path>
</svg>
<svg viewBox="0 0 128 128">
<path fill="#6181B6"
d="M64 33.039C30.26 33.039 2.906 46.901 2.906 64S30.26 94.961 64 94.961 125.094 81.099 125.094 64 97.74 33.039 64 33.039zM48.103 70.032c-1.458 1.364-3.077 1.927-4.86 2.507-1.783.581-4.052.461-6.811.461h-6.253l-1.733 10h-7.301l6.515-34H41.7c4.224 0 7.305 1.215 9.242 3.432 1.937 2.217 2.519 5.364 1.747 9.337-.319 1.637-.856 3.159-1.614 4.515a15.118 15.118 0 01-2.972 3.748zM69.414 73l2.881-14.42c.328-1.688.208-2.942-.361-3.555-.57-.614-1.782-1.025-3.635-1.025h-5.79l-3.731 19h-7.244l6.515-33h7.244l-1.732 9h6.453c4.061 0 6.861.815 8.402 2.231s2.003 3.356 1.387 6.528L76.772 73h-7.358zm40.259-11.178c-.318 1.637-.856 3.133-1.613 4.488-.758 1.357-1.748 2.598-2.971 3.722-1.458 1.364-3.078 1.927-4.86 2.507-1.782.581-4.053.461-6.812.461h-6.253l-1.732 10h-7.301l6.514-34h14.041c4.224 0 7.305 1.215 9.241 3.432 1.935 2.217 2.518 5.418 1.746 9.39zM95.919 54h-5.001l-2.727 14h4.442c2.942 0 5.136-.29 6.576-1.4 1.442-1.108 2.413-2.828 2.918-5.421.484-2.491.264-4.434-.66-5.458-.925-1.024-2.774-1.721-5.548-1.721zm-56.985 0h-5.002l-2.727 14h4.441c2.943 0 5.136-.29 6.577-1.4 1.441-1.108 2.413-2.828 2.917-5.421.484-2.491.264-4.434-.66-5.458S41.708 54 38.934 54z">
</path>
</svg>
<!-- PYTHON -->
<svg viewBox="0 0 128 128">
<g fill-rule="evenodd" clip-rule="evenodd">
<path fill="#386f9f"
d="M51.834 23.017c3.756 0 7.512.058 11.263-.04.995-.026 2.78.797 2.7-1.271-.061-1.683-1.622-1.074-2.568-1.089-4.237-.067-8.488-.228-12.708.037-3.003.187-3.888-.953-3.511-3.707.13-.95.005-1.934.025-2.902.132-6.446 1.69-8.64 7.942-10.23 6.888-1.75 13.937-1.692 20.806-.184 6.175 1.356 8.74 6.16 8.428 10.604-.38 5.423-.086 10.893-.091 16.343-.009 6.853-3.55 10.49-10.459 10.585-5.69.078-11.387.14-17.074-.018-6.778-.19-11.75 5.44-11.784 11.82 0 .484.083.984-.013 1.451-.488 2.343 1.462 6.13-1.022 6.826-3.78 1.062-8.206 1.062-11.54-2.311-1.13-1.14-2.082-2.417-2.584-3.893-2.679-7.865-3.102-15.83-.58-23.818 1.572-4.986 5.848-8.087 11.145-8.176 3.874-.065 7.749-.013 11.623-.013l.002-.014zm6.902-11.12c-.162-1.903-1.185-3.292-3.296-3.35-2.309-.06-3.502 1.336-3.505 3.608-.002 2.106 1.145 3.455 3.241 3.516 2.303.067 3.418-1.36 3.56-3.774z">
</path>
<path fill="#ffcf46"
d="M80.824 61.572c-4.24 0-8.482-.037-12.722.03-.955.012-2.557-.592-2.607 1.041-.056 1.852 1.663 1.37 2.755 1.381 4.24.053 8.484.098 12.723-.02 2.178-.06 3.067.357 3.23 2.925.737 11.625-4.308 12.63-13.613 14.745-5.338 1.213-11.061.57-16.325-1.788-4.353-1.947-7.024-4.753-6.687-10.007.334-5.186.39-10.439-.009-15.62-.48-6.253 3.41-10.852 10.975-10.854 5.09-.001 10.214-.389 15.26.075 7.215.662 12.872-5.592 13.12-12.864.01-.241-.052-.5.01-.724.636-2.235-1.626-5.557 1.4-6.686 4.573-1.705 9.73.087 12.066 3.557 2.945 4.369 3.343 9.51 3.819 14.53.515 5.411-1.003 10.505-3.276 15.386-1.544 3.31-4.14 4.91-7.757 4.915-4.12.003-8.239 0-12.36 0-.002-.008-.002-.015-.002-.022zm-1.104 10.8c-.453-2.066-1.385-3.476-3.785-3.535-2.496-.06-3.14 1.807-3.127 3.474.014 1.772.508 3.952 3.21 3.748 2.246-.172 3.341-1.563 3.702-3.687z">
</path>
<path fill="#386f9f"
d="M14.129 114.849c0 2.582.117 5-.055 7.397-.074 1.034 1.066 2.98-1.103 2.978-1.912 0-2.403-1.522-2.342-3.361.117-3.51.034-7.027.034-10.54v-7.998c0-4.82 1.293-6.452 5.903-7.45 4.286-.932 7.654.511 9.386 4.263 1.732 3.753 1.866 7.62.133 11.438-1.708 3.762-4.854 5.166-8.884 4.051-.918-.25-1.845-.467-3.072-.778zm0-9.448c0 1.33.18 2.686-.037 3.98-.502 2.991 1.408 3.728 3.66 4.26 2.227.526 3.754-.421 4.647-2.383 1.501-3.29 1.753-6.683.613-10.162-1.012-3.092-3.349-3.454-6.077-3.07-2.694.383-3.059 2.215-2.824 4.48.1.955.018 1.93.018 2.895zM43.116 114.689c-1.845.48-3.447.992-5.087 1.3-3.59.671-6.248-1.3-7.183-4.894-1.16-4.448-.178-8.879-.148-13.317.013-2.023 1.885-1.234 3.18-2.318 0 4.75.018 8.85-.006 12.947-.013 2.058.519 3.75 2.465 4.835 2.148 1.198 3.91.057 5.78-.712 1.34-.551 1.173-1.676 1.175-2.746.01-3.872-.001-7.74.012-11.612.002-.955-.097-2.122 1.313-2.075 1.257.041 1.804.788 1.783 2.158-.091 6.407.09 12.823-.17 19.221-.197 4.838-3.61 7.793-8.52 8.01-.735.031-1.505.099-1.78-.813-.419-1.404.718-1.139 1.465-1.378 5.401-1.718 6.107-2.744 5.721-8.606zM65.94 98.064c1.429-.675 2.25-1.293 3.153-1.46 5.067-.937 8.95-.58 8.94 6.245-.007 3.515.002 7.031-.007 10.545-.002.984.061 1.942-1.406 2.027-1.547.092-1.887-.793-1.88-2.006.018-3.387.11-6.774.107-10.16-.002-2.63-.539-4.958-3.884-4.95-2.934.005-5.012 2.195-5.027 5.217a899.58 899.58 0 00.003 9.814c.003 1.162.028 2.181-1.652 2.085-1.513-.09-1.327-1.11-1.327-2.049-.01-8.6.032-17.209-.041-25.815-.013-1.508.582-2.444 1.92-2.508 1.888-.087 1.023 1.564 1.051 2.392.123 3.371.05 6.75.05 10.623zM81.93 105.775c-.191-6.715 2.994-10.3 8.76-10.092 2.894.106 5.065 1.39 6.466 3.89 2.475 4.422 2.14 8.846-.538 12.987-1.84 2.844-4.67 4.185-8.12 3.453-3.402-.72-6.066-3.783-6.548-7.353-.128-.945-.02-1.924-.02-2.885zm13.32.157c-.152-1.172-.125-2.806-.613-4.264-.667-2-1.883-3.61-4.364-3.72-2.503-.108-3.752 1.355-4.587 3.38-1.311 3.179-1.226 6.371.194 9.493.912 2.011 2.32 3.483 4.76 3.075 2.403-.401 3.821-1.976 4.312-4.313.223-1.059.187-2.168.298-3.65zM102.257 106.827c0-1.212-.023-2.422.004-3.628.056-2.325-.685-4.901 2.45-6.089 3.59-1.356 7.148-2.372 10.762-.273 1.352.786 1.85 2.214 1.864 3.73.037 4.231-.019 8.464.038 12.695.02 1.476-.368 2.214-2.027 2.174-1.818-.043-1.435-1.283-1.423-2.273.043-3.38.278-6.757.214-10.132-.084-4.25-2.416-5.983-6.389-4.94-1.648.434-2.678 1.234-2.597 3.274.161 3.982.037 7.978.052 11.967.004 1.156.021 2.18-1.647 2.083-1.528-.088-1.278-1.145-1.29-2.062-.028-2.176-.008-4.353-.011-6.526zM58.689 97.403c-.25.296-.46.76-.68.764-3.964.055-2.864 3.014-2.966 5.209-.097 2.045 0 4.1-.029 6.151-.03 2.038.147 3.932 2.627 4.473.711.154 1.035.564.887 1.274-.163.784-.788.753-1.407.745-2.85-.05-4.963-2.065-5.047-5.015-.086-3.014.031-6.035-.04-9.046-.037-1.43.706-3.255-1.6-3.822-.253-.061-.343-.778-.508-1.187 3.076-.965 1.8-3.618 2.222-5.631.2-.953 1.105-1.214 1.96-1.295.865-.082.872.618.9 1.203.114 2.32-1.087 5.425 3.184 5.256.143-.005.31.562.497.92z">
</path>
</g>
</svg>
<!-- VS -->
<svg viewBox="0 0 128 128">
<path fill="#68217a"
d="M95 2.3l30.5 12.3v98.7l-30.7 12.4-49-48.7-31 24.1-12.3-6.2V33.1l12.3-5.9 31 24.3zM14.8 45.7v37.5l18.5-19zm48.1 18.5l31.9 25.1V39z">
</path>
</svg>
<!-- UBUNTU -->
<svg viewBox="0 0 128 128">
<path fill="#DD4814"
d="M64.02 1.596c-24.36 0-44.107 19.747-44.107 44.107 0 24.356 19.747 44.105 44.107 44.105 24.359 0 44.106-19.749 44.106-44.105 0-24.36-19.747-44.107-44.106-44.107zm9.896 15.19a5.887 5.887 0 1110.199 5.88 5.887 5.887 0 01-10.199-5.88zm-9.896 3.335c2.368 0 4.658.328 6.834.929a8.244 8.244 0 004.027 5.839 8.254 8.254 0 007.06.572c4.354 4.282 7.188 10.105 7.602 16.592l-8.392.123c-.774-8.786-8.146-15.675-17.131-15.675-2.589 0-5.044.575-7.246 1.6l-4.092-7.333a25.484 25.484 0 0111.338-2.647zm-29.992 31.47a5.89 5.89 0 11-.001-11.779 5.89 5.89 0 01.001 11.779zm5.222.524a8.261 8.261 0 003.048-6.413 8.264 8.264 0 00-3.048-6.415c1.593-6.163 5.426-11.425 10.578-14.87l4.305 7.211c-4.423 3.112-7.313 8.254-7.313 14.074 0 5.818 2.89 10.959 7.313 14.07l-4.305 7.213c-5.154-3.443-8.988-8.705-10.578-14.87zm42.709 24.658a5.884 5.884 0 01-8.041-2.156 5.887 5.887 0 118.041 2.156zm-.018-12.831a8.252 8.252 0 00-7.06.572 8.254 8.254 0 00-4.027 5.839 25.59 25.59 0 01-6.834.931c-4.071 0-7.919-.957-11.337-2.649l4.092-7.332a17.138 17.138 0 007.246 1.6c8.985 0 16.357-6.888 17.13-15.676l8.393.123c-.414 6.487-3.248 12.31-7.603 16.592zM16 121.659c-1 .055-.509.103-.823.144-.315.042-.738.082-1.122.123-.384.042-.832.076-1.271.103-.439.028-.882.042-1.293.042-1.947 0-3.383-.562-4.206-1.687C6.462 119.26 6 117.394 6 114.789V104H3v11.612c0 1.454-.22 2.777.082 3.969.302 1.192.61 2.228 1.295 3.105.685.878 1.498 1.556 2.623 2.037 1.123.478 2.462.719 4.107.719 1.893 0 3.269-.123 4.708-.37 1.439-.246 2.184-.48 3.184-.699V104h-3v17.659zm25.376-15.426a8.505 8.505 0 00-3.023-2.303c-1.193-.548-2.557-.823-4.093-.823-1.233 0-2.26.164-3.206.494-.946.329-1.054.645-2.054.945V93.071l-4 .659v30.644c0 .247 2.025.494 3.396.74 1.372.247 2.96.37 4.742.37 1.646 0 3.133-.262 4.449-.782 1.316-.521 2.442-1.261 3.375-2.221.932-.96 1.653-2.132 2.161-3.516.507-1.386.762-2.943.762-4.67 0-1.645-.213-3.153-.638-4.524-.425-1.371-1.048-2.55-1.871-3.538zm-3.331 13.841c-1.234 1.358-2.879 2.037-4.937 2.037-1.042 0-1.848-.048-2.548-.144-.699-.096-.561-.199-1.561-.309v-13.534c1-.384 1.073-.754 1.951-1.11.878-.356 1.805-.535 2.849-.535 1.096 0 2.02.199 2.801.596a5.164 5.164 0 011.905 1.646c.493.699.845 1.529 1.065 2.489.22.961.327 1.989.327 3.085 0 2.497-.619 4.422-1.852 5.779zM61 121.659c0 .055-.161.103-.476.144-.315.042-.563.082-.947.123-.384.042-.745.076-1.183.103-.438.028-.838.042-1.249.042-1.948 0-3.209-.562-4.032-1.687-.823-1.124-1.113-2.99-1.113-5.595V104h-4v11.612c0 1.454.129 2.776.431 3.969.302 1.192.785 2.228 1.471 3.105.685.878 1.584 1.556 2.709 2.037 1.125.478 2.507.719 4.153.719 1.892 0 3.439-.123 4.879-.37 1.439-.246 2.357-.48 3.357-.699V104h-4v17.659zm25.19-15.775c-.673-.864-1.57-1.535-2.694-2.015-1.125-.479-2.537-.72-4.237-.72-1.892 0-3.937.123-5.39.37-1.455.247-2.869.48-3.869.7V124h4v-17.067l.964-.123c.314-.055.813-.103 1.211-.145.397-.041.887-.076 1.326-.103a21.91 21.91 0 011.311-.041c1.014 0 1.882.13 2.567.391.687.26 1.244.679 1.655 1.254.412.575.613 1.329.792 2.262.177.932.174 2.057.174 3.372V124h4v-11.021c0-1.453-.127-2.783-.401-3.991-.275-1.205-.738-2.24-1.409-3.104zm17.419 15.795c-.685.26-1.618.391-2.797.391-.658 0-1.234-.083-1.727-.247a2.654 2.654 0 01-1.234-.843c-.329-.398-1.008-.945-1.172-1.646-.165-.699-.679-1.584-.679-2.652V107h9v-3h-9v-7.022l-3 .659v19.085c0 1.427.135 2.681.368 3.764.233 1.084.647 1.995 1.223 2.736.576.74 1.341 1.295 2.288 1.665.946.371 2.148.556 3.603.556 1.234 0 2.338-.151 3.312-.453s1.652-.547 2.037-.74l-.821-3.127c-.249.11-.716.295-1.401.556zM122 104v17.659c0 .055-.387.103-.701.144-.315.042-.678.082-1.061.123-.384.042-.801.076-1.239.103-.439.028-.867.042-1.278.042-1.947 0-3.498-.562-4.32-1.687-.823-1.124-1.4-2.989-1.4-5.595V104h-3v11.612c0 1.454-.098 2.776.205 3.969.301 1.192.67 2.228 1.356 3.105a6.514 6.514 0 002.652 2.037c1.125.478 2.479.719 4.124.719 1.893 0 3.153-.123 4.593-.37 1.439-.246 2.05-.48 3.07-.699V104H122z">
</path>
</svg>
<svg viewBox="0 0 128 128">
<path fill="#00618A"
d="M2.001 90.458h4.108V74.235l6.36 14.143c.75 1.712 1.777 2.317 3.792 2.317s3.003-.605 3.753-2.317l6.36-14.143v16.223h4.108V74.262c0-1.58-.632-2.345-1.936-2.739-3.121-.974-5.215-.131-6.163 1.976l-6.241 13.958-6.043-13.959c-.909-2.106-3.042-2.949-6.163-1.976C2.632 71.917 2 72.681 2 74.261v16.197zm31.898-13.206h4.107v8.938c-.038.485.156 1.625 2.406 1.661 1.148.018 8.862 0 8.934 0V77.208h4.117c.019 0-.004 14.514-.004 14.574.022 3.58-4.441 4.357-6.499 4.417H33.988v-2.764c.022 0 12.963.003 12.995-.001 2.645-.279 2.332-1.593 2.331-2.035v-1.078h-8.731c-4.062-.037-6.65-1.81-6.683-3.85-.002-.187.089-9.129-.001-9.219z">
</path>
<path fill="#E48E00"
d="M56.63 90.458h11.812c1.383 0 2.727-.289 3.793-.789 1.777-.816 2.646-1.922 2.646-3.372v-3.002c0-1.185-.987-2.292-2.923-3.028-1.027-.396-2.292-.605-3.517-.605h-4.978c-1.659 0-2.449-.5-2.646-1.606-.039-.132-.039-.237-.039-.369v-1.87c0-.105 0-.211.039-.342.197-.843.632-1.08 2.094-1.212l.395-.026h11.733v-2.738H63.504c-1.659 0-2.528.105-3.318.342-2.449.764-3.517 1.975-3.517 4.082v2.396c0 1.844 2.095 3.424 5.61 3.793.396.025.79.053 1.185.053h4.267c.158 0 .316 0 .435.025 1.304.105 1.856.343 2.252.816a.98.98 0 01.315.737v2.397c0 .289-.197.658-.592.974-.355.316-.948.527-1.738.58l-.435.026H56.63v2.738zm43.881-4.766c0 2.817 2.094 4.397 6.32 4.714.395.026.79.052 1.185.052h10.706V87.72h-10.784c-2.41 0-3.318-.606-3.318-2.055V71.497h-4.108v14.195zm-23.008.142v-9.765c0-2.48 1.742-3.985 5.186-4.46a7.8 7.8 0 011.108-.079h7.799c.396 0 .752.026 1.147.079 3.444.475 5.187 1.979 5.187 4.46v9.765c0 2.014-.74 3.09-2.445 3.792l4.048 3.653h-4.771l-3.274-2.956-3.296.209h-4.395a9.075 9.075 0 01-2.414-.343c-2.613-.712-3.88-2.085-3.88-4.355zm4.434-.237c0 .132.039.265.079.423.237 1.135 1.307 1.768 2.929 1.768h3.732l-3.428-3.095h4.771l2.989 2.7c.552-.295.914-.743 1.041-1.32.039-.132.039-.264.039-.396v-9.368c0-.105 0-.238-.039-.37-.238-1.056-1.307-1.662-2.89-1.662h-6.216c-1.82 0-3.008.792-3.008 2.032v9.288z">
</path>
<path fill="#00618A"
d="M122.336 66.952c-2.525-.069-4.454.166-6.104.861-.469.198-1.216.203-1.292.79.257.271.297.674.502 1.006.394.637 1.059 1.491 1.652 1.938.647.489 1.315 1.013 2.011 1.437 1.235.754 2.615 1.184 3.806 1.938.701.446 1.397 1.006 2.082 1.509.339.247.565.634 1.006.789v-.071c-.231-.294-.291-.698-.503-1.006l-.934-.934c-.913-1.212-2.071-2.275-3.304-3.159-.982-.705-3.18-1.658-3.59-2.801l-.072-.071c.696-.079 1.512-.331 2.154-.503 1.08-.29 2.045-.215 3.16-.503l1.508-.432v-.286c-.563-.578-.966-1.344-1.58-1.867-1.607-1.369-3.363-2.737-5.17-3.879-1.002-.632-2.241-1.043-3.304-1.579-.356-.181-.984-.274-1.221-.575-.559-.711-.862-1.612-1.293-2.441a93.068 93.068 0 01-2.585-5.458c-.544-1.245-.9-2.473-1.579-3.59-3.261-5.361-6.771-8.597-12.208-11.777-1.157-.677-2.55-.943-4.021-1.292l-2.37-.144c-.481-.201-.983-.791-1.436-1.077-1.802-1.138-6.422-3.613-7.756-.358-.842 2.054 1.26 4.058 2.011 5.099.527.73 1.203 1.548 1.58 2.369.248.54.29 1.081.503 1.652.521 1.406.976 2.937 1.651 4.236.341.658.718 1.351 1.149 1.939.264.36.718.52.789 1.077-.443.62-.469 1.584-.718 2.369-1.122 3.539-.699 7.938.934 10.557.501.805 1.681 2.529 3.303 1.867 1.419-.578 1.103-2.369 1.509-3.95.092-.357.035-.621.215-.861v.072l1.293 2.585c.957 1.541 2.654 3.15 4.093 4.237.746.563 1.334 1.538 2.298 1.867v-.073h-.071c-.188-.291-.479-.411-.719-.646-.562-.551-1.187-1.235-1.651-1.867-1.309-1.776-2.465-3.721-3.519-5.745-.503-.966-.94-2.032-1.364-3.016-.164-.379-.162-.953-.502-1.148-.466.72-1.149 1.303-1.509 2.154-.574 1.36-.648 3.019-.861 4.739l-.144.071c-1.001-.241-1.352-1.271-1.724-2.154-.94-2.233-1.115-5.83-.287-8.401.214-.666 1.181-2.761.789-3.376-.187-.613-.804-.967-1.148-1.437a11.222 11.222 0 01-1.149-2.011c-.77-1.741-1.129-3.696-1.938-5.457-.388-.842-1.042-1.693-1.58-2.441-.595-.83-1.262-1.44-1.724-2.442-.164-.356-.387-.927-.144-1.293.077-.247.188-.35.432-.431.416-.321 1.576.107 2.01.287 1.152.479 2.113.934 3.089 1.58.468.311.941.911 1.508 1.077h.646c1.011.232 2.144.071 3.088.358 1.67.508 3.166 1.297 4.524 2.155 4.139 2.614 7.522 6.334 9.838 10.772.372.715.534 1.396.861 2.154.662 1.528 1.496 3.101 2.154 4.596.657 1.491 1.298 2.996 2.227 4.237.488.652 2.374 1.002 3.231 1.364.601.254 1.585.519 2.154.861 1.087.656 2.141 1.437 3.16 2.155.509.362 2.076 1.149 2.154 1.798zM90.237 39.593a5.124 5.124 0 00-1.293.144v.071h.072c.251.517.694.849 1.005 1.293l.719 1.508.071-.071c.445-.313.648-.814.646-1.58-.179-.188-.205-.423-.359-.646-.204-.3-.602-.468-.861-.719z">
</path>
</svg>
<!-- NPM -->
<svg viewBox="0 0 128 128">
<path fill="#cb3837"
d="M2 38.5h124v43.71H64v7.29H36.44v-7.29H2zm6.89 36.43h13.78V53.07h6.89v21.86h6.89V45.79H8.89zm34.44-29.14v36.42h13.78v-7.28h13.78V45.79zm13.78 7.29H64v14.56h-6.89zm20.67-7.29v29.14h13.78V53.07h6.89v21.86h6.89V53.07h6.89v21.86h6.89V45.79z">
</path>
</svg>
<svg viewBox="0 0 128 128">
<path fill="#9B4F96"
d="M115.4 30.7L67.1 2.9c-.8-.5-1.9-.7-3.1-.7-1.2 0-2.3.3-3.1.7l-48 27.9c-1.7 1-2.9 3.5-2.9 5.4v55.7c0 1.1.2 2.4 1 3.5l106.8-62c-.6-1.2-1.5-2.1-2.4-2.7z">
</path>
<path fill="#68217A"
d="M10.7 95.3c.5.8 1.2 1.5 1.9 1.9l48.2 27.9c.8.5 1.9.7 3.1.7 1.2 0 2.3-.3 3.1-.7l48-27.9c1.7-1 2.9-3.5 2.9-5.4V36.1c0-.9-.1-1.9-.6-2.8l-106.6 62z">
</path>
<path fill="#fff"
d="M85.3 76.1C81.1 83.5 73.1 88.5 64 88.5c-13.5 0-24.5-11-24.5-24.5s11-24.5 24.5-24.5c9.1 0 17.1 5 21.3 12.5l13-7.5c-6.8-11.9-19.6-20-34.3-20-21.8 0-39.5 17.7-39.5 39.5s17.7 39.5 39.5 39.5c14.6 0 27.4-8 34.2-19.8l-12.9-7.6zM97 66.2l.9-4.3h-4.2v-4.7h5.1L100 51h4.9l-1.2 6.1h3.8l1.2-6.1h4.8l-1.2 6.1h2.4v4.7h-3.3l-.9 4.3h4.2v4.7h-5.1l-1.2 6h-4.9l1.2-6h-3.8l-1.2 6h-4.8l1.2-6h-2.4v-4.7H97zm4.8 0h3.8l.9-4.3h-3.8l-.9 4.3z">
</path>
</svg>
<svg viewBox="0 0 128 128">
<path fill="#0074BD"
d="M52.581 67.817s-3.284 1.911 2.341 2.557c6.814.778 10.297.666 17.805-.753 0 0 1.979 1.237 4.735 2.309-16.836 7.213-38.104-.418-24.881-4.113zm-2.059-9.415s-3.684 2.729 1.945 3.311c7.28.751 13.027.813 22.979-1.103 0 0 1.373 1.396 3.536 2.157-20.352 5.954-43.021.469-28.46-4.365z">
</path>
<path fill="#EA2D2E"
d="M67.865 42.431c4.151 4.778-1.088 9.074-1.088 9.074s10.533-5.437 5.696-12.248c-4.519-6.349-7.982-9.502 10.771-20.378.001 0-29.438 7.35-15.379 23.552z">
</path>
<path fill="#0074BD"
d="M90.132 74.781s2.432 2.005-2.678 3.555c-9.716 2.943-40.444 3.831-48.979.117-3.066-1.335 2.687-3.187 4.496-3.576 1.887-.409 2.965-.334 2.965-.334-3.412-2.403-22.055 4.719-9.469 6.762 34.324 5.563 62.567-2.506 53.665-6.524zm-35.97-26.134s-15.629 3.713-5.534 5.063c4.264.57 12.758.439 20.676-.225 6.469-.543 12.961-1.704 12.961-1.704s-2.279.978-3.93 2.104c-15.874 4.175-46.533 2.23-37.706-2.038 7.463-3.611 13.533-3.2 13.533-3.2zM82.2 64.317c16.135-8.382 8.674-16.438 3.467-15.353-1.273.266-1.845.496-1.845.496s.475-.744 1.378-1.063c10.302-3.62 18.223 10.681-3.322 16.345 0 0 .247-.224.322-.425z">
</path>
<path fill="#EA2D2E"
d="M72.474 1.313s8.935 8.939-8.476 22.682c-13.962 11.027-3.184 17.313-.006 24.498-8.15-7.354-14.128-13.828-10.118-19.852 5.889-8.842 22.204-13.131 18.6-27.328z">
</path>
<path fill="#0074BD"
d="M55.749 87.039c15.484.99 39.269-.551 39.832-7.878 0 0-1.082 2.777-12.799 4.981-13.218 2.488-29.523 2.199-39.191.603 0 0 1.98 1.64 12.158 2.294z">
</path>
<path fill="#EA2D2E"
d="M94.866 100.181h-.472v-.264h1.27v.264h-.47v1.317h-.329l.001-1.317zm2.535.066h-.006l-.468 1.251h-.216l-.465-1.251h-.005v1.251h-.312v-1.581h.457l.431 1.119.432-1.119h.454v1.581h-.302v-1.251zm-44.19 14.79c-1.46 1.266-3.004 1.978-4.391 1.978-1.974 0-3.045-1.186-3.045-3.085 0-2.055 1.146-3.56 5.738-3.56h1.697v4.667h.001zm4.031 4.548v-14.077c0-3.599-2.053-5.973-6.997-5.973-2.886 0-5.416.714-7.473 1.622l.592 2.493c1.62-.595 3.715-1.147 5.771-1.147 2.85 0 4.075 1.147 4.075 3.521v1.779h-1.424c-6.921 0-10.044 2.685-10.044 6.723 0 3.479 2.058 5.456 5.933 5.456 2.49 0 4.351-1.028 6.088-2.533l.316 2.137h3.163v-.001zm13.452 0h-5.027l-6.051-19.689h4.391l3.756 12.099.835 3.635c1.896-5.258 3.24-10.596 3.912-15.733h4.271c-1.143 6.481-3.203 13.598-6.087 19.688zm19.288-4.548c-1.465 1.266-3.01 1.978-4.392 1.978-1.976 0-3.046-1.186-3.046-3.085 0-2.055 1.149-3.56 5.736-3.56h1.701v4.667h.001zm4.033 4.548v-14.077c0-3.599-2.059-5.973-6.999-5.973-2.889 0-5.418.714-7.475 1.622l.593 2.493c1.62-.595 3.718-1.147 5.774-1.147 2.846 0 4.074 1.147 4.074 3.521v1.779h-1.424c-6.923 0-10.045 2.685-10.045 6.723 0 3.479 2.056 5.456 5.93 5.456 2.491 0 4.349-1.028 6.091-2.533l.318 2.137h3.163v-.001zm-56.693 3.346c-1.147 1.679-3.005 3.008-5.037 3.757l-1.989-2.345c1.547-.794 2.872-2.075 3.489-3.269.532-1.063.753-2.43.753-5.701V92.891h4.284v22.173c0 4.375-.348 6.144-1.5 7.867z">
</path>
</svg>
<svg viewBox="0 0 128 128">
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FAA625"
d="M1 1v125.792c1 .082.99.235 1.359.235 36.269.011 72.665.011 108.934.011 4.994 0 9.859.004 14.854-.011.328-.001.854-.153.854-.235L127 1H1zm114 62.914v48.551c0 1.688-.253 1.535-1.88 1.535H15.771c-1.627 0-1.771.154-1.771-1.534V15.24c0-1.689.144-2.24 1.894-2.24h97.103c1.751 0 2.003.551 2.003 2.363v48.551zM64.414 40.368c-.214-.662-.612-.696-1.193-.693-3.114.019-6.229.069-9.341 0-.984-.021-1.411.274-1.715 1.233-4.385 13.785-8.817 27.561-13.233 41.336-.72 2.246-1.417 4.501-2.185 6.939 2.911 0 5.571-.04 8.229.026.903.022 1.279-.275 1.525-1.126 1.138-3.924 2.37-7.821 3.497-11.748.265-.926.694-1.176 1.625-1.165 4.424.052 8.85.052 13.274 0 .861-.01 1.211.268 1.455 1.062 1.213 3.949 2.502 7.874 3.714 11.823.251.816.566 1.13 1.507 1.062a54.147 54.147 0 013.93-.117h4.592l-.021-.331c-5.222-16.107-10.451-32.19-15.66-48.301zM52.001 68c2.037-7 4.059-13.848 6.051-20.644C60.105 54.128 62.193 61 64.312 68H52.001zM82 89h10V53H82v36zm5.071-50.445c-2.963.003-5.151 2.107-5.131 4.936.02 2.837 2.122 4.857 5.057 4.862 3.051.004 5.208-2.015 5.187-4.856-.022-2.91-2.127-4.945-5.113-4.942z">
</path>
</svg>
<svg viewBox="0 0 128 128">
<path fill="#fff"
d="M44.59 4.21a63.28 63.28 0 004.33 120.9 67.6 67.6 0 0032.36.35 57.13 57.13 0 0025.9-13.46 57.44 57.44 0 0016-26.26 74.33 74.33 0 001.61-33.58H65.27v24.69h34.47a29.72 29.72 0 01-12.66 19.52 36.16 36.16 0 01-13.93 5.5 41.29 41.29 0 01-15.1 0A37.16 37.16 0 0144 95.74a39.3 39.3 0 01-14.5-19.42 38.31 38.31 0 010-24.63 39.25 39.25 0 019.18-14.91A37.17 37.17 0 0176.13 27a34.28 34.28 0 0113.64 8q5.83-5.8 11.64-11.63c2-2.09 4.18-4.08 6.15-6.22A61.22 61.22 0 0087.2 4.59a64 64 0 00-42.61-.38z">
</path>
<path fill="#e33629"
d="M44.59 4.21a64 64 0 0142.61.37 61.22 61.22 0 0120.35 12.62c-2 2.14-4.11 4.14-6.15 6.22Q95.58 29.23 89.77 35a34.28 34.28 0 00-13.64-8 37.17 37.17 0 00-37.46 9.74 39.25 39.25 0 00-9.18 14.91L8.76 35.6A63.53 63.53 0 0144.59 4.21z">
</path>
<path fill="#f8bd00"
d="M3.26 51.5a62.93 62.93 0 015.5-15.9l20.73 16.09a38.31 38.31 0 000 24.63q-10.36 8-20.73 16.08a63.33 63.33 0 01-5.5-40.9z">
</path>
<path fill="#587dbd"
d="M65.27 52.15h59.52a74.33 74.33 0 01-1.61 33.58 57.44 57.44 0 01-16 26.26c-6.69-5.22-13.41-10.4-20.1-15.62a29.72 29.72 0 0012.66-19.54H65.27c-.01-8.22 0-16.45 0-24.68z">
</path>
<path fill="#319f43"
d="M8.75 92.4q10.37-8 20.73-16.08A39.3 39.3 0 0044 95.74a37.16 37.16 0 0014.08 6.08 41.29 41.29 0 0015.1 0 36.16 36.16 0 0013.93-5.5c6.69 5.22 13.41 10.4 20.1 15.62a57.13 57.13 0 01-25.9 13.47 67.6 67.6 0 01-32.36-.35 63 63 0 01-23-11.59A63.73 63.73 0 018.75 92.4z">
</path>
</svg>
<svg viewBox="0 0 128 128">
<path fill="#F0DB4F"
d="M2 1v125h125V1H2zm66.119 106.513c-1.845 3.749-5.367 6.212-9.448 7.401-6.271 1.44-12.269.619-16.731-2.059-2.986-1.832-5.318-4.652-6.901-7.901l9.52-5.83c.083.035.333.487.667 1.071 1.214 2.034 2.261 3.474 4.319 4.485 2.022.69 6.461 1.131 8.175-2.427 1.047-1.81.714-7.628.714-14.065C58.433 78.073 58.48 68 58.48 58h11.709c0 11 .06 21.418 0 32.152.025 6.58.596 12.446-2.07 17.361zm48.574-3.308c-4.07 13.922-26.762 14.374-35.83 5.176-1.916-2.165-3.117-3.296-4.26-5.795 4.819-2.772 4.819-2.772 9.508-5.485 2.547 3.915 4.902 6.068 9.139 6.949 5.748.702 11.531-1.273 10.234-7.378-1.333-4.986-11.77-6.199-18.873-11.531-7.211-4.843-8.901-16.611-2.975-23.335 1.975-2.487 5.343-4.343 8.877-5.235l3.688-.477c7.081-.143 11.507 1.727 14.756 5.355.904.916 1.642 1.904 3.022 4.045-3.772 2.404-3.76 2.381-9.163 5.879-1.154-2.486-3.069-4.046-5.093-4.724-3.142-.952-7.104.083-7.926 3.403-.285 1.023-.226 1.975.227 3.665 1.273 2.903 5.545 4.165 9.377 5.926 11.031 4.474 14.756 9.271 15.672 14.981.882 4.916-.213 8.105-.38 8.581z">
</path>
</svg>
<svg viewBox="0 0 128 128">
<path fill="#DD80BC"
d="M126.2.7H2.1C1.7.7 1 .9 1 1v126h126V1c0-.1-.4-.3-.8-.3zm-12.7 114H15.6c-1.6 0-1.6 0-1.6-1.6V15.2c0-1.6 0-1.2 1.6-1.2h97.8c1.6 0 1.6-.4 1.6 1.3v97.8c0 1.2-.3 1.6-1.5 1.6zM76.7 87.9c5.6 1.6 11.2.8 16.8.1 1.2-.1 1.4-.8 1.4-2V39.8h-7.5v17.8c-4.2-.4-8-.3-11.7 1.3-6 2.5-9 8.1-8.7 16.1.2 6.5 3.7 11.2 9.7 12.9zM77.9 66c2.8-1.6 5.7-1.5 8.6-1.1.2 0 .6.5.6.8v16.1c-2.7.5-5.3.7-7.8 0-3.2-.9-5-3.3-5.4-6.9-.3-3.9 1.2-7.3 4-8.9zM44 88.1l8.1-17.5 7.8 17.5h8.9L57.1 63.3l11.8-23.6h-8.7l-8.4 16.4L45 39.8l-9.2-.1 10.8 24.9L35 88.1h9z">
</path>
</svg>
<svg viewBox="0 0 128 128">
<path
d="M3.656 45.043s-3.027-2.191.61-5.113l8.468-7.594s2.426-2.559 4.989-.328l78.175 59.328v28.45s-.039 4.468-5.757 3.976zm0 0"
fill="#2489ca"></path>
<path d="M23.809 63.379L3.656 81.742s-2.07 1.543 0 4.305l9.356 8.527s2.222 2.395 5.508-.328l21.359-16.238zm0 0"
fill="#1070b3"></path>
<path d="M59.184 63.531l36.953-28.285-.239-28.297S94.32.773 89.055 3.99L39.879 48.851zm0 0" fill="#0877b9"></path>
<path
d="M90.14 123.797c2.145 2.203 4.747 1.48 4.747 1.48l28.797-14.222c3.687-2.52 3.171-5.645 3.171-5.645V20.465c0-3.735-3.812-5.024-3.812-5.024L98.082 3.38c-5.453-3.379-9.027.61-9.027.61s4.593-3.317 6.843 2.96v112.317c0 .773-.164 1.53-.492 2.214-.656 1.332-2.086 2.57-5.504 2.051zm0 0"
fill="#3c99d4"></path>
</svg>
<!-- HTML -->
<svg viewBox="0 0 128 128">
<path fill="#E44D26"
d="M19.569 27l8.087 89.919 36.289 9.682 36.39-9.499L108.431 27H19.569zM91.61 47.471l-.507 5.834L90.88 56H48.311l1.017 12h40.54l-.271 2.231-2.615 28.909-.192 1.69L64 106.964v-.005l-.027.012-22.777-5.916L39.65 84h11.168l.791 8.46 12.385 3.139.006-.234v.012l12.412-2.649L77.708 79H39.153l-2.734-30.836L36.152 45h55.724l-.266 2.471zM27.956 1.627h5.622v5.556h5.144V1.627h5.623v16.822h-5.623v-5.633h-5.143v5.633h-5.623V1.627zm23.782 5.579h-4.95V1.627h15.525v5.579h-4.952v11.243h-5.623V7.206zm13.039-5.579h5.862l3.607 5.911 3.603-5.911h5.865v16.822h-5.601v-8.338l-3.867 5.981h-.098l-3.87-5.981v8.338h-5.502V1.627zm21.736 0h5.624v11.262h7.907v5.561H86.513V1.627z">
</path>
</svg>
<!-- CSS -->
<svg viewBox="0 0 128 128">
<path fill="#1572B6"
d="M19.67 26l8.069 90.493 36.206 10.05 36.307-10.063L108.33 26H19.67zm69.21 50.488L86.53 98.38l.009 1.875L64 106.55v.001l-.018.015-22.719-6.225L39.726 83h11.141l.79 8.766 12.347 3.295-.004.015v-.032l12.394-3.495L77.702 77H51.795l-.222-2.355-.506-5.647L50.802 66h27.886l1.014-11H37.229l-.223-2.589-.506-6.03L36.235 43h55.597l-.267 3.334-2.685 30.154M89 14.374L81.851 6H89V1H73v4.363L81.39 13H73v5h16zm-19 0L63.193 6H70V1H55v4.363L62.733 13H55v5h15zM52 13h-8V6h8V1H38v17h14z">
</path>
</svg>
</div>
</canvas>
<!-- Education Section -->
<section id="education" class="parallax-section">
<!-- Footer Section -->
<footer style="background: rgb(227, 227, 227);">
<p id="footer"></p>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
</div>
</div>
</div>
<div class="formFlex">
<form name="contactForm" action="/php/mail.php" method="post" data-netlify-recaptcha="true" data-netlify="true">
<div class="form">
<div class="top-bar">
<span></span>
<span></span>
<span></span>
</div>
<div class="title">Get in touch!</div>
<!-- <div class="subtitle">Let's create!</div> -->
<div class="input-container ic1">
<input name="name" required id="firstname" class="input" type="text" placeholder=" " />
<div class="cut"></div>
<label for="firstname" class="placeholder">Name</label>
</div>
<div class="input-container ic2">
<input name="email" required id="lastname" class="input" type="text" placeholder=" "/>
<div class="cut"></div>
<label for="lastname" class="placeholder">Email</label>
</div>
<div class="input-container ic2">
<input name="msg" required id="email" class="input" type="text" placeholder=" "/>
<div class="cut cut-short"></div>
<label for="email" class="placeholder">Message</label>
</div>
<!-- <button type="text" class="submit">Submit</button> -->
<button type="Submit" class="submit" id="submitButton" value="Send"> Submit </button>
<button type="reset" class="submit"> Clear </button>
<div data-netlify-recaptcha="true" style="padding-top: 20px;"></div>
</div>
</form>
</div>
<div class="col-md-12 col-sm-12">
<ul class="wow fadeInDown social-icon" data-wow-delay="0.5s">
<li><a href="https://www.linkedin.com/in/oudom-munint/" target="_blank" class="fa fa-linkedin-square"></a></li>
<li><a href="https://github.com/OudomMunint" target="_blank" class="fa fa-github"></a></li>
<li><a href="mailto:[email protected]" class="fa fa-envelope"></a></li>
<!-- <li><a href="https://codepen.io/Oudom-Munint" target="_blank" class="fa fa-codepen"></a></li> -->
</ul> <br><br>
</div>
</footer>
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="js/jquery.parallax.js"></script>
<!-- Bootstrap 3 -->
<script src="js/bootstrap.min.js"></script>
<!-- Bootstrap 5 -->
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> -->
<!-- Other Libraries -->
<script src="js/wow.min.js"></script>
<script src="https://unpkg.com/@triggerjs/[email protected]/dist/bundle.js" crossorigin="anonymous"></script>
<!-- <script src="js/custom.js"></script> -->
<!-- Main JS file -->
<script src="js/all.min.js"></script>
<!-- Web Vitals -->
<script src="https://unpkg.com/web-vitals@3/dist/web-vitals.iife.js"></script>
<script>
(function () {
var script = document.createElement('script');
script.src = 'https://unpkg.com/web-vitals@3/dist/web-vitals.iife.js';
script.onload = function () {
// When loading `web-vitals` using a classic script, all the public
// methods can be found on the `webVitals` global namespace.
webVitals.onCLS(console.log);
webVitals.onFID(console.log);
webVitals.onLCP(console.log);
};
document.head.appendChild(script);
})();
</script>
</div>
</body>
</html>