-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
1082 lines (1019 loc) · 99.3 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<HTML lang="en">
<head>
<meta charset="utf-8">
<title> Aaron Keohane | Web Developer</title>
<link rel="icon" href="img/AK-portfolio-favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display&display&family=VT323&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="maincontents">
<header class="page-header">
<a href="index.html"><img src="img/Personal-logo.png" class="page-header--logo" alt="Personal logo of Aaron Keohane, stylized text with capital initials in box"></a>
<nav class="navbar">
<ul role="menubar" class="nav-menu">
<li role="presentation" class="nav-item">
<a href="index.html" role="menuitem" class="navigation-list__item"><span>Home</span></a>
</li>
<li role="presentation" class="nav-item">
<a href="about.html" role="menuitem" class="navigation-list__item" id="navigation-list__item--active"><span>About</span></a>
</li>
<li role="presentation" class="nav-item">
<a href="work.html" role="menuitem" class="navigation-list__item"><span>Work</span></a>
</li>
<li role="presentation" class="nav-item">
<a href="contact.html" role="menuitem" class="navigation-list__item"><span>Contact</span></a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
</header>
<div class="main">
<section>
<h1>About</h1>
<div class="about-me-container">
<div class="about-me">
<h3>
How did I know I was destined for coding?
</h3>
<br>
<p>
I am always the first to google the moment someone asks a question.
</p>
<p>
Besides my googling talent, my academic background in the sciences has prepared me to problem solve,
critically evaluate, and think imaginatively when facing technical challenges. Thankfully, my seemingly perpetual
need to know is the perfect characteristic for someone in the tech field and I am ready to keep on learning!
</p>
<p>
I aim to inspire positive environmental change through my work. I love the ocean, typography and living a zero waste lifestyle.
When I'm not obsessing about responsive design, you can find me on the tennis courts. Take a peak at my CV below.
</p>
</div>
<div class="tennis-container">
<svg id="tennis-scene" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 500 500" enable-background="new 0 0 500 500" xml:space="preserve">
<g id="Background_Simple">
<g>
<path fill="#C6FF00" d="M487.904,346.672c10.327-84.343-39.709-196.444-91.587-242.734
C302.662,20.37,224.856,36.53,164.341,66.464C103.825,96.398,95.18,196.33,53.396,241.543
c-41.785,45.214-65.553,106.03-2.156,166.569c63.397,60.541,114.542,29.777,180.821,25.942
c66.279-3.836,154.171,26.392,201.721,0.105C466.982,415.806,483.339,383.949,487.904,346.672z" />
<path class="background__shiftingneon" opacity="0.7" fill="#FFFFFF" d="M487.904,346.672c10.327-84.343-39.709-196.444-91.587-242.734
C302.662,20.37,224.856,36.53,164.341,66.464C103.825,96.398,95.18,196.33,53.396,241.543
c-41.785,45.214-65.553,106.03-2.156,166.569c63.397,60.541,114.542,29.777,180.821,25.942
c66.279-3.836,154.171,26.392,201.721,0.105C466.982,415.806,483.339,383.949,487.904,346.672z" />
</g>
</g>
<g id="Cup">
</g>
<g id="Character">
<g>
<ellipse fill="#263238" cx="237.719" cy="438.693" rx="108.883" ry="6.087" />
<g>
<g>
<path fill="#FFFFFF" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M192.423,189.044c0,0-9.262,0-14.224,1.323c-4.962,1.323-47.302,15.877-48.295,15.877c-0.992,0-11.246-3.97-12.57-3.97
c-1.323,0-7.607,3.308-6.946,6.285c0.662,2.978,7.277,7.608,9.262,8.931c1.984,1.323,12.9-3.969,12.9-3.969
s32.748-2.316,40.356-3.97c7.608-1.654,16.87-2.646,16.87-2.646L192.423,189.044z" />
<path fill="#263238" d="M127.467,216.891l-22.857-27.855l-5.521-18.888c-0.079-0.27-0.251-0.475-0.454-0.639
c-0.076-1.353-0.254-2.794-0.576-4.347c-1.357-6.552-4.758-14.172-9.58-21.457c-10.338-15.622-23.625-24.428-30.245-20.047
c-6.62,4.382-3.708,20.052,6.631,35.675c4.821,7.284,10.506,13.394,16.007,17.203c0.799,0.553,1.579,1.036,2.346,1.475
l18.747,14.06l22.438,27.343c0.392,0.477,0.959,0.723,1.533,0.723c0.444,0,0.891-0.148,1.26-0.452
C128.044,218.988,128.165,217.737,127.467,216.891z M93.823,174.516l1.765-0.363c-0.191,0.659-0.43,1.259-0.748,1.75
L93.823,174.516z M57.504,135.146c-0.083-0.668-0.145-1.314-0.172-1.928l1.124-0.222l1.429,1.945l-2.209,0.437L57.504,135.146z
M57.781,136.894c-0.092-0.488-0.171-0.964-0.235-1.426C57.606,135.931,57.686,136.407,57.781,136.894z M86.982,165.148
l-1.429-1.945l2.209-0.45l1.429,1.945L86.982,165.148z M89.827,165.584l1.429,1.945l-2.21,0.45l-1.429-1.945L89.827,165.584z
M84.905,162.317l-1.416-1.933l2.21-0.45l1.416,1.945L84.905,162.317z M71.224,140.141l1.429,1.945l-2.209,0.45l-1.429-1.945
L71.224,140.141z M68.366,139.704l-1.416-1.945l2.209-0.437l1.416,1.945L68.366,139.704z M80.777,156.667l-1.43-1.945l2.21-0.45
l1.429,1.945L80.777,156.667z M83.635,157.104l1.416,1.945l-2.21,0.45l-1.416-1.945L83.635,157.104z M78.713,153.848
l-1.429-1.945l2.209-0.45l1.43,1.945L78.713,153.848z M76.635,151.017l-1.416-1.945l2.21-0.45l1.415,1.945L76.635,151.017z
M74.571,148.186l-1.416-1.945l2.21-0.438l1.416,1.945L74.571,148.186z M72.507,145.367l-1.429-1.945l2.222-0.45l1.416,1.945
L72.507,145.367z M71.436,145.579l-2.209,0.45l-1.429-1.945l2.209-0.45L71.436,145.579z M72.084,146.465l1.416,1.945
l-2.209,0.437l-1.416-1.945L72.084,146.465z M74.148,149.284l1.416,1.945l-2.21,0.45l-1.416-1.945L74.148,149.284z
M76.212,152.115l1.429,1.945l-2.209,0.45l-1.429-1.945L76.212,152.115z M78.276,154.946l1.429,1.945l-2.21,0.437l-1.429-1.945
L78.276,154.946z M80.354,157.765l1.416,1.945l-2.21,0.45l-1.416-1.945L80.354,157.765z M82.418,160.596l1.415,1.945
l-2.209,0.45l-1.416-1.945L82.418,160.596z M84.707,156.892l2.21-0.45l1.416,1.945l-2.209,0.45L84.707,156.892z M84.059,156.005
l-1.429-1.945l2.222-0.45l1.416,1.945L84.059,156.005z M81.994,153.174l-1.429-1.945l2.209-0.437l1.429,1.946L81.994,153.174z
M79.917,150.355l-1.416-1.945l2.21-0.45l1.429,1.945L79.917,150.355z M77.853,147.524l-1.415-1.945l2.209-0.45l1.416,1.945
L77.853,147.524z M75.789,144.705l-1.43-1.945l2.224-0.45l1.415,1.945L75.789,144.705z M73.725,141.874l-1.429-1.945l2.209-0.45
l1.43,1.945L73.725,141.874z M71.647,139.042l-1.416-1.945l2.21-0.437l1.429,1.932L71.647,139.042z M69.583,136.224
l-1.416-1.945l2.209-0.45l1.416,1.945L69.583,136.224z M68.511,136.436l-2.209,0.45l-1.416-1.945l2.209-0.45L68.511,136.436z
M64.238,134.054l-1.429-1.945l2.223-0.45l1.416,1.945L64.238,134.054z M65.23,137.098l-2.21,0.45l-1.415-1.945l2.209-0.45
L65.23,137.098z M65.878,137.984l1.416,1.945l-2.21,0.437l-1.416-1.945L65.878,137.984z M67.943,140.803l1.429,1.945l-2.21,0.45
l-1.429-1.945L67.943,140.803z M68.154,146.241l-2.209,0.45l-1.43-1.945l2.21-0.45L68.154,146.241z M68.803,147.127l1.416,1.945
l-2.21,0.437l-1.415-1.932L68.803,147.127z M70.867,149.945l1.416,1.946l-2.21,0.449l-1.416-1.945L70.867,149.945z
M72.931,152.777l1.429,1.945l-2.222,0.45l-1.416-1.945L72.931,152.777z M74.995,155.608l1.429,1.945l-2.21,0.437l-1.429-1.945
L74.995,155.608z M77.072,158.427l1.416,1.944l-2.21,0.451l-1.429-1.945L77.072,158.427z M79.137,161.258l1.415,1.945
l-2.209,0.45l-1.416-1.945L79.137,161.258z M81.2,164.089l1.43,1.945l-2.224,0.437l-1.416-1.945L81.2,164.089z M82.272,163.865
l2.209-0.45l1.429,1.945l-2.209,0.45L82.272,163.865z M86.546,166.246l1.429,1.945l-2.209,0.45l-1.429-1.945L86.546,166.246z
M88.623,169.078l1.416,1.945l-2.21,0.437l-1.416-1.932L88.623,169.078z M90.687,171.896l1.416,1.945l-2.209,0.45l-1.416-1.945
L90.687,171.896z M91.759,171.684l2.209-0.45l1.416,1.945l-2.209,0.45L91.759,171.684z M91.111,170.798l-1.416-1.945l2.21-0.437
l1.415,1.945L91.111,170.798z M90.899,165.373l2.223-0.45l1.416,1.945l-2.21,0.45L90.899,165.373z M90.264,164.486l-1.429-1.945
l2.21-0.45l1.429,1.945L90.264,164.486z M88.187,161.655l-1.416-1.945l2.209-0.437l1.43,1.945L88.187,161.655z M87.988,156.23
l2.21-0.45l1.416,1.944l-2.21,0.451L87.988,156.23z M87.34,155.343l-1.429-1.945l2.223-0.45l1.416,1.945L87.34,155.343z
M85.276,152.512l-1.429-1.945l2.209-0.437l1.429,1.945L85.276,152.512z M83.198,149.693l-1.416-1.945l2.209-0.449l1.429,1.945
L83.198,149.693z M81.135,146.862l-1.416-1.945l2.209-0.45l1.416,1.945L81.135,146.862z M80.936,141.424l2.209-0.436
l1.416,1.945l-2.209,0.437L80.936,141.424z M81.279,143.594l-2.209,0.437l-1.416-1.945l2.21-0.437L81.279,143.594z
M77.006,141.212l-1.429-1.945l2.21-0.45l1.429,1.945L77.006,141.212z M74.929,138.381l-1.416-1.945l2.21-0.45l1.429,1.945
L74.929,138.381z M72.864,135.562l-1.415-1.944l2.209-0.451l1.416,1.945L72.864,135.562z M70.801,132.731l-1.416-1.945
l2.21-0.45l1.415,1.945L70.801,132.731z M69.729,132.943l-2.21,0.45l-1.429-1.945l2.223-0.45L69.729,132.943z M65.455,130.562
l-1.429-1.945l2.21-0.437l1.429,1.946L65.455,130.562z M64.383,130.786l-2.21,0.437l-1.429-1.945l2.21-0.437L64.383,130.786z
M63.166,134.266l-2.209,0.45l-1.429-1.946l2.209-0.449L63.166,134.266z M60.533,135.813l1.416,1.946l-2.209,0.449l-1.416-1.944
L60.533,135.813z M62.597,138.646l1.416,1.945l-2.209,0.45l-1.416-1.945L62.597,138.646z M64.661,141.463l1.43,1.945
l-2.223,0.45l-1.416-1.945L64.661,141.463z M64.873,146.902l-2.209,0.45l-1.429-1.945l2.209-0.449L64.873,146.902z
M61.591,147.563l-0.226,0.05c-0.139-0.304-0.267-0.602-0.397-0.902L61.591,147.563z M61.674,148.298
c-0.039-0.083-0.079-0.166-0.117-0.248C61.597,148.132,61.634,148.214,61.674,148.298z M62.24,148.45l1.416,1.945l-0.859,0.172
c-0.353-0.683-0.684-1.357-1.001-2.025L62.24,148.45z M63.298,148.238l2.223-0.45l1.416,1.945l-2.21,0.45L63.298,148.238z
M67.585,150.606L69,152.552l-2.209,0.45l-1.416-1.945L67.585,150.606z M69.649,153.438l1.43,1.945l-2.224,0.45l-1.415-1.945
L69.649,153.438z M71.713,156.27l1.429,1.945l-2.209,0.437l-1.43-1.932L71.713,156.27z M73.791,159.088l1.416,1.945l-2.21,0.45
l-1.429-1.945L73.791,159.088z M73.989,164.526l-1.687,0.343c-0.52-0.621-1.029-1.272-1.538-1.923l1.81-0.365L73.989,164.526z
M73.645,162.37l2.209-0.45l1.416,1.945l-2.209,0.45L73.645,162.37z M77.919,164.751l1.429,1.945l-2.223,0.437l-1.416-1.945
L77.919,164.751z M79.983,167.569l1.429,1.945l-2.21,0.45l-1.429-1.945L79.983,167.569z M81.055,167.358l2.21-0.451l1.429,1.946
l-2.21,0.45L81.055,167.358z M85.342,169.739l1.416,1.945l-2.21,0.45l-1.429-1.945L85.342,169.739z M87.406,172.571l1.416,1.932
l-2.209,0.45l-1.416-1.944L87.406,172.571z M86.739,176.798c-0.414-0.18-0.837-0.381-1.269-0.604l0.718-0.144L86.739,176.798z
M87.26,175.839l2.209-0.45l1.799,2.46c0.397-0.013,0.768-0.065,1.112-0.158l-1.839-2.514l2.21-0.45l1.441,1.971
c-0.174,0.167-0.343,0.344-0.541,0.475c-1.274,0.842-3.085,0.889-5.237,0.24L87.26,175.839z M87.991,177.282
c-0.125-0.042-0.245-0.078-0.372-0.125C87.746,177.204,87.867,177.24,87.991,177.282z M95.952,172.278l-0.912-1.255l0.987-0.197
C96.026,171.335,95.998,171.817,95.952,172.278z M95.951,172.295c-0.008,0.076-0.021,0.146-0.029,0.221
C95.931,172.441,95.944,172.372,95.951,172.295z M95.734,173.65c-0.009,0.039-0.017,0.079-0.027,0.118
C95.716,173.729,95.725,173.69,95.734,173.65z M96.018,169.819l-1.625,0.317l-1.416-1.945l2.21-0.437l0.737,1.001
C95.958,169.114,96,169.479,96.018,169.819z M95.469,165.699c0.067,0.327,0.108,0.63,0.163,0.946l-0.022,0.012l-1.429-1.945
l1-0.21C95.276,164.9,95.388,165.308,95.469,165.699z M94.946,163.534l-1.4,0.291l-1.43-1.945l2.203-0.448
C94.546,162.141,94.761,162.844,94.946,163.534z M91.468,160.993l-1.416-1.945l2.209-0.437l1.43,1.945L91.468,160.993z
M92.857,157.474l-0.172,0.04l-1.416-1.945l0.713-0.146c0.597,1.315,1.124,2.611,1.598,3.89
C93.352,158.703,93.113,158.09,92.857,157.474z M90.621,154.682l-1.415-1.944l1.329-0.277c0.35,0.681,0.69,1.36,1.01,2.037
L90.621,154.682z M90.062,151.546l-1.505,0.304l-1.429-1.945l1.824-0.37C89.336,150.207,89.705,150.876,90.062,151.546z
M87.333,146.836c0.372,0.6,0.744,1.2,1.091,1.799l0.004-0.001c0.13,0.218,0.255,0.437,0.38,0.655
c-0.125-0.216-0.25-0.433-0.385-0.654l-1.932,0.397l-1.429-1.945l2.152-0.436C87.255,146.713,87.294,146.774,87.333,146.836z
M86.274,145.166c0.195,0.294,0.372,0.591,0.562,0.886c-0.187-0.295-0.371-0.591-0.568-0.884
c-0.25-0.379-0.504-0.743-0.757-1.113C85.765,144.426,86.022,144.785,86.274,145.166z M86.625,145.75l-2.209,0.451L83,144.255
l2.21-0.45L86.625,145.75z M81.059,138.156h-0.004c0.04,0.04,0.066,0.079,0.106,0.119l-0.008-0.01
c0.281,0.337,0.562,0.69,0.842,1.041c-0.277-0.347-0.556-0.696-0.834-1.031l1.336,1.826l-2.21,0.45l-1.429-1.945l2.196-0.45
c-0.12-0.147-0.243-0.289-0.367-0.433C80.812,137.868,80.936,138.008,81.059,138.156z M78.622,135.403l-0.002,0
c0.54,0.577,1.078,1.17,1.617,1.792c0.029,0.033,0.058,0.067,0.086,0.101l-2.1,0.422l-1.43-1.945l1.826-0.37
c-0.251-0.277-0.502-0.54-0.754-0.805C78.118,134.859,78.37,135.133,78.622,135.403z M75.946,132.716
c0.576,0.54,1.164,1.119,1.752,1.715c0.042,0.043,0.084,0.083,0.126,0.126l-1.678,0.331l-1.415-1.945l1.204-0.238
C75.938,132.708,75.941,132.712,75.946,132.716z M72.886,130.073c0.024,0.019,0.048,0.036,0.072,0.055l1.993,1.673
c0.026,0.023,0.052,0.048,0.078,0.071l-0.946,0.198l-1.416-1.945L72.886,130.073z M69.27,127.57l-0.004,0.001
c0.172,0.106,0.344,0.198,0.529,0.317l-0.003-0.004c0.44,0.275,0.889,0.575,1.342,0.892c-0.451-0.313-0.898-0.615-1.338-0.887
l1.151,1.562l-2.209,0.45l-1.429-1.945l1.958-0.383c-0.445-0.268-0.865-0.507-1.297-0.725
C68.395,127.066,68.828,127.308,69.27,127.57z M66.672,127.082l-0.879-1.19c0.68,0.248,1.383,0.547,2.12,0.926L66.672,127.082z
M64.215,125.407l1.385,1.886l-2.223,0.45l-1.822-2.504c0.248-0.036,0.492-0.079,0.762-0.079
C62.903,125.16,63.545,125.255,64.215,125.407z M59.696,125.866c0.245-0.163,0.518-0.287,0.802-0.393l1.82,2.481l-2.223,0.45
l-1.269-1.731C59.087,126.359,59.372,126.081,59.696,125.866z M58.244,127.544l0.78,1.072l-1.295,0.264
C57.87,128.394,58.037,127.94,58.244,127.544z M57.474,129.964l0.002,0.002c0-0.005,0-0.007,0-0.011
c0.001-0.006,0.003-0.01,0.004-0.017l2.192-0.436l1.429,1.945l-2.21,0.45l-1.416-1.932c-0.011,0.062-0.017,0.13-0.027,0.193
C57.459,130.096,57.464,130.026,57.474,129.964z M57.32,131.438l0.5,0.672l-0.51,0.104
C57.313,131.954,57.307,131.685,57.32,131.438z M57.858,137.312l0.809,1.108l-0.529,0.106c0.076,0.318,0.141,0.612,0.216,0.928
C58.157,138.714,57.999,138.006,57.858,137.312z M59.316,139.308l1.416,1.945l-1.73,0.343c-0.234-0.717-0.455-1.424-0.638-2.103
L59.316,139.308z M59.317,142.548l2.062-0.41l1.429,1.945l-2.223,0.437l-1.106-1.514
C59.426,142.854,59.369,142.7,59.317,142.548z M60.516,145.688c-0.023-0.055-0.045-0.11-0.068-0.165
C60.47,145.578,60.494,145.633,60.516,145.688z M62.809,150.592c0.07,0.135,0.142,0.269,0.21,0.403
C62.948,150.86,62.878,150.727,62.809,150.592z M63.283,151.478l1.021-0.196l1.415,1.945l-1.334,0.264
C63.995,152.812,63.64,152.145,63.283,151.478z M64.916,154.403l1.452-0.304l1.416,1.945l-1.65,0.343
C65.713,155.722,65.305,155.061,64.916,154.403z M67.074,157.874c-0.216-0.326-0.406-0.646-0.615-0.971
c0.08,0.125,0.156,0.25,0.239,0.373l1.734-0.344l1.429,1.945l-1.839,0.37C67.705,158.79,67.384,158.341,67.074,157.874z
M68.633,160.132l1.863-0.37l1.429,1.932l-1.852,0.384C69.588,161.44,69.106,160.797,68.633,160.132z M72.396,164.987
c0.003,0.003,0.006,0.007,0.01,0.011C72.402,164.994,72.399,164.99,72.396,164.987z M73.053,165.727l1.584-0.313l1.416,1.945
l-1.32,0.264C74.167,167.019,73.61,166.371,73.053,165.727z M77.447,170.321c-0.633-0.592-1.263-1.209-1.892-1.853l1.146-0.237
l1.429,1.945L77.447,170.321z M78.353,171.153l0.413-0.091l0.872,1.189C79.209,171.896,78.781,171.532,78.353,171.153z
M79.837,170.851l2.223-0.45l1.416,1.945l-2.21,0.45L79.837,170.851z M84.203,175.441l0.001,0.001l-0.477-0.357
c-0.011-0.009-0.025-0.012-0.037-0.021c-0.133-0.091-0.276-0.145-0.425-0.179l-0.822-0.488c0.108,0.071,0.213,0.14,0.318,0.209
c-0.126-0.079-0.251-0.156-0.381-0.246c-0.074-0.051-0.149-0.113-0.222-0.165c0.073,0.051,0.147,0.111,0.22,0.161
c0.026,0.013,0.04,0.026,0.065,0.04l-0.529-0.728l2.209-0.437l1.416,1.945l-1.336,0.265l0.026,0.02L84.203,175.441z
M91.058,180.526c1.531,0,2.897-0.379,4.054-1.146c1.285-0.85,2.222-2.127,2.817-3.764l2.975,10.177
c-0.412,0.02-0.821,0.162-1.164,0.444c-0.184,0.152-0.327,0.333-0.441,0.527l-8.324-6.243
C91.003,180.521,91.031,180.526,91.058,180.526z" />
<path fill="#FFFFFF" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M112.374,206.906c0,0,4.631-0.661,6.616,0.332c1.984,0.992,7.608,5.954,5.954,6.946c-1.654,0.992-3.308,3.639-5.292,3.308
c-1.985-0.331-6.947-4.631-8.601-6.616" />
<path fill="#FFFFFF" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M123.29,205.914c0,0-4.631,1.654-7.608,1.654c-2.977,0-5.954,2.646-4.631,3.308c1.323,0.662,6.285,0,6.285,0
s5.624,4.631,10.585,0.331" />
</g>
<g>
<path fill="#FFFFFF" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M317.934,200.793c0,0,13.21,10.477,14.489,12.483c3.762,5.906-1.631,24.97-3.603,33.64c-1.766,7.768-4.861,18.067-4.415,18.736
c0.445,0.669,7.578,6.019,8.023,8.917c0.447,2.897,0.893,6.241,0,6.91c-0.891,0.668-1.336-1.783-1.56-3.121
c-0.223-1.337-1.337-3.121-1.337-3.121s-0.893,6.465-0.893,7.355c0,0.893-2.006,3.567-2.675,3.567s-0.445-3.12-0.445-3.789
s-0.224-6.019-0.224-6.019s-1.337,7.133-1.782,8.024s-2.452,4.458-3.566,2.897c-1.115-1.56,0.223-3.344,0.445-4.903
c0.223-1.561,0.574-6.223,0.574-6.223s-2.314,4.908-2.762,6.023c-0.445,1.114-2.863,3.76-3.607,3.097
c-0.659-0.587,0.094-2.72,1.099-4.979c0.519-1.166,0.25-4.77,0.25-4.77s-2.464-6.079-3.802-6.079
c-1.336,0-6.687,2.675-8.692,3.567c-2.006,0.892-4.458,0.224-3.122-0.669c1.338-0.892,4.682-3.789,5.573-4.682
c0.893-0.892,3.121-2.897,4.236-3.344c1.114-0.445,6.66-2.373,6.66-2.373s0.02-23.031-0.204-28.381
c-0.139-3.324-0.116-7.001-0.08-9.308c0.023-1.458-0.648-2.833-1.809-3.716l-3.683-2.801
C311.024,217.735,305.45,204.137,317.934,200.793z" />
<path fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M320.967,276.148c0,0,0.208-2.154-0.258-3.551" />
<path fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M325.296,276.353c0,0,0.069-2.979-0.085-3.755" />
<path fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M329.532,275.237c0,0,0.179-1.708-0.598-2.795" />
</g>
<g>
<path fill="#C6FF00" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M188.77,392.798c0,0-9.808-2.452-13.152,0.892s1.115,8.916,0,12.929s-2.006,11.592-0.892,14.489
c1.114,2.898,5.35,12.037,8.471,10.254c3.12-1.783,3.789-10.254,3.789-14.936c0-4.68,1.115-12.705,2.452-13.82
C190.775,401.491,192.113,396.811,188.77,392.798z" />
<path fill="#FFFFFF" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M235.134,332.167c0,0-6.91,21.846-7.356,24.52c-0.446,2.675-1.115,4.013-1.115,4.013s-14.935,7.134-19.17,12.261
s-10.477,12.928-13.598,14.935c-3.121,2.006-6.91,4.903-8.693,7.356c-1.783,2.451-0.714,13.705,2.006,11.813
c5.127-3.566,27.64-19.615,41.238-26.75c8.417-4.414,21.622-12.481,24.744-16.94c3.12-4.458,8.024-24.966,9.808-30.761
C264.781,326.817,239.146,328.823,235.134,332.167z" />
<path fill="#263238" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M201.109,380.634c-2.781,3.24-5.479,6.146-7.213,7.261c-3.121,2.006-6.91,4.903-8.693,7.356
c-1.783,2.451-0.714,13.705,2.006,11.813c2.951-2.053,11.668-8.244,21.126-14.489
C200.716,392.869,200.654,384.751,201.109,380.634z" />
</g>
<path fill="#263238" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M220.422,269.308c0,0-2.005,9.808-2.005,18.724c0,8.917,14.488,32.322,15.38,33.437c0.892,1.115-1.337,10.923-1.337,10.923
s1.337,3.566,10.477,4.903c9.138,1.338,21.399-0.892,21.399-0.892s9.809-19.393,14.267-31.652
c4.457-12.261,6.019-37.672,6.019-37.672s-10.031,4.013-24.966,4.013c-14.936,0-37.003-2.898-37.003-2.898
S220.646,267.747,220.422,269.308z" />
<g>
<path fill="#C6FF00" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M233.771,172.504c0,0-16.54-3.308-24.479,0.331c-7.938,3.639-9.262,5.292-11.247,7.939c-1.985,2.646-7.939,7.938-7.939,7.938
s-1.984,7.939-2.315,11.908c-0.332,3.97,1.654,9.262,1.654,9.262l18.193,7.939c0,0,12.57,29.109,13.231,35.062
c0.662,5.955,1.654,7.277-0.331,8.601s-4.3,5.623-2.978,7.939c1.323,2.315,15.217,3.307,22.494,4.3
c7.277,0.993,31.094,1.654,37.048,0.331c5.953-1.324,9.262-4.3,9.262-7.608c0-3.308-0.993-6.615-1.324-8.931
c-0.33-2.315-2.314-41.68-2.314-41.68s16.266,6.118,19.573,8.103c3.309,1.985,9.593,4.3,9.593,4.3s-1.654-10.585,1.653-17.862
c3.309-7.277,5.623-8.601,5.623-8.601s-24.055-20.236-25.708-20.567c-1.654-0.331-16.357-7.382-23.966-8.706
C261.888,171.182,233.771,172.504,233.771,172.504z" />
<g>
<path fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M207.639,217.822c0,0-3.936-13.827-5.273-24.081" />
<path fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M197.463,192.181c0,0,5.35,17.833,9.808,23.628" />
<path fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M282.728,215.837c0,0-9.922-6.938-13.935-21.204" />
<path fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M281.945,215.364c0,0-7.133-0.446-14.713-9.362" />
<path fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M211.729,228.069c0,0,18.724,30.762,30.315,38.116" />
<path fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M219.53,247.016c0,0,8.471,14.49,12.706,17.833" />
</g>
</g>
<path fill="#263238" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M231.572,170.513c0,0-5.887,0.189-8.925,5.127c-3.038,4.937-4.367,28.672-4.178,29.622c0.19,0.949,11.013-7.786,19.559-7.596
c8.544,0.19,17.28,12.533,17.28,12.533s5.695-9.684,3.798-23.735C257.206,172.412,242.774,167.285,231.572,170.513z" />
<g>
<path fill="#263238" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M253.688,140.309c0,0,4.297,0.991,6.609-3.306c2.314-4.295,0.661-6.609-2.312-6.609c-2.975,0-5.288,0-5.288,0
s1.144-6.636-4.144-6.636c-5.288,0-15.327,5.358-15.327,5.358s-16.347,2.273-16.728,13.721
c-0.534,16.023,9.429,19.284,9.429,19.284s2.644,2.974,4.958,0.66c2.313-2.313,2.975-4.958,2.975-4.958s4.627-1.321,4.627-4.626
s-5.288-6.279-2.975-8.263C237.824,142.952,253.688,140.309,253.688,140.309z" />
<path fill="none" stroke="#FFFFFF" stroke-width="0.6534" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M240.157,131.39c0,0-0.763-3.816,1.908-3.816c2.671,0,4.005,4.819,2.479,8.635c-1.527,3.816-12.02,4.721-18.125,7.392
c-6.105,2.672-8.395,9.159-8.395,9.159" />
<path fill="none" stroke="#FFFFFF" stroke-width="0.6534" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M221.458,156.194c0,0,1.526-4.197,7.632-6.487" />
</g>
<path fill="#FFFFFF" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M262.774,314.335c0,0,5.127,12.928,6.242,20.062c1.114,7.133,0.669,34.326,1.56,44.803c0.893,10.478,8.917,36.557,8.917,36.557
s12.483-6.464,16.94-8.692c4.458-2.229,7.579-3.79,7.579-0.446s-2.676,12.037-6.465,14.489
c-3.789,2.453-11.146,5.127-12.037,7.133c-0.891,2.006-5.349,8.024-8.471,8.693c-3.12,0.669-5.795-3.12-6.909-5.572
s-2.898-11.592-2.898-11.592s-10.698-23.628-15.826-33.882c-5.126-10.253-8.024-21.845-8.024-28.086
c0-6.242,3.566-17.164,3.121-18.725c-0.446-1.56-10.254-16.049-10.254-16.049s1.337-5.796,10.031-8.248
C254.973,312.328,262.774,314.335,262.774,314.335z" />
<path fill="#263238" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M296.434,407.064c-4.457,2.229-16.94,8.692-16.94,8.692s-4.762-15.476-7.356-27.374c-3.229,0.146-8.103,1.149-12.261,5.307
c-1.207,1.208-2.229,2.328-3.106,3.364c4.991,10.635,10.463,22.716,10.463,22.716s1.784,9.14,2.898,11.592
s3.789,6.241,6.909,5.572c3.122-0.669,7.58-6.688,8.472-8.693c0.891-2.006,8.247-4.682,12.036-7.133
c3.789-2.452,6.465-11.146,6.465-14.489S300.892,404.835,296.434,407.064z" />
<path fill="#C6FF00" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M268.743,426.693c0.472,1.938,0.976,3.761,1.388,4.668c1.114,2.452,3.789,6.241,6.909,5.572c3.122-0.669,7.58-6.688,8.472-8.693
c0.891-2.006,8.247-4.682,12.036-7.133c3.789-2.452,6.465-11.146,6.465-14.489s-3.121-1.783-7.579,0.446
c-4.457,2.229-16.94,8.692-16.94,8.692S272.331,419.029,268.743,426.693z" />
<path fill="#FFFFFF" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M285.512,428.24c0.891-2.006,8.247-4.682,12.036-7.133c3.789-2.452,6.465-11.146,6.465-14.489c0-1.684-0.793-2.122-2.149-1.859
c-5.131,3.841-20.432,15.614-25.045,22.812c-2.459,3.837-3.31,6.629-3.073,8.516c0.994,0.712,2.112,1.101,3.295,0.847
C280.162,436.265,284.62,430.246,285.512,428.24z" />
<path fill="#263238" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M244.942,280.898c0,0,8.47,8.025,12.037,14.935c3.566,6.911,7.578,20.284,7.578,20.284s-12.036,0.669-16.941,2.229
c-4.903,1.562-12.037,12.483-12.037,12.483s-7.801-13.151-12.259-21.846c-4.458-8.693-5.796-17.386-4.681-24.073
c1.114-6.688,2.675-7.578,2.675-7.578" />
<path fill="none" stroke="#FFFFFF" stroke-width="1.3069" stroke-linecap="round" stroke-linejoin="round"
stroke-miterlimit="10" d="
M247.171,278.669c0,0,12.483,10.478,16.048,22.068" />
<path fill="none" stroke="#FFFFFF" stroke-width="1.3069" stroke-linecap="round" stroke-linejoin="round"
stroke-miterlimit="10" d="
M263.443,290.483c0,0,4.682,8.024,5.35,12.929" />
<g>
<path fill="#FFFFFF" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M227.155,167.212l3.639,11.908c0,0-1.653,6.947-0.331,13.231c1.323,6.285,3.639,10.916,6.616,10.916
c2.977,0,14.885-11.908,15.876-18.193c0.993-6.285,0.993-8.601,0.993-8.601s-6.946,0.331-13.562-3.639
C233.771,168.866,227.155,162.912,227.155,167.212z" />
<g>
<path fill="#FFFFFF" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M226.257,160.799c0,0-5.717-2.845-5.717,1.121s2.795,6.713,4.064,7.472c2.364,1.414,3.966-0.661,3.966-0.661
s6.94,6.279,10.246,9.254c3.305,2.975,9.254,6.279,13.549,2.975c4.298-3.305,3.967-10.576,3.967-10.576
s2.645-12.229,1.322-19.168c-1.322-6.94-3.967-10.906-3.967-10.906s-13.55-1.653-19.168,2.644
c-5.619,4.297-4.296,5.949-1.983,7.932s3.305,3.635,2.313,4.627c-0.991,0.992-3.635,2.313-3.635,2.313
S231.214,163.443,226.257,160.799z" />
<path fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M250.349,155.097c0,0,2.623,8.274,2.019,8.88c-0.605,0.605-5.046,1.009-5.046,1.009" />
<path fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M249.541,153.079c0,0,1.614-3.834,5.45-3.834" />
<path fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" d="
M246.111,154.896c0,0-6.256-2.019-9.486,0.807" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="246.111" y1="171.444" x2="249.541"
y2="171.444" />
<ellipse fill="#263238" cx="242.78" cy="158.225" rx="0.707" ry="1.349" />
<ellipse fill="#263238" cx="253.073" cy="154.592" rx="0.706" ry="1.349" />
</g>
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="230.794" y1="179.12" x2="234.764"
y2="190.036" />
</g>
</g>
</g>
</g>
<g id="Net">
<g>
<defs>
<path id="SVGID_1_" d="M374.882,290.187v154.769c22.597,0.459,43.004-2.008,58.899-10.795
c33.201-18.354,49.558-50.211,54.123-87.488c2.188-17.878,1.658-37.005-1.021-56.485H374.882z" />
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible" />
</clipPath>
<g clip-path="url(#SVGID_2_)">
<g>
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="425.044" y1="328.889" x2="425.044"
y2="448.583" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="433.053" y1="328.889" x2="433.053"
y2="448.583" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="441.06" y1="328.889" x2="441.06"
y2="448.583" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="449.068" y1="328.889" x2="449.068"
y2="448.583" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="457.075" y1="328.889" x2="457.075"
y2="448.583" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="465.084" y1="328.889" x2="465.084"
y2="448.583" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="473.091" y1="328.889" x2="473.091"
y2="448.583" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="481.1" y1="328.889" x2="481.1"
y2="448.583" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="489.106" y1="328.889" x2="489.106"
y2="448.583" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="339.426" x2="505.122"
y2="339.426" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="347.012" x2="505.122"
y2="347.012" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="354.598" x2="505.122"
y2="354.598" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="362.184" x2="505.122"
y2="362.184" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="369.771" x2="505.122"
y2="369.771" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="377.356" x2="505.122"
y2="377.356" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="384.942" x2="505.122"
y2="384.942" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="392.529" x2="505.122"
y2="392.529" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="400.115" x2="505.122"
y2="400.115" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="407.701" x2="505.122"
y2="407.701" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="415.289" x2="505.122"
y2="415.289" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="422.875" x2="505.122"
y2="422.875" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="430.461" x2="505.122"
y2="430.461" />
<line fill="none" stroke="#263238" stroke-width="1.3069" stroke-linecap="round"
stroke-linejoin="round" stroke-miterlimit="10" x1="413.665" y1="438.047" x2="505.122"
y2="438.047" />
</g>
<rect x="408.345" y="321.752" fill="#FFFFFF" stroke="#263238" stroke-width="1.3069"
stroke-miterlimit="10" width="97.196" height="11.369" />
<path fill="#263238" stroke="#FFFFFF" stroke-width="1.3069" stroke-miterlimit="10" d="M402.443,450.36V327.146
c0-4.609,3.737-8.345,8.346-8.345l0,0c4.608,0,8.345,3.735,8.345,8.345V445.45" />
</g>
</g>
</g>
<g class="tennis-ball">
<g id="SVG">
<g id="Tennis">
<g id="_x32_">
<path id="Fill-1" fill="#EDE03B" stroke="#000000" stroke-width="0.7317" stroke-miterlimit="10" d="M483.322,139.866
c-3.282,3.259-3.282,8.542,0,11.802c3.282,3.258,8.604,3.258,11.885,0c3.282-3.26,3.282-8.543,0-11.802
C491.926,136.606,486.604,136.606,483.322,139.866" />
<path id="Fill-10" opacity="0.3" fill="#010202"
d="M493.902,138.893
c0.881,1.321,1.396,2.903,1.396,4.605c0,4.609-3.763,8.346-8.404,8.346c-1.715,0-3.309-0.511-4.637-1.387
c1.504,2.254,4.08,3.74,7.007,3.74c4.642,0,8.404-3.735,8.404-8.346C497.669,142.946,496.172,140.388,493.902,138.893" />
<path id="Fill-6" fill="#EDE03B" stroke="#000000" stroke-width="0.7317" stroke-miterlimit="10" d="M481.031,144.098
c0,0,1.831-0.24,2.659,1.783l0.004-0.004c0.16,0.984,0.617,1.93,1.382,2.688c1.935,1.921,5.072,1.921,7.007,0
c1.935-1.923,1.935-5.037,0-6.959c-0.765-0.758-1.716-1.212-2.706-1.371l0.003-0.003c-2.038-0.823-1.795-2.642-1.795-2.642
c-1.562,0.314-3.052,1.072-4.263,2.274C482.111,141.068,481.348,142.547,481.031,144.098" />
</g>
</g>
</g>
</g>
</svg>
</div>
</div>
<a href="files/Keohane-resume.pdf" id="about__button" target="_blank">Download my CV</a>
</section>
</div>
<footer class="page-footer">
<p>Find me on</p>
<div class="social-media">
<a href="https://github.com/aakeohane" target="_blank"><svg version="1.1" class="github-icon"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px"
height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
<g>
<g>
<path fill="#4A4A4A" d="M27.147,11.153C27.148,11.153,27.148,11.153,27.147,11.153c0.626-0.121,1.173-0.19,0.55,0.69
c-0.209,0.295-0.16,0.619,0.035,0.901c0.574,0.828,0.072,1.343-0.613,1.536c-1.18,0.332-1.906,1.116-2.536,2.066
c-0.087,0.131-0.184,0.243-0.287,0.342c-0.238,0.996-0.623,1.795-1.119,2.431c0.155,0.059,0.31,0.119,0.457,0.19
c0.748,0.358,1.462,0.437,2.175-0.074c0.233-0.166,0.515-0.355,0.754-0.024c0.209,0.287,0.063,0.58-0.152,0.774
c-0.93,0.834-1.506,1.806-1.405,3.108c0.024,0.319-0.192,0.47-0.513,0.283c-0.615-0.358-1.264-0.528-1.637,0.241
c-0.412,0.849,0.124,1.379,0.835,1.767c0.692-0.283,1.507-0.233,2.107-0.768l0,0c0.258-0.498,0.88-0.896,1.527-1.085
C29.007,21.108,30,18.171,30,14.997c0-1.108-0.129-2.185-0.356-3.224c-0.333-0.149-0.629-0.344-0.82-0.581
C28.34,10.596,27.786,10.583,27.147,11.153z" />
<path fill="#4A4A4A" d="M18.414,22.5c0.325,0.37,0.654,0.626,1.137,0.229c0.307-0.252,0.661-0.156,1.014-0.123
c0.509,0.047,0.856-0.207,1.061-0.66c0.193-0.434,0.113-0.807-0.253-1.12c-0.052-0.044-0.102-0.089-0.148-0.135
c-0.861,0.428-1.817,0.676-2.783,0.825C18.205,21.832,18.09,22.132,18.414,22.5z" />
<path fill="#4A4A4A" d="M25.07,14.277c-0.004-0.291-0.125-0.507-0.445-0.515c-0.038-0.001-0.062-0.022-0.098-0.028
c0.012,0.161,0.043,0.311,0.043,0.478c0,0.255-0.015,0.492-0.028,0.729c0.048-0.018,0.098-0.031,0.146-0.05
C24.945,14.789,25.074,14.559,25.07,14.277z" />
<path fill="#5C5C5C" d="M17.902,1.206c-0.27,0.77-0.678,1.501-0.359,2.396c0.161,0.452-0.264,0.943-0.658,0.868
c-1.201-0.231-2.132,0.196-3.008,0.913c0,0,0,0,0-0.001c-0.696,0.137-1.461,0.122-1.772,0.986
c-0.147,0.407-1.056-0.058-0.92,0.746c0.02,0.204,0.014,0.407,0.012,0.61c0.019,0.013,0.034,0.021,0.053,0.033
c0.474-0.132,0.964-0.23,1.459-0.31c0.371-2.028,0.763-2.064,2.602-0.592c0.164,0.131,0.312,0.282,0.467,0.426
C16.09,7.299,16.4,7.326,16.71,7.363c0.252-0.055,0.46-0.234,0.577-0.705c0.1-0.404,0.457,0.046,0.671,0.156
c0.206,0.105,0.533,0.227,0.242,0.556c-0.071,0.08-0.178,0.13-0.274,0.188c0.281,0.059,0.561,0.123,0.834,0.199
c0.057-0.038,0.102-0.062,0.157-0.098c0.221-0.953,0.246-2.32-0.038-2.854c0,0,0,0,0,0c-0.001,0-0.001,0.001-0.002,0.001
c-0.498-0.402-0.822-1.886-0.536-2.561C18.505,1.86,18.652,1.48,18.7,1.058c0.022-0.207,0.043-0.39,0.083-0.559
c-0.27-0.07-0.534-0.147-0.809-0.203C18.107,0.572,18.016,0.88,17.902,1.206z" />
<path fill="#424242" d="M25.798,24.616L25.798,24.616c0.001-0.001,0.003-0.001,0.004-0.002c0.307-0.125,0.604-0.2,0.896-0.246
c0.219-0.271,0.428-0.55,0.627-0.837C26.678,23.721,26.056,24.118,25.798,24.616z" />
<path fill="#444444" d="M3.491,15.965C3.491,15.965,3.491,15.965,3.491,15.965c0.216,0.493,0.276,1.031,0.527,1.524
c0.321,0.633-0.441,1.884-1.216,2.032C2.307,19.617,1.79,19.6,1.283,19.615c-0.188,0.006-0.367,0.022-0.522,0.085
c0.624,1.89,1.613,3.613,2.884,5.087c0.009-0.003,0.011-0.01,0.02-0.012c0.402-0.104,0.686,0.19,0.812,0.529
c0.092,0.246,0.202,0.467,0.328,0.671c0.265,0.246,0.538,0.482,0.82,0.709c0.1,0.041,0.188,0.093,0.307,0.118
c0.198,0.043,0.259,0.178,0.275,0.337c0.43,0.312,0.882,0.595,1.346,0.86c0.204-0.234,0.525-0.219,0.833-0.089
c0.632,0.269,1.177,0.172,1.732-0.142l0.089-0.033c0.354,0.059,0.701,0.062,1.045,0.045c0.001-0.458,0.002-1.064-0.001-1.757
c-0.077,0.024-0.161,0.042-0.266,0.04c-0.093-0.002-0.165-0.037-0.245-0.06c-3.726,0.569-4.525-2.063-4.525-2.063
C5.532,22.21,4.55,21.749,4.55,21.749c-1.361-0.931,0.102-0.912,0.102-0.912c1.505,0.104,2.298,1.546,2.298,1.546
c1.338,2.29,3.509,1.628,4.363,1.246c0.137-0.97,0.525-1.63,0.953-2.005c-3.175-0.361-6.498-1.558-6.801-6.648
C4.974,15.588,4.45,16.238,3.491,15.965z" />
<path fill="#444444" d="M24.18,26.354c-0.527,0.31-1.055,0.617-1.703,0.551c-0.191-0.02-0.412-0.031-0.473-0.25
s0.116-0.354,0.28-0.453c0.464-0.279,0.937-0.547,1.403-0.816c0.001,0,0.002,0,0.003-0.001c-0.711-0.388-1.247-0.918-0.835-1.767
c0.373-0.77,1.021-0.6,1.637-0.241c0.32,0.187,0.537,0.036,0.513-0.283c-0.101-1.303,0.476-2.274,1.405-3.108
c0.216-0.194,0.361-0.487,0.152-0.774c-0.239-0.331-0.521-0.142-0.754,0.024c-0.713,0.511-1.427,0.433-2.175,0.074
c-0.147-0.071-0.302-0.132-0.457-0.19c-0.542,0.696-1.211,1.203-1.953,1.572c0.047,0.046,0.097,0.091,0.148,0.135
c0.366,0.313,0.446,0.687,0.253,1.12c-0.204,0.453-0.552,0.707-1.061,0.66c-0.353-0.033-0.707-0.129-1.014,0.123
c-0.482,0.397-0.812,0.142-1.137-0.229c-0.324-0.368-0.209-0.668,0.026-0.984c-0.239,0.036-0.479,0.069-0.718,0.096
c0.538,0.465,1.026,1.365,1.026,2.764c0,1.875,0,3.658,0,4.15c0,0.401,0.242,0.846,1.003,0.699
c1.915-0.639,3.655-1.656,5.139-2.959C24.677,26.188,24.443,26.199,24.18,26.354z" />
<path fill="#444444"
d="M24.583,16.346c0.63-0.95,1.356-1.734,2.536-2.066c0.686-0.193,1.188-0.708,0.613-1.536
c-0.195-0.282-0.244-0.606-0.035-0.901c0.623-0.88,0.076-0.811-0.549-0.689c0,0,0,0-0.001-0.001c0,0-0.001,0-0.001,0.001
c-0.674,0.02-1.082-0.272-1.181-0.967c-0.065-0.463-0.399-0.799-0.668-1.14c-0.409-0.523-0.647-1.078-0.649-1.738
c0.001-0.003,0.003-0.004,0.004-0.007c0.073-0.563,0.779-0.501,0.959-0.96c-0.418-0.266-0.987-0.175-1.35-0.573
C23.34,5.361,22.4,5.005,21.586,4.368c-0.749-0.587-1.552-0.349-2.312,0.061c-0.001,0-0.002,0-0.003,0.001
c0.001,0,0.001,0,0.001,0c-0.13,0.125-0.263,0.251-0.393,0.375c0,0,0,0,0,0c0.284,0.534,0.259,1.901,0.038,2.854
c2.745-1.813,3.964-1.441,3.964-1.441c0.817,2.065,0.303,3.591,0.148,3.97c0.861,0.941,1.394,2.13,1.498,3.545
c0.035,0.006,0.06,0.027,0.098,0.028c0.32,0.008,0.441,0.224,0.445,0.515c0.004,0.282-0.125,0.512-0.383,0.614
c-0.048,0.019-0.098,0.033-0.146,0.05c-0.036,0.642-0.12,1.222-0.246,1.746C24.399,16.589,24.496,16.477,24.583,16.346z
M23.703,8.934c-0.002-0.246-0.107-0.696,0.32-0.623c0.459,0.08,0.392,0.57,0.434,0.941c-0.057,0.222,0.098,0.647-0.209,0.626
C23.741,9.843,23.706,9.341,23.703,8.934z M24.376,11.705c0.041-0.233,0.196-0.381,0.422-0.438
c0.134-0.033,0.24,0.018,0.261,0.189c-0.069,0.245-0.225,0.433-0.486,0.482C24.426,11.965,24.35,11.843,24.376,11.705z" />
<path fill="#444444"
d="M17.958,6.814c-0.214-0.11-0.571-0.56-0.671-0.156c-0.117,0.471-0.325,0.65-0.577,0.705
c0.409,0.048,0.815,0.112,1.216,0.195C18.022,7.5,18.129,7.45,18.2,7.37C18.491,7.041,18.164,6.919,17.958,6.814z" />
<path fill="#444444" d="M10.987,7.117c0.002,0.16,0.004,0.32,0.005,0.479c0.071,0.046,0.132,0.079,0.205,0.128
c0.002-0.203,0.008-0.406-0.012-0.61L10.987,7.117z" />
<path fill="#363636" d="M25.802,24.614c-0.001,0.001-0.003,0.001-0.004,0.002c-0.601,0.534-1.415,0.484-2.107,0.768
c-0.001,0.001-0.002,0.001-0.003,0.001c-0.467,0.27-0.939,0.537-1.403,0.816c-0.164,0.099-0.341,0.234-0.28,0.453
s0.281,0.23,0.473,0.25c0.648,0.066,1.176-0.241,1.703-0.551c0.264-0.154,0.497-0.165,0.711-0.088
c0.658-0.577,1.26-1.214,1.808-1.897C26.406,24.414,26.108,24.489,25.802,24.614z" />
<path fill="#363636" d="M10.206,27.736l-0.089,0.033c-0.555,0.313-1.1,0.41-1.732,0.142C8.077,27.781,7.756,27.766,7.552,28
c0.856,0.491,1.759,0.91,2.711,1.227c0.75,0.138,0.986-0.308,0.986-0.705c0-0.146,0.001-0.405,0.002-0.74
C10.907,27.798,10.56,27.795,10.206,27.736z" />
<path fill="#363636" d="M5.931,26.803c-0.119-0.025-0.207-0.077-0.307-0.118c0.192,0.154,0.382,0.31,0.582,0.455
C6.19,26.98,6.129,26.846,5.931,26.803z" />
<path fill="#363636" d="M3.665,24.775c-0.009,0.002-0.011,0.009-0.02,0.012c0.362,0.419,0.753,0.812,1.16,1.188
c-0.125-0.204-0.236-0.425-0.328-0.671C4.351,24.966,4.067,24.671,3.665,24.775z" />
<path fill="#4A4A4A"
d="M8.098,3.083c0.761,0.202,1.249,1.012,2.197,0.875c0.492-0.071,0.528,0.493,0.477,0.869
c-0.077,0.574-0.09,1.139,0.017,1.707l0,0c0.066,0.194,0.132,0.388,0.198,0.582c0,0,0,0,0,0.001l0.198-0.003
c-0.136-0.804,0.773-0.339,0.92-0.746c0.311-0.864,1.077-0.849,1.772-0.986c0.192-0.675,0.514-1.213,1.254-1.432
c0.763-0.225,0.772-0.758,0.429-1.352c-0.125-0.218-0.332-0.389-0.482-0.594c-0.164-0.222-0.453-0.43-0.269-0.752
c0.195-0.341,0.486-0.148,0.765-0.092c0.878,0.179,1.506-0.12,2.006-0.923c-0.73-0.127-1.477-0.203-2.239-0.22
c-0.069,0.022-0.137,0.046-0.207,0.064c-0.17,0.044-0.292,0.259-0.462,0.325c-0.31,0.121-0.677,0.382-0.944-0.023
c-0.07-0.106-0.084-0.212-0.077-0.314C11.601,0.252,9.669,0.844,7.939,1.77c0.197,0.298,0.345,0.623,0.544,0.895
C8.648,2.887,8.301,3.001,8.098,3.083z M11.11,3.998c0.353,0.595,0.318,1.025,0.082,1.631C10.92,5.05,10.973,4.619,11.11,3.998z
M9.257,2.635c0.438,0.231,0.792,0.417,1.156,0.609c-0.172,0.39-0.463,0.523-0.781,0.372C9.292,3.455,9.174,3.117,9.257,2.635z" />
<path fill="#4A4A4A"
d="M2.775,8.069c0.876-0.048,0.937-0.771,1.087-1.365c0.183-0.722,0.881-1.148,0.981-1.932
C4.88,4.479,4.947,4.214,4.9,3.938C3.623,5.105,2.544,6.482,1.731,8.027C2.058,8.088,2.411,8.089,2.775,8.069z" />
<path fill="#555555" d="M13.729,0.383c0.267,0.405,0.634,0.144,0.944,0.023c0.17-0.066,0.292-0.281,0.462-0.325
c0.069-0.018,0.138-0.042,0.207-0.064C15.228,0.015,15.117,0,15.003,0c-0.456,0-0.905,0.028-1.351,0.068
C13.645,0.171,13.659,0.276,13.729,0.383z" />
<path fill="#6E6E6E" d="M19.139,2.425c0.129,0.596,0.389,1.131-0.156,1.681c-0.203,0.206,0.104,0.284,0.288,0.324
c0.001,0,0.002,0,0.003-0.001c0.761-0.41,1.563-0.648,2.312-0.061c0.814,0.637,1.754,0.993,2.676,1.401
c0.799,0.007,1.611-0.017,1.924,0.961c0.193,0.111,0.383,0.235,0.584,0.329c0.144,0.065,0.324,0.127,0.436-0.041
c0.1-0.152,0.016-0.316-0.086-0.44C26.721,6.085,26.32,5.59,25.9,5.114c-0.21-0.24-0.33-0.486-0.304-0.732
c-1.688-1.684-3.773-2.967-6.104-3.697C18.928,1.111,19.005,1.81,19.139,2.425z" />
<path fill="#212121" d="M10.789,6.534c-0.107-0.568-0.094-1.133-0.017-1.707c0.051-0.376,0.015-0.94-0.477-0.869
C9.347,4.095,8.859,3.285,8.098,3.083c-0.538-0.131-0.547-0.61-0.692-1C6.505,2.614,5.667,3.236,4.9,3.938
c0.047,0.276-0.02,0.541-0.058,0.834c-0.1,0.784-0.798,1.21-0.981,1.932c-0.15,0.594-0.211,1.317-1.087,1.365
c-0.364,0.021-0.717,0.02-1.044-0.042c-1.096,2.083-1.724,4.452-1.724,6.97c0,0.095,0.01,0.188,0.011,0.283
c0.095-0.044,0.188-0.091,0.284-0.124c2.154-0.746,2.391-2.926,3.229-4.583C4.29,9.072,5.406,8.259,6.725,7.797
C6.783,7.319,6.9,6.793,7.127,6.219c0,0,0.906-0.268,2.895,0.799C10.294,6.902,10.553,6.757,10.789,6.534z" />
<path fill="#5F5F5F" d="M25.9,5.114c0.42,0.476,0.82,0.971,1.219,1.464c0.102,0.124,0.186,0.288,0.086,0.44
c-0.111,0.168-0.292,0.106-0.436,0.041c-0.201-0.094-0.391-0.218-0.584-0.329c0.099,0.155,0.185,0.32,0.297,0.464
c0.135,0.17,0.605,0.193,0.367,0.505c-0.244,0.317-0.602,0.119-0.791-0.152c-0.404-0.57-0.845-0.716-1.408-0.238
c0-0.003,0.002-0.005,0.002-0.007c-0.001,0.003-0.003,0.004-0.004,0.007c0.002,0.66,0.24,1.215,0.649,1.738
c0.269,0.341,0.603,0.677,0.668,1.14c0.099,0.695,0.507,0.987,1.181,0.967c0,0,0.001,0,0.001-0.001
c0.639-0.57,1.192-0.557,1.676,0.04c0.191,0.237,0.487,0.431,0.82,0.581c-0.625-2.852-2.054-5.401-4.047-7.391
C25.57,4.628,25.69,4.875,25.9,5.114z" />
<path fill="#313131"
d="M10.987,7.116c-0.066-0.194-0.132-0.388-0.198-0.582l0,0c-0.236,0.223-0.495,0.368-0.767,0.483
c0.298,0.16,0.622,0.353,0.97,0.579C10.991,7.437,10.989,7.277,10.987,7.116C10.987,7.117,10.987,7.117,10.987,7.116z" />
<path fill="#313131"
d="M3.531,10.573c-0.838,1.657-1.075,3.837-3.229,4.583c1.128-0.381,2.361,0.013,3.188,0.809c0,0,0,0,0,0.001
c0-0.001,0.001-0.001,0.001-0.001c0.959,0.273,1.482-0.377,1.974-0.989c-0.015-0.249-0.03-0.498-0.03-0.765
c0-0.58,0.096-1.109,0.234-1.615c-0.247,0.027-0.493,0.054-0.752,0.084c-0.515,0.01-0.957-0.216-1.142-0.762
C3.6,11.4,3.689,10.886,4.14,10.538c0.443-0.343,0.93-0.391,1.385,0.026c0.29,0.266,0.639,0.227,0.983,0.236
c0.148-0.21,0.295-0.421,0.47-0.612c-0.11-0.273-0.403-1.15-0.253-2.391C5.406,8.259,4.29,9.072,3.531,10.573z" />
<path fill="#555555"
d="M2.802,19.521c0.775-0.148,1.537-1.399,1.216-2.032c-0.251-0.493-0.311-1.031-0.528-1.523
c0-0.001,0-0.001,0-0.001c-0.827-0.795-2.06-1.189-3.188-0.809c-0.096,0.033-0.189,0.08-0.284,0.124
c0.029,1.541,0.283,3.026,0.743,4.42c0.156-0.062,0.335-0.079,0.522-0.085C1.79,19.6,2.307,19.617,2.802,19.521z" />
<path fill="#656565" d="M18.341,2.246c-0.286,0.675,0.038,2.159,0.536,2.561c0.001,0,0.001-0.001,0.002-0.001
c0.13-0.125,0.263-0.25,0.393-0.375c0,0,0,0-0.001,0c-0.184-0.041-0.491-0.119-0.288-0.324c0.545-0.55,0.285-1.085,0.156-1.681
c-0.134-0.615-0.211-1.313,0.354-1.74C19.26,0.612,19.02,0.561,18.783,0.5c-0.04,0.168-0.061,0.352-0.083,0.559
C18.652,1.48,18.505,1.86,18.341,2.246z" />
<path fill="#555555"
d="M15.574,1.16c-0.279-0.056-0.57-0.249-0.765,0.092c-0.184,0.322,0.105,0.53,0.269,0.752
c0.151,0.205,0.357,0.376,0.482,0.594c0.344,0.594,0.334,1.127-0.429,1.352c-0.74,0.219-1.062,0.756-1.254,1.432c0,0,0,0,0,0.001
c0.876-0.717,1.807-1.144,3.008-0.913c0.395,0.075,0.819-0.416,0.658-0.868c-0.318-0.895,0.09-1.626,0.359-2.396
c0.113-0.326,0.205-0.634,0.072-0.909c-0.13-0.026-0.264-0.038-0.395-0.06C17.08,1.04,16.452,1.339,15.574,1.16z" />
<path fill="#343434" d="M12.709,7.448c0.755-0.122,1.525-0.191,2.296-0.194c0.258,0.001,0.516,0.014,0.773,0.028
c-0.155-0.144-0.303-0.294-0.467-0.426C13.472,5.384,13.08,5.419,12.709,7.448z" />
<path fill="#707070" d="M11.25,26.024c0-0.036,0-0.07,0-0.106c-0.179,0.039-0.343,0.062-0.51,0.087
c0.08,0.022,0.151,0.058,0.245,0.06C11.088,26.066,11.173,26.049,11.25,26.024z" />
<path fill="#4A4A4A" d="M24.457,9.252c-0.042-0.371,0.025-0.861-0.434-0.941c-0.428-0.073-0.322,0.377-0.32,0.623
c0.003,0.407,0.038,0.909,0.545,0.944C24.555,9.899,24.4,9.474,24.457,9.252z" />
<path fill="#4A4A4A" d="M25.611,6.342L25.611,6.342c-0.18,0.459-0.886,0.397-0.959,0.96c0,0.002-0.002,0.004-0.002,0.007
c0.563-0.478,1.004-0.332,1.408,0.238c0.189,0.271,0.547,0.469,0.791,0.152c0.238-0.312-0.232-0.335-0.367-0.505
C26.37,7.05,26.284,6.885,26.186,6.73C25.995,6.601,25.802,6.471,25.611,6.342z" />
<path fill="#5F5F5F" d="M25.611,6.342c0.19,0.129,0.384,0.259,0.574,0.388c-0.312-0.978-1.125-0.954-1.924-0.961
C24.624,6.167,25.193,6.076,25.611,6.342L25.611,6.342z" />
<path fill="#4A4A4A" d="M25.059,11.456c-0.021-0.171-0.127-0.222-0.261-0.189c-0.226,0.057-0.381,0.205-0.422,0.438
c-0.026,0.138,0.05,0.26,0.196,0.233C24.834,11.889,24.989,11.701,25.059,11.456z" />
<path fill="#5C5C5C" d="M8.098,3.083c0.203-0.082,0.55-0.196,0.386-0.419c-0.2-0.272-0.348-0.597-0.544-0.895
C7.757,1.867,7.584,1.978,7.406,2.083C7.551,2.473,7.561,2.952,8.098,3.083z" />
<path fill="#5C5C5C" d="M9.632,3.616c0.318,0.151,0.609,0.018,0.781-0.372c-0.364-0.192-0.718-0.378-1.156-0.609
C9.174,3.117,9.292,3.455,9.632,3.616z" />
<path fill="#5C5C5C"
d="M11.11,3.998c-0.137,0.621-0.19,1.052,0.082,1.631C11.428,5.023,11.463,4.593,11.11,3.998z" />
<path fill="#414141" d="M4.14,10.538c-0.451,0.348-0.54,0.862-0.365,1.38c0.185,0.546,0.627,0.772,1.142,0.762
c0.259-0.03,0.505-0.057,0.752-0.084c0.18-0.662,0.461-1.262,0.839-1.796c-0.344-0.009-0.693,0.03-0.983-0.236
C5.07,10.147,4.583,10.195,4.14,10.538z" />
</g>
</g>
</svg></a>
<a href="https://twitter.com/Aakeocaine" target="_blank"><svg version="1.1" class="twitter-icon" id="Layer_1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="30px"
height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
<g>
</g>
<g>
<path fill="#4A4A4A" d="M25.529,20.418L25.529,20.418c0.587-0.113,1.102-0.18,0.514,0.648c-0.193,0.275-0.148,0.582,0.036,0.848
c0.54,0.781,0.067,1.264-0.578,1.445c-1.108,0.311-1.791,1.049-2.384,1.941c-0.271,0.408-0.605,0.697-1.126,0.533
c-0.378-0.121-0.609-0.402-0.562-0.822c0.06-0.535,0.42-0.748,0.92-0.832c0.293-0.047,0.588-0.137,0.864-0.246
c0.241-0.096,0.361-0.312,0.359-0.576c-0.005-0.275-0.118-0.479-0.421-0.486c-0.563-0.014-0.731-0.596-1.158-0.795
c-0.246-0.113-0.52-0.26-0.756-0.025c-0.24,0.236-0.02,0.438,0.126,0.623c0.56,0.729,0.067,1.174-0.456,1.559
c-0.405,0.303-0.869,0.527-1.314,0.775c-0.707,0.393-1.005,0.879-1.033,1.787c-0.031,1.023-0.331,2.07-0.945,2.961
c0.747-0.131,1.474-0.316,2.178-0.553c-0.208-0.27-0.304-0.576-0.094-0.943c0.306-0.533,0.846-0.666,1.416-0.553
c0.38,0.076,0.754,0.213,1.104,0.383c0.019,0.008,0.037,0.012,0.057,0.021c2.787-1.551,5.02-3.967,6.355-6.881
c-0.605-0.105-1.211-0.385-1.529-0.775C26.648,19.893,26.126,19.881,25.529,20.418z" />
<path fill="#5C5C5C" d="M13.172,2.048c-0.626,0.868-0.063,1.426,0.442,2.04c0.295,0.361,0.838,0.716,0.259,1.287
c-0.192,0.188-0.045,0.332,0.147,0.4c0.467,0.165,0.715,0.553,0.901,0.959c0.218,0.471,0.526,0.769,1.03,0.92
c0.278,0.084,0.53,0.285,0.769,0.462c0.434,0.327,0.734,0.667,0.074,1.102c-0.144,0.095-0.208,0.318-0.299,0.494
c0.65-0.634,1.536-1.027,2.515-1.027c0.248,0,0.489,0.027,0.723,0.075c0.531-0.356,1.074-0.717,1.693-0.933
c0.233-0.082,0.397-0.334,0.392-0.572c-0.025-1.12,0.209-2.281-0.603-3.274c-0.454-0.555-0.747-1.114-0.554-1.966
c0.068-0.303,0.045-0.627-0.07-0.925C18.862,0.394,16.979,0,15,0c-0.626,0-1.239,0.051-1.847,0.126
c0.109,0.343,0.149,0.795,0.179,1.135C13.353,1.521,13.313,1.848,13.172,2.048z" />
<path fill="#5C5C5C" d="M10.456,20.838c0.622-0.254,1.211-0.572,1.732-0.98c-0.668-0.012-1.285-0.213-1.817-0.541
c-0.014,0.207-0.028,0.414-0.024,0.623C10.354,20.354,10.381,20.637,10.456,20.838z" />
<path fill="#5C5C5C" d="M10.293,2.532c0.492,0.14,0.586,0.634,0.581,1.117c-0.004,0.326-0.111,0.662,0.057,0.978
c0.188,0.35,0.342,0.578,0.816,0.237c1.195-0.866,1.219-0.836,0.081-1.854c-0.091-0.08-0.238-0.166-0.245-0.255
c-0.066-0.989-0.762-1.171-1.559-1.392C9.762,1.291,9.692,1.144,9.71,0.979C9.478,1.067,9.243,1.151,9.017,1.251
C9.278,1.817,9.577,2.328,10.293,2.532z" />
<path fill="#444444"
d="M19.594,25.008c0.445-0.248,0.909-0.473,1.314-0.775c0.523-0.385,1.016-0.83,0.456-1.559
c-0.146-0.186-0.366-0.387-0.126-0.623c0.236-0.234,0.51-0.088,0.756,0.025c0.427,0.199,0.595,0.781,1.158,0.795
c0.303,0.008,0.416,0.211,0.421,0.486c0.002,0.264-0.118,0.48-0.359,0.576c-0.276,0.109-0.571,0.199-0.864,0.246
c-0.5,0.084-0.86,0.297-0.92,0.832c-0.048,0.42,0.184,0.701,0.562,0.822c0.521,0.164,0.854-0.125,1.126-0.533
c0.593-0.893,1.275-1.631,2.384-1.941c0.646-0.182,1.118-0.664,0.578-1.445c-0.185-0.266-0.229-0.572-0.036-0.848
c0.588-0.828,0.073-0.762-0.514-0.648l0,0c-0.001,0-0.001,0-0.002,0.002c-0.633,0.02-1.018-0.256-1.109-0.91
c-0.062-0.436-0.378-0.754-0.629-1.068c-0.389-0.492-0.607-1.018-0.611-1.636c0-0.002,0.001-0.002,0.002-0.004
c-0.001,0.002-0.001,0.002-0.002,0.002c0.065-0.537,0.734-0.475,0.903-0.909c-0.394-0.252-0.931-0.166-1.269-0.539
c0.001,0,0.002,0,0.003,0c-0.001-0.001-0.002-0.001-0.003-0.001c-0.166-0.073-0.333-0.145-0.499-0.217
c-0.138,0.558-0.324,1.111-0.556,1.652c0.113,0.243,0.176,0.499-0.01,0.669c-0.444,0.408-0.695,0.979-1.139,1.383
c-0.283,0.395-0.604,0.764-0.946,1.117c0.074,0.152,0.215,0.328,0.437,0.551c0.328,0.332,0.643,0.67,0.457,1.182
c-0.162,0.438-0.545,0.525-0.959,0.527c-0.789,0-1.296-0.691-0.938-1.346c-1.63,1.281-3.738,2.105-6.301,2.105
c-1.215,0-2.369-0.236-3.446-0.627c-0.013,0.01-0.02,0.018-0.032,0.025c-0.777,0.568-1.395,1.219-2.52,0.848
c-0.461-0.152-0.883,0.357-1.219,0.777c-0.358,0.445-0.736,0.914-1.305,0.986C6.583,28.057,10.562,30,15,30
c0.894,0,1.765-0.094,2.615-0.244c0.614-0.891,0.914-1.938,0.945-2.961C18.589,25.887,18.887,25.4,19.594,25.008z M23.384,20.518
c0.147,0,0.189,0.107,0.159,0.258c-0.109,0.188-0.229,0.408-0.507,0.369c-0.138-0.02-0.147-0.162-0.101-0.277
C23.016,20.67,23.157,20.521,23.384,20.518z M22.552,17.738c0.496,0.082,0.396,0.57,0.447,0.938
c-0.062,0.201,0.087,0.605-0.245,0.543c-0.443-0.084-0.473-0.549-0.47-0.939C22.284,18.062,22.236,17.688,22.552,17.738z" />
<path fill="#444444"
d="M21.115,27.707c-0.57-0.113-1.11,0.02-1.416,0.553c-0.21,0.367-0.114,0.674,0.094,0.943
c0.865-0.293,1.696-0.654,2.482-1.092c-0.02-0.01-0.038-0.014-0.057-0.021C21.869,27.92,21.495,27.783,21.115,27.707z" />
<path fill="#444444" d="M10.335,17.256c0,0.02-0.001,0.039-0.002,0.059c0.039-0.01,0.08-0.014,0.118-0.023
C10.411,17.283,10.374,17.266,10.335,17.256z" />
<path fill="#444444" d="M10.456,20.838c-0.075-0.201-0.103-0.484-0.109-0.898c-0.004-0.209,0.011-0.416,0.024-0.623
c-0.079-0.049-0.159-0.096-0.233-0.15c-0.059,0.258-0.131,0.504-0.393,0.615c-0.729,0.314-0.717,0.865-0.467,1.426
C9.686,21.117,10.077,20.994,10.456,20.838z" />
<path fill="#4A4A4A" d="M0.365,14.538c0.151,0.151,0.089,0.334-0.019,0.492c-0.347,0.509-0.285,1,0.002,1.521
c0.506,0.923,1.342,1.013,2.254,0.964c0.822-0.047,0.879-0.726,1.021-1.282c0.172-0.679,0.83-1.082,0.922-1.817
c0.047-0.362,0.145-0.681-0.023-1.037c-0.355-0.762-0.01-1.434,0.406-2.021c0.428-0.61,1.258-0.419,1.961,0.381
c0.001,0,0.002,0,0.002,0c-0.043-0.231-0.086-0.464-0.144-0.794c0.48,0.22,0.706,0.613,0.921,0.998
c-0.057-0.255-0.092-0.518-0.092-0.789c0-0.659,0.179-1.28,0.486-1.812c1.645,2.02,4.042,3.385,6.764,3.701
c0.016-0.201-0.057-0.431-0.197-0.673c-0.117-0.204-0.312-0.366-0.455-0.559c-0.154-0.208-0.425-0.404-0.253-0.707
c0.185-0.322,0.458-0.142,0.72-0.088c0.396,0.08,0.731,0.04,1.033-0.088c0.184-0.449,0.451-0.854,0.789-1.191
c-0.807-0.446-1.503,0.076-2.232,0.267c-0.16,0.041-0.273,0.243-0.437,0.305c-0.291,0.113-0.637,0.36-0.888-0.021
c-0.199-0.297-0.021-0.596,0.212-0.798c0.287-0.249,0.438-0.555,0.556-0.904c0.098-0.289,0.154-0.535-0.219-0.64
c-0.338-0.095-0.506,0.062-0.571,0.388c-0.05,0.249,0.065,0.622-0.278,0.689c-0.361,0.072-0.424-0.349-0.637-0.534
c-0.869-0.765-1.313-1.789-1.871-2.766C9.744,5.1,8.897,4.846,8.229,4.838C7.567,4.832,6.42,4.344,6.372,5.769
c-0.001,0.063-0.25,0.12-0.383,0.181C6.218,6.295,6.358,6.55,5.743,6.677C4.187,6.996,4.394,6.983,4.37,5.41
c0.219-0.464,0.315-0.873,0.234-1.205C1.89,6.82,0.167,10.443,0.026,14.473c0.01-0.005,0.014-0.013,0.024-0.018
C0.138,14.423,0.299,14.472,0.365,14.538z M2.075,11.084c0.393,0.019,0.559,0.295,0.621,0.632c0.003,0.25-0.057,0.468-0.318,0.478
c-0.441,0.018-0.521-0.33-0.581-0.662C1.758,11.308,1.776,11.071,2.075,11.084z" />
<path fill="#4A4A4A" d="M7.606,12.828c0.191,0.051,0.363,0.142,0.53,0.245c-0.079-0.127-0.151-0.258-0.216-0.395
C7.835,12.742,7.704,12.789,7.606,12.828z" />
<path fill="#555555" d="M4.37,5.41c0.865-0.801,1.085,0.343,1.619,0.539c0.133-0.061,0.382-0.117,0.383-0.181
C6.42,4.344,7.567,4.832,8.229,4.838C8.897,4.846,9.744,5.1,10.099,5.724c0.558,0.977,1.002,2.001,1.871,2.766
c0.213,0.186,0.275,0.606,0.637,0.534c0.344-0.067,0.229-0.44,0.278-0.689c0.065-0.325,0.233-0.482,0.571-0.388
c0.373,0.104,0.316,0.351,0.219,0.64c-0.117,0.35-0.269,0.655-0.556,0.904c-0.233,0.202-0.411,0.501-0.212,0.798
c0.251,0.382,0.597,0.135,0.888,0.021c0.163-0.062,0.276-0.264,0.437-0.305c0.729-0.19,1.426-0.713,2.232-0.267
c0.01-0.01,0.022-0.017,0.032-0.026c0.091-0.176,0.155-0.399,0.299-0.494c0.66-0.435,0.359-0.774-0.074-1.102
c-0.238-0.177-0.49-0.378-0.769-0.462c-0.504-0.151-0.812-0.449-1.03-0.92c-0.187-0.406-0.435-0.794-0.901-0.959
c-0.192-0.068-0.34-0.212-0.147-0.4c0.579-0.571,0.036-0.926-0.259-1.287c-0.506-0.614-1.068-1.172-0.442-2.04
c0.142-0.2,0.181-0.527,0.16-0.787c-0.029-0.34-0.069-0.792-0.179-1.135c-1.198,0.147-2.35,0.44-3.443,0.854
c-0.018,0.164,0.052,0.312,0.314,0.384c0.797,0.221,1.492,0.402,1.559,1.392c0.007,0.089,0.154,0.175,0.245,0.255
c1.138,1.019,1.114,0.988-0.081,1.854c-0.475,0.341-0.628,0.112-0.816-0.237c-0.168-0.315-0.061-0.651-0.057-0.978
c0.005-0.483-0.089-0.978-0.581-1.117C9.577,2.328,9.278,1.817,9.017,1.251C7.37,1.969,5.881,2.977,4.604,4.205
C4.686,4.537,4.589,4.946,4.37,5.41z" />
<path fill="#6E6E6E" d="M27.393,10.078c-0.216-0.171-0.557-0.133-0.767,0.054c-0.7,0.618-1.108,0.257-1.463-0.386
c0,0,0-0.001,0-0.002c-0.001,0.001-0.001,0.001-0.001,0.001c-0.189-0.907-0.76-1.609-1.265-2.347c-0.001,0-0.001,0-0.001,0
c-0.181-0.004-0.357-0.005-0.539-0.006c-0.779,0.498-1.549,0.986-2.494,1.178c-0.218,0.044-0.426,0.182-0.621,0.346
c0.536,0.194,1.02,0.496,1.402,0.905c0.823-0.164,1.595-0.463,2.291-0.875c-0.271,0.846-0.838,1.549-1.588,1.998
c0.734-0.089,1.43-0.284,2.073-0.568c-0.487,0.727-1.101,1.362-1.804,1.871c0.008,0.15,0.008,0.308,0.008,0.464
c0,0.799-0.11,1.616-0.312,2.427c0.166,0.072,0.333,0.144,0.499,0.217c0.001,0,0.002,0,0.003,0.001
c0.749,0.006,1.511-0.017,1.806,0.903c0.186,0.104,0.357,0.223,0.551,0.309c0.135,0.062,0.305,0.121,0.407-0.037
c0.095-0.145,0.014-0.299-0.08-0.416c-0.377-0.464-0.748-0.93-1.146-1.375c-0.358-0.402-0.434-0.792-0.013-1.178
c0.505-0.457,0.493-0.985,0.284-1.568c-0.128-0.348-0.232-0.72,0.221-0.932c0.413-0.196,0.769-0.064,1.047,0.27
c0.368,0.442,0.611,0.945,0.783,1.505c0.387,1.234,0.764,1.425,2.027,1.15c0.747-0.162,1.145,0.048,1.28,0.682
c-0.009-0.395-0.021-0.788-0.06-1.175c-0.092-0.016-0.181-0.036-0.257-0.08c-0.406-0.231-1.007-0.471-0.704-1.048
c0.166-0.321,0.447-0.391,0.742-0.322c-0.093-0.461-0.209-0.913-0.343-1.357C28.827,10.136,27.969,10.531,27.393,10.078z
M27.8,12.954c-0.381,0.018-0.618-0.185-0.694-0.547c-0.043-0.198,0.049-0.381,0.274-0.351c0.338,0.043,0.595,0.239,0.741,0.542
C28.131,12.836,28.005,12.945,27.8,12.954z" />
<path fill="#434343" d="M21.917,2.149c0,0.001,0,0.001,0,0.002c0.115,0.24,0.231,0.481,0.347,0.722l0,0
c0.152,0.688,0.549,1.238,1,1.751c0.622,0.715,0.531,1.391-0.074,2.055l0,0c0,0,0,0,0,0.001c0.057,0.236,0.112,0.475,0.168,0.713
c0.182,0.001,0.358,0.002,0.539,0.006c0,0,0,0,0.001,0c-0.001-0.001-0.001-0.001-0.001-0.001c0.434-0.402,0.742-0.938,1.326-1.175
c0.094-0.039,0.213-0.193,0.203-0.28c-0.052-0.508,0.113-0.975,0.274-1.441c-0.994-1.014-2.132-1.884-3.38-2.584
C22.188,1.995,22.052,2.071,21.917,2.149L21.917,2.149z" />
<path fill="#434343" d="M26.559,7.151c0.231,1.298,0.088,1.439-1.396,1.478c0.209,0.381,0.364,0.77,0,1.115
c0,0.001,0,0.002,0,0.002c0.354,0.643,0.763,1.004,1.463,0.386c0.21-0.187,0.551-0.225,0.767-0.054
c0.576,0.453,1.435,0.058,1.97,0.607c-0.443-1.475-1.103-2.855-1.948-4.101c-0.078,0.012-0.163,0.018-0.255,0.016
C26.721,6.591,26.456,6.575,26.559,7.151z" />
<path fill="#212121" d="M3.313,19.873c1.051-2.076,2.813-2.77,4.869-3.038c0.307-0.041,0.594-0.096,0.868-0.174
c-0.902-0.657-1.495-1.708-1.495-2.91v-0.045c0.485,0.27,1.039,0.435,1.631,0.449c-0.424-0.28-0.778-0.652-1.05-1.082
c-0.167-0.104-0.339-0.194-0.53-0.245c-0.572-0.141-0.504-0.707-0.715-1.087c0,0,0-0.001,0-0.002c0,0-0.001,0-0.002,0
c-0.703-0.8-1.533-0.991-1.961-0.381c-0.416,0.587-0.762,1.259-0.406,2.021c0.168,0.356,0.07,0.675,0.023,1.037
c-0.092,0.735-0.75,1.139-0.922,1.817c-0.143,0.557-0.199,1.235-1.021,1.282c-0.912,0.049-1.748-0.041-2.254-0.964
C0.062,16.03,0,15.539,0.347,15.03c0.107-0.158,0.17-0.341,0.019-0.492c-0.066-0.066-0.228-0.115-0.314-0.083
c-0.011,0.005-0.015,0.013-0.024,0.018C0.021,14.649,0,14.822,0,15c0,2.787,0.775,5.389,2.102,7.625
C2.602,21.766,2.872,20.744,3.313,19.873z" />
<path fill="#5F5F5F" d="M28.703,13.986c-1.264,0.274-1.641,0.084-2.027-1.15c-0.172-0.56-0.415-1.062-0.783-1.505
c-0.278-0.334-0.634-0.466-1.047-0.27c-0.453,0.212-0.349,0.584-0.221,0.932c0.209,0.583,0.221,1.111-0.284,1.568
c-0.421,0.386-0.346,0.775,0.013,1.178c0.397,0.445,0.769,0.911,1.146,1.375c0.094,0.117,0.175,0.271,0.08,0.416
c-0.103,0.158-0.272,0.1-0.407,0.037c-0.193-0.086-0.365-0.205-0.551-0.309c0.093,0.146,0.172,0.303,0.279,0.438
c0.125,0.16,0.57,0.182,0.348,0.474c-0.23,0.297-0.568,0.111-0.747-0.143c-0.379-0.534-0.79-0.673-1.321-0.226
c-0.001,0.002-0.002,0.002-0.002,0.004c0.004,0.618,0.223,1.144,0.611,1.636c0.251,0.314,0.566,0.633,0.629,1.068
c0.092,0.654,0.477,0.93,1.109,0.91c0.001-0.002,0.001-0.002,0.002-0.002c0.597-0.537,1.119-0.525,1.572,0.037
c0.318,0.391,0.924,0.67,1.529,0.775C29.502,19.33,30,17.225,30,15c0-0.112-0.015-0.221-0.017-0.332
C29.848,14.034,29.45,13.824,28.703,13.986z" />
<path fill="#313131"
d="M5.142,24.002c0.336-0.42,0.758-0.93,1.219-0.777c1.125,0.371,1.742-0.279,2.52-0.848
c0.013-0.008,0.02-0.016,0.032-0.025c-0.685-0.248-1.339-0.553-1.942-0.936c-0.169,0.125-0.389,0.205-0.621,0.238
c-0.565,0.076-1.138,0.131-1.729,0.199c-0.515,0-0.925-0.225-1.086-0.748c-0.144-0.459-0.065-0.924,0.321-1.238
c0.408-0.334,0.869-0.418,1.311-0.02c0.328,0.297,0.727,0.209,1.113,0.248c0.457,0.039,0.979,0.205,0.994,0.729
c0.006,0.229-0.092,0.4-0.239,0.533c0.222,0.021,0.444,0.041,0.672,0.041c0.543,0,1.063-0.08,1.573-0.191
c-0.25-0.561-0.262-1.111,0.467-1.426c0.262-0.111,0.334-0.357,0.393-0.615c-0.613-0.445-1.082-1.076-1.318-1.814
c0.225,0.045,0.449,0.066,0.682,0.066c0.287,0,0.566-0.041,0.832-0.104c0.001-0.02,0.002-0.039,0.002-0.059
c-0.473-0.113-0.904-0.317-1.284-0.595c-0.274,0.078-0.562,0.133-0.868,0.174c-2.056,0.269-3.818,0.962-4.869,3.038
c-0.441,0.871-0.712,1.893-1.212,2.752c0.501,0.846,1.083,1.637,1.735,2.363C4.405,24.916,4.783,24.447,5.142,24.002z" />
<path fill="#4C4C4C" d="M28.963,12.365c-0.303,0.577,0.298,0.816,0.704,1.048c0.076,0.044,0.165,0.064,0.257,0.08
c-0.049-0.491-0.124-0.975-0.219-1.45C29.41,11.975,29.129,12.044,28.963,12.365z" />
<path fill="#656565"
d="M20.662,2.015c-0.193,0.852,0.1,1.411,0.554,1.966c0.812,0.993,0.577,2.154,0.603,3.274
c0.006,0.238-0.158,0.49-0.392,0.572c-0.619,0.216-1.162,0.576-1.693,0.933c0.177,0.035,0.343,0.096,0.509,0.156
c0.195-0.164,0.403-0.302,0.621-0.346c0.945-0.191,1.715-0.68,2.494-1.178c-0.056-0.238-0.111-0.477-0.168-0.713
c0-0.001,0-0.001,0-0.001c-0.567-0.072-0.621-0.535-0.619-0.938c0.003-0.741-0.271-1.323-0.786-1.825
c-0.192-0.188-0.388-0.389-0.252-0.701c0.145-0.329,0.401-0.413,0.731-0.341c-0.115-0.24-0.231-0.481-0.347-0.722
c0-0.001,0-0.001,0-0.002c-0.223,0.066-0.468,0.236-0.656,0.005c-0.196-0.241,0.054-0.437,0.164-0.631
c0.01-0.017,0.021-0.029,0.03-0.046c-0.284-0.136-0.569-0.269-0.863-0.388C20.707,1.388,20.73,1.712,20.662,2.015z" />
<path fill="#555555"
d="M15.501,13.114c-0.066-0.262-0.098-0.539-0.098-0.823c0-0.482,0.099-0.941,0.271-1.361
c-0.302,0.128-0.637,0.168-1.033,0.088c-0.262-0.054-0.535-0.234-0.72,0.088c-0.172,0.303,0.099,0.499,0.253,0.707
c0.143,0.192,0.338,0.354,0.455,0.559c0.141,0.242,0.213,0.472,0.197,0.673C15.052,13.07,15.272,13.104,15.501,13.114z" />
<path fill="#4A4A4A" d="M21.748,17.459c0.186-0.17,0.123-0.426,0.01-0.669c-0.307,0.714-0.684,1.407-1.148,2.052
C21.053,18.438,21.304,17.867,21.748,17.459z" />
<path fill="#4A4A4A"
d="M18.659,20.873c-0.357,0.654,0.149,1.346,0.938,1.346c0.414-0.002,0.797-0.09,0.959-0.527
c0.186-0.512-0.129-0.85-0.457-1.182c-0.222-0.223-0.362-0.398-0.437-0.551C19.352,20.283,19.019,20.59,18.659,20.873z" />
<path fill="#4A4A4A" d="M22.754,19.219c0.332,0.062,0.184-0.342,0.245-0.543c-0.051-0.367,0.049-0.855-0.447-0.938
c-0.315-0.051-0.268,0.324-0.268,0.541C22.281,18.67,22.311,19.135,22.754,19.219z" />
<path fill="#4A4A4A" d="M24.081,15.895c-0.169,0.435-0.838,0.372-0.903,0.909c0.001,0,0.001,0,0.002-0.002
c0.531-0.447,0.942-0.309,1.321,0.226c0.179,0.254,0.517,0.439,0.747,0.143c0.223-0.292-0.223-0.313-0.348-0.474
c-0.107-0.135-0.187-0.291-0.279-0.438C24.439,16.136,24.262,16.014,24.081,15.895z" />
<path fill="#5F5F5F" d="M24.081,15.895c0.181,0.119,0.358,0.241,0.54,0.364c-0.295-0.92-1.057-0.897-1.806-0.903
c-0.001,0-0.002,0-0.003,0C23.15,15.729,23.688,15.643,24.081,15.895z" />
<path fill="#4A4A4A" d="M23.036,21.145c0.278,0.039,0.397-0.182,0.507-0.369c0.03-0.15-0.012-0.258-0.159-0.258
c-0.227,0.004-0.368,0.152-0.448,0.35C22.889,20.982,22.898,21.125,23.036,21.145z" />
<path fill="#303030" d="M4.37,5.41c0.023,1.573-0.184,1.586,1.373,1.267C6.358,6.55,6.218,6.295,5.989,5.949
C5.455,5.753,5.235,4.609,4.37,5.41z" />
<path fill="#5C5C5C" d="M7.921,12.679c-0.108-0.233-0.194-0.479-0.252-0.735c-0.215-0.385-0.44-0.778-0.921-0.998
c0.058,0.33,0.101,0.562,0.144,0.794c0,0.001,0,0.002,0,0.002c0.211,0.38,0.143,0.946,0.715,1.087
C7.704,12.789,7.835,12.742,7.921,12.679z" />
<path fill="#262626" d="M2.378,12.193c0.262-0.01,0.321-0.228,0.318-0.478c-0.062-0.337-0.229-0.613-0.621-0.632
c-0.299-0.013-0.317,0.224-0.278,0.447C1.856,11.863,1.937,12.211,2.378,12.193z" />
<path fill="#565656" d="M25.426,5.942c0.01,0.087-0.109,0.241-0.203,0.28c-0.584,0.236-0.893,0.772-1.326,1.175
c0,0,0,0,0.001,0.001c0.505,0.737,1.075,1.439,1.265,2.347c0,0,0,0,0.001-0.001c0.364-0.346,0.209-0.734,0-1.115
c1.483-0.038,1.627-0.18,1.396-1.478c-0.103-0.576,0.162-0.561,0.601-0.551c0.092,0.002,0.177-0.004,0.255-0.016
C26.906,5.838,26.33,5.143,25.7,4.501C25.539,4.968,25.374,5.435,25.426,5.942z" />
<path fill="#5F5F5F" d="M27.38,12.057c-0.226-0.03-0.317,0.152-0.274,0.351c0.076,0.362,0.313,0.564,0.694,0.547
c0.205-0.009,0.331-0.118,0.321-0.355C27.975,12.296,27.718,12.1,27.38,12.057z" />
<path fill="#6E6E6E" d="M23.264,4.624c-0.451-0.513-0.848-1.063-1-1.751l0,0c-0.33-0.072-0.587,0.012-0.731,0.341
c-0.136,0.312,0.06,0.514,0.252,0.701c0.515,0.502,0.789,1.084,0.786,1.825c-0.002,0.403,0.052,0.866,0.619,0.938l0,0
C23.795,6.015,23.886,5.339,23.264,4.624z" />
<path fill="#6E6E6E"
d="M21.261,2.154c0.188,0.231,0.434,0.062,0.656-0.005h0.001c0.134-0.078,0.27-0.154,0.402-0.232
c-0.281-0.158-0.572-0.299-0.865-0.439c-0.01,0.017-0.021,0.029-0.03,0.046C21.314,1.718,21.064,1.913,21.261,2.154z" />
<path fill="#414141" d="M7.033,21.357c0.147-0.133,0.245-0.305,0.239-0.533c-0.015-0.523-0.537-0.689-0.994-0.729
c-0.387-0.039-0.785,0.049-1.113-0.248c-0.441-0.398-0.902-0.314-1.311,0.02c-0.387,0.314-0.465,0.779-0.321,1.238
c0.161,0.523,0.571,0.748,1.086,0.748c0.592-0.068,1.164-0.123,1.729-0.199c0.232-0.033,0.452-0.113,0.621-0.238
c-0.04-0.025-0.085-0.043-0.125-0.068C6.907,21.355,6.972,21.352,7.033,21.357z" />
</g>
</svg></a>
<a href="https://www.linkedin.com/in/aaron-keohane-47112430/" target="_blank"><svg version="1.1" class="linkedin-icon"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="30px" height="30px" viewBox="0 0 30 30" enable-background="new 0 0 30 30" xml:space="preserve">
<g>
</g>
<g>
<path fill="#FEFEFE"
d="M30,15c0-0.01-0.002-0.019-0.002-0.029c0,0.032,0,0.063-0.001,0.095C29.997,15.044,30,15.022,30,15z" />
<polygon fill="#4A4A4A" points="25.338,17.136 25.338,17.136 25.338,17.136 " />
<path fill="#4A4A4A" d="M26.965,17.173c-0.47-0.581-1.007-0.593-1.626-0.037c0.605-0.118,1.136-0.184,0.53,0.669
c-0.203,0.286-0.156,0.602,0.035,0.875c0.557,0.805,0.07,1.303-0.596,1.49c-0.363,0.103-0.671,0.262-0.957,0.443v2.816h-3.894
v-2.286c-0.393,0.273-0.824,0.495-1.245,0.729c-0.729,0.404-1.035,0.904-1.064,1.844c-0.037,1.176-0.392,2.391-1.186,3.368
c-0.283,0.349-0.455,0.664-0.104,1.063c0.314,0.358,0.636,0.605,1.103,0.223c0.297-0.244,0.644-0.152,0.983-0.12
c0.492,0.047,0.83-0.201,1.029-0.642c0.188-0.42,0.107-0.781-0.246-1.086c-0.403-0.347-0.711-0.762-0.404-1.297
c0.314-0.552,0.871-0.687,1.46-0.568c0.392,0.078,0.778,0.22,1.141,0.394c0.726,0.349,1.417,0.423,2.109-0.071
c0.227-0.162,0.5-0.346,0.731-0.024c0.202,0.278,0.062,0.563-0.147,0.753c-0.562,0.503-0.988,1.058-1.209,1.709
c3.207-2.177,5.524-5.563,6.302-9.503C28.891,18.21,27.514,17.851,26.965,17.173z" />
<path fill="#5C5C5C"
d="M13.314,1.612c-0.198,0.194-0.046,0.342,0.152,0.412c0.484,0.171,0.738,0.57,0.932,0.99
c0.224,0.486,0.543,0.794,1.063,0.95c0.286,0.087,0.546,0.293,0.791,0.478c0.448,0.337,0.759,0.688,0.079,1.136
c-0.159,0.104-0.222,0.36-0.326,0.546c-0.001,0-0.001,0-0.002-0.001c0,0,0,0,0,0.001c0.062,0.062,0.125,0.124,0.187,0.187
c0,0,0,0,0,0c0.451,0.332,0.328,0.734,0.176,1.17c-0.262,0.747-0.658,1.457-0.35,2.324c0.157,0.439-0.255,0.916-0.639,0.843
c-1.164-0.222-2.067,0.192-2.918,0.888c-0.675,0.133-1.419,0.118-1.721,0.956c-0.058,0.163-0.241,0.183-0.427,0.203v5.307
c0.19,0.044,0.434,0.064,0.755,0.073c0.425,0.011,0.781,0.188,1.124,0.398c0.095,0.059,0.195,0.103,0.293,0.151
c0.004-1.403,0.006-2.892,0.005-4.134c-0.134,0.007-0.267,0.027-0.401,0.03c0,0,0,0,0-0.001c0,0,0,0-0.001,0
c-0.27,0.102-0.46,0.559-0.785,0.312c-0.269-0.203-0.099-0.577-0.05-0.878c0.265-1.637,0.503-2.19,1.224-1.906
c-0.002-0.146-0.005-0.26-0.009-0.331h3.894v1.169c0.021,0.014,0.041,0.029,0.06,0.038c0.06,0.03,0.125,0.064,0.186,0.102
c0.229-0.305,0.52-0.625,0.907-0.898c-0.01-0.478-0.068-0.907-0.199-1.152c0,0,0,0,0,0c-0.481-0.39-0.797-1.83-0.52-2.485
c0.158-0.374,0.303-0.742,0.348-1.152c0.07-0.646,0.084-1.064,0.965-1.476c0.996-0.464,1.881-1.327,3.004-1.72
c0.24-0.084,0.412-0.345,0.406-0.59c-0.017-0.69,0.06-1.395-0.053-2.07C19.504,0.542,17.317,0,15,0
c-0.701,0-1.385,0.065-2.061,0.158c0.035,0.042,0.07,0.084,0.105,0.127C13.351,0.658,13.912,1.022,13.314,1.612z" />
<path fill="#5C5C5C" d="M11.118,1.084c0.521-0.376,0.813-0.588,0.904-0.786c-0.604,0.122-1.191,0.289-1.767,0.481
c0.009,0.02,0.01,0.04,0.02,0.06C10.47,1.2,10.63,1.436,11.118,1.084z" />
<path fill="#5C5C5C" d="M16.359,18.176c0.132-0.109,0.245-0.226,0.233-0.419c-0.023-0.401-0.108-0.778-0.22-1.145
c-0.005,0.093-0.014,0.182-0.014,0.276V18.176z" />
<path fill="#444444" d="M24.352,20.613c0.286-0.182,0.594-0.341,0.957-0.443c0.666-0.188,1.152-0.686,0.596-1.49
c-0.191-0.273-0.238-0.589-0.035-0.875c0.605-0.853,0.075-0.787-0.53-0.669l0,0c0,0,0,0-0.001,0l0,0l0,0
c-0.471,0.015-0.802-0.136-0.989-0.469c0,0.017,0.003,0.029,0.003,0.046V20.613z" />
<path fill="#444444" d="M24.618,25.709c0.21-0.189,0.35-0.475,0.147-0.753c-0.231-0.321-0.505-0.138-0.731,0.024
c-0.692,0.494-1.384,0.42-2.109,0.071c-0.362-0.174-0.749-0.315-1.141-0.394c-0.589-0.118-1.146,0.017-1.46,0.568
c-0.307,0.535,0.001,0.95,0.404,1.297c0.354,0.305,0.434,0.666,0.246,1.086c-0.199,0.44-0.537,0.688-1.029,0.642
c-0.34-0.032-0.687-0.124-0.983,0.12c-0.467,0.383-0.788,0.136-1.103-0.223c-0.352-0.399-0.18-0.715,0.104-1.063
c0.794-0.978,1.148-2.192,1.186-3.368c0.029-0.939,0.336-1.439,1.064-1.844c0.421-0.234,0.853-0.456,1.245-0.729v-3.981
c0-0.618-0.091-1.155-0.282-1.585c-0.089,0.072-0.168,0.152-0.275,0.209c-0.861,0.453-0.881,0.717-0.162,1.442
c0.339,0.345,0.664,0.69,0.473,1.221c-0.168,0.451-0.562,0.542-0.99,0.545c-0.838,0-1.377-0.758-0.938-1.45
c0.372-0.593,0.561-1.239,0.809-1.869c0.127-0.321,0.265-0.613,0.498-0.832c-0.288-0.206-0.647-0.329-1.104-0.329
c-1.075,0-1.717,0.725-1.998,1.423c-0.075,0.183-0.101,0.424-0.113,0.675c0.111,0.366,0.196,0.743,0.22,1.145
c0.012,0.193-0.102,0.31-0.233,0.419v5.254h-3.894c0,0,0.011-2.262,0.018-4.806c-0.098-0.049-0.198-0.093-0.293-0.151
c-0.343-0.211-0.699-0.388-1.124-0.398c-0.321-0.009-0.564-0.029-0.755-0.073v5.429H6.416v-3.303
c-0.256,0.031-0.535,0.012-0.857-0.095c-0.475-0.157-0.91,0.37-1.257,0.804c-0.478,0.596-0.987,1.237-1.923,0.971
c0.21,0.479,0.269,0.999,0.511,1.478c0.083,0.164,0.087,0.372,0.04,0.591C5.662,27.582,10.045,30,15,30
c3.116,0,6.01-0.953,8.409-2.582C23.63,26.767,24.057,26.212,24.618,25.709z" />
<path fill="#444444" d="M17.312,10.975c0.131,0.245,0.189,0.674,0.199,1.152c0.556-0.393,1.309-0.686,2.356-0.686
c1.38,0,2.561,0.504,3.369,1.515c0.228-0.138,0.507-0.226,0.608-0.489c0.001,0,0.001,0,0.001,0c0,0-0.001,0-0.001-0.001
c-0.404-0.258-0.957-0.17-1.309-0.556h0.001l0,0c-0.896-0.396-1.808-0.742-2.597-1.36c-0.728-0.569-1.506-0.338-2.246,0.059
C17.568,10.731,17.441,10.853,17.312,10.975z" />
<path fill="#444444" d="M16.604,13.025c-0.061-0.038-0.126-0.072-0.186-0.102c-0.019-0.009-0.039-0.024-0.06-0.038v0.49
C16.432,13.264,16.515,13.146,16.604,13.025z" />
<path fill="#444444" d="M12.087,14.519c0,0.001,0,0.001,0,0.001c0.135-0.003,0.267-0.023,0.401-0.03c0-0.027,0-0.054,0-0.081
C12.354,14.446,12.221,14.483,12.087,14.519z" />
<path fill="#4A4A4A"
d="M1.685,14.142c0.85-0.047,0.908-0.748,1.055-1.324c0.177-0.7,0.855-1.115,0.952-1.875
c0.048-0.374,0.147-0.702-0.024-1.069C3.3,9.087,3.657,8.394,4.085,7.788c0.444-0.63,1.302-0.433,2.025,0.393c0,0,0,0,0.001,0
c0,0,0,0,0,0C6.067,7.94,6.024,7.701,5.962,7.36c0.12,0.055,0.206,0.132,0.298,0.205c0.226-0.877,1.011-1.498,2.13-1.498
c1.331,0,2.151,0.876,2.176,2.024c0,1.111-0.828,2-2.157,2.021c0.174,0.049,0.361,0.071,0.574,0.041
c0.478-0.068,0.512,0.479,0.463,0.844c-0.032,0.242-0.046,0.481-0.051,0.72h0.429c-0.215-0.532-0.164-0.919-0.112-1.33
c0.352,0.409,0.363,0.434,0.171,1.33h0.428v0.979c0.186-0.021,0.369-0.041,0.427-0.203c0.302-0.838,1.046-0.823,1.721-0.956
c0.187-0.656,0.5-1.179,1.219-1.392c0.739-0.218,0.751-0.735,0.416-1.312c-0.123-0.211-0.322-0.377-0.469-0.576
c-0.159-0.215-0.439-0.417-0.261-0.729c0.189-0.331,0.472-0.145,0.742-0.09c0.933,0.19,1.578-0.169,2.083-1.125
c-0.062-0.062-0.125-0.125-0.187-0.187c0,0,0,0,0-0.001c-0.836-0.477-1.562,0.069-2.32,0.268c-0.165,0.043-0.282,0.251-0.448,0.315
c-0.301,0.117-0.656,0.371-0.916-0.022c-0.204-0.308-0.021-0.615,0.219-0.824c0.297-0.257,0.453-0.573,0.573-0.933
c0.1-0.298,0.16-0.552-0.227-0.661c-0.348-0.099-0.521,0.065-0.589,0.399c-0.052,0.258,0.065,0.643-0.288,0.712
c-0.373,0.073-0.438-0.359-0.656-0.551c-0.897-0.79-1.357-1.847-1.93-2.854c-0.15-0.264-0.396-0.449-0.669-0.594
C5.748,2.76,3.277,5.095,1.737,8.007C1.752,8.057,1.77,8.104,1.78,8.157c0.002,0.257-0.057,0.48-0.329,0.491
c-0.009,0-0.013-0.004-0.021-0.004c-0.757,1.612-1.236,3.375-1.374,5.237C0.523,14.147,1.088,14.175,1.685,14.142z" />
<path fill="#555555" d="M9.421,1.972c0.573,1.007,1.033,2.064,1.93,2.854c0.218,0.192,0.283,0.624,0.656,0.551
c0.353-0.069,0.236-0.454,0.288-0.712c0.068-0.334,0.241-0.498,0.589-0.399c0.387,0.109,0.327,0.363,0.227,0.661
c-0.12,0.36-0.276,0.676-0.573,0.933c-0.24,0.209-0.423,0.516-0.219,0.824c0.26,0.393,0.615,0.139,0.916,0.022
c0.166-0.064,0.283-0.272,0.448-0.315c0.758-0.199,1.484-0.745,2.32-0.268c0.001,0,0.001,0,0.002,0.001
c0.104-0.186,0.167-0.442,0.326-0.546c0.68-0.448,0.369-0.799-0.079-1.136c-0.245-0.185-0.505-0.391-0.791-0.478
c-0.52-0.156-0.839-0.464-1.063-0.95c-0.194-0.42-0.448-0.819-0.932-0.99c-0.198-0.07-0.35-0.218-0.152-0.412
c0.598-0.59,0.037-0.954-0.269-1.327c-0.035-0.043-0.07-0.085-0.105-0.127c-0.307,0.042-0.616,0.079-0.917,0.14
c-0.091,0.198-0.383,0.409-0.904,0.786C10.63,1.436,10.47,1.2,10.276,0.839c-0.01-0.02-0.011-0.04-0.02-0.06
C9.741,0.952,9.24,1.153,8.751,1.378C9.024,1.523,9.271,1.708,9.421,1.972z" />
<path fill="#6E6E6E"
d="M26.475,6.519c-0.725,0.639-1.146,0.266-1.51-0.396c0-0.003-0.001-0.007-0.002-0.01
c-0.2-0.931-0.785-1.655-1.307-2.414l0,0c-0.184-0.003-0.368-0.005-0.553-0.007c-0.001,0-0.002-0.001-0.003-0.001
c0.001,0.001,0.001,0.001,0.001,0.002c-0.805,0.515-1.6,1.021-2.574,1.217c-0.385,0.077-0.748,0.432-1.045,0.735
c-0.455,0.463-0.898,0.908-1.469,1.252c-0.67,0.402-0.586,1.132-0.447,1.767c0.125,0.578,0.377,1.099-0.149,1.632
c-0.199,0.199,0.103,0.275,0.278,0.313c0.74-0.397,1.519-0.628,2.246-0.059c0.789,0.618,1.701,0.964,2.597,1.36l0,0
c0.775,0.006,1.563-0.017,1.866,0.932c0.188,0.108,0.371,0.229,0.566,0.319c0.139,0.063,0.315,0.123,0.422-0.04
c0.098-0.147,0.016-0.307-0.082-0.427c-0.39-0.479-0.772-0.962-1.184-1.421c-0.37-0.415-0.449-0.817-0.013-1.215
c0.521-0.473,0.508-1.017,0.29-1.618c-0.129-0.358-0.237-0.742,0.229-0.962c0.429-0.201,0.793-0.065,1.08,0.278
c0.382,0.457,0.634,0.977,0.812,1.554c0.396,1.273,0.787,1.471,2.092,1.188c0.272-0.059,0.495-0.064,0.683-0.026
c-0.112-0.354-0.244-0.699-0.382-1.041c-0.068-0.085-0.108-0.183-0.111-0.296c-0.393-0.921-0.877-1.793-1.438-2.609
c-0.035-0.021-0.072-0.034-0.105-0.061C27.041,6.289,26.689,6.327,26.475,6.519z M28.016,9.065c0.01,0.247-0.119,0.358-0.33,0.367
c-0.395,0.018-0.639-0.19-0.719-0.563c-0.044-0.204,0.051-0.394,0.284-0.363C27.6,8.551,27.863,8.754,28.016,9.065z" />
<path fill="#434343"
d="M24.967,4.97c0.215,0.394,0.377,0.794-0.001,1.151c-0.001-0.003-0.002-0.005-0.003-0.008
c0.001,0.003,0.002,0.007,0.002,0.01c0.363,0.662,0.785,1.035,1.51,0.396c0.215-0.192,0.566-0.23,0.789-0.054