-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1014 lines (923 loc) · 56 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head> <!-- GitPod -->
<!-- ::>> Initials <<:: -->
<meta charset="utf-8" readonly contenteditable="false"/>
<title onchange="">Art4Coding.icu</title>
<meta name="coverage" content="worldwide"/>
<meta name="distribution" content="global"/>
<script src="/Scripts/init.js" charset="utf-8"></script>
<script src="/Scripts/genWorker.js" charset="utf-8"></script>
<meta name="application-name" content="Art4Coding" readonly/> <!-- Removed from the below tag until i know more ::>> itemscope="x" itemtype="x" <<:: -->
<noscript contenteditable="false"> <!-- id="" token="" readonly Id must not be empty && token is not allowed on noscript -->
<iframe src="https://www.art4coding.icu/no_script.html?no_script" class="noscript_frame"
id="x1" width="100" height="100"
style="background:black;
width:100vw; height:100vh;"> <!-- token="" Not sure if iframes are allowed in noscript -->
</iframe> <!-- data-rh="true"-->
</noscript> <!-- Create a very basic page that ask's to enable javascript or update your browser to brave or firefox -->
<!-- ::>> Initials <<:: -->
<!-- ::>> Styles <<:: -->
<link rel="stylesheet" type="text/css" href="main.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" async/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="theme-color" content="crimson"/>
<!-- <meta name="theme-color" content="springgreen"/> -->
<!-- <meta name="theme-color" content="night_mode"/> -->
<!-- <meta name="theme-color" content="preffers_dark"/> -->
<!-- <meta name="theme-color" content="preffers_light"/> -->
<!-- ::>> Styles <<:: -->
<!-- ::>> PreFetch <<:: -->
<link rel="prefetch" data-type="video/mp4" href="/Imgs/VjLoops/starsloop.mp4"
type="video/mp4"/><!-- Decoding="async" does not work for this video --><!-- Revolver Maps Prefetch is throwing an err in console -->
<link rel="prefetch" href="https://rf.revolvermaps.com/0/0/8.js/"
type="application/javascript" decoding="async" charset="utf-8"/>
<link rel="prefetch" href="https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/Opensource.svg/2000px-Opensource.svg.png" type="image/pnng"/>
<!-- <link rel="prefetch" href="https://www.wikiart.org/en/Api/2/login?accessCode=[``]&secretCode=[]"/> -->
<!-- ::>> PreFetch <<:: -->
<!-- ::>> PreConnect <<:: -->
<!-- ::>> PreConnect <<:: -->
<meta name="keywords" content="Art, Coding, Animation, Resources, Stock, Images, Developer,
Webdesign, Assets, Javascript, Html5, Css, Tutorials, Design, Image_processing,
Game_Developement, webgl, data_visualization, image_manipulation, blender,
gamedev"
itemprop="" property="" charset="utf-8" readonly/>
<meta http-equiv="Access-Control-Allow-Headers" content="X-Requested-With"/> <!-- ::>> Double Check what this one does again -->
<meta http-equiv="Access-Control-Allow-Origin" content="*"/> <!-- for fonts wish to allow * origin but nothing else -->
<!-- ::> duplicate this file, one with side notes and one without -->
</head>
<!-- Notes ::>>
-->
<body style="visibility:hidden; display:none; opacity:0;
width:100%; min-width:100vw !important;
min-height:calc(100vh + 2888px);"
class="bodz" width="100%" height="auto"
onloadedmetadata="" ontimeupdate=""
onbeforeunload="" onoffline="" onhashchange=""><!--func1() func2()-->
<section id="Body_Preview" style="display:none;">
</section>
<div id="LoadingScreen" style="display:none;">
</div>
<!-- ::>> Notes:: onchange="//${change}"
onhashchange="//x1" onoffline="//x2"
contextmenu="//x3" onbeforeunload="//x4" -->
<!-- ::>> Notes:: -->
<header id="header" class="">
<!-- ::>> fade/slide navbar in if search term entered -->
<div id="HiddenNavBar" height="105" style="">
<!-- ??:: Main Search Area ::?? -->
<form id="" action="" method="">
<input type="hidden" class="disp_none" value=""> <!-- :csrf: -->
<div class="search_overflow">
<input name="Search" type="text"
aria-label="Search" placeholder="Search"
id="MainSearchInp" tabindex="1"
class="search_inp" value="">
</div>
<!-- ::>> Search Filter Inputs <<:: -->
<!-- !!:: Hide Tutorials -->
<label for="Filter">Hide Tutorial results:
<input name="" type="checkbox" id="Filter" data-filter-type="" checked="false">
</label>
<!-- !!:: Hide Tutorials -->
<label for="Filter2">Hide x results:
<input name="" type="checkbox" id="Filter2" data-filter-type="" checked="false">
</label>
<!-- !!:: Hide Stock Images -->
<label for="Filter3">Hide Stock Image results:
<input name="" type="checkbox" id="Filter3" data-filter-type="" checked="false">
</label>
<!-- !!:: Hide Pdf's -->
<label for="Filter4">Hide Pdfs results:
<input name="" type="checkbox" id="Filter4" data-filter-type="" checked="false">
</label>
<!-- !!:: Hide 3D Assets -->
<label for="Filter5">Hide 3D Assets results:
<input name="" type="checkbox" id="Filter5" data-filter-type="" checked="false">
</label>
</form>
<!-- ??:: Closing of MainSearchArea ::?? -->
<!-- ::>> Embed this svg within the bottom of the search bar and add a search/magnifier glass to the left or right hand suide. -->
<!-- This Svg can be shortened massively by manually recreating it -->
<svg id="TempName_HueSpaceBar" width="940" height="8"
viewbox="0 0 780 8" version="1.1">
<defs>
<style>
/* :: Notes */
</style>
<script>
// Particles?
</script>
</defs>
<g>
<rect></rect>
</g>
</svg>
<!-- ^^^ Remaking the below Svg -->
<!-- !! Think the below Svg is for the HueBar Accent Ui piece -->
<svg id="svg8" viewBox="0 0 208.51721 1.5955585" version="1.1"
width="208.51721mm" height="1.5955585mm" xmlns="http://www.w3.org/2000/svg"
sodipodi:docname="hue_space_bar.svg" xmlns:svg="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
xmlns:cc="http://creativecommons.org/ns#">
<defs id="defs2"/>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666"
borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2"
inkscape:zoom="0.98994949" inkscape:cx="396.84993" inkscape:cy="45.208726"
inkscape:document-units="mm" inkscape:current-layer="layer1" showgrid="false"
inkscape:window-width="1288" inkscape:window-height="754" inkscape:window-x="156"
inkscape:window-y="156" inkscape:window-maximized="0"/>
<metadata id="metadata5">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-0.41000891,-0.47546211)">
<image id="image3721" width="208.51721" height="1.5955585" x="0.41000891" y="0.47546211"
xlink:href="data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/7QA2UGhvdG9zaG9wIDMuMAA4QklNBAQAAAAAABkcAmcAFHZX
ei1vODJ5WVJ0QjJZVmlhNHBkAP/bAEMAAwMDAwMDBAQEBAUFBQUFBwcGBgcHCwgJCAkICxELDAsL
DAsRDxIPDg8SDxsVExMVGx8aGRofJiIiJjAtMD4+VP/bAEMBAwMDAwMDBAQEBAUFBQUFBwcGBgcH
CwgJCAkICxELDAsLDAsRDxIPDg8SDxsVExMVGx8aGRofJiIiJjAtMD4+VP/CABEIAAMB4AMBIgAC
EQEDEQH/xAAaAAEAAwEBAQAAAAAAAAAAAAAAAgQFAwYH/8QAGwEAAgMBAQEAAAAAAAAAAAAABAUC
AwYAAQj/2gAMAwEAAhADEAAAAfog3Pyq5Hss/GGLjH8wP9NkYBodZnBnrLN0F2FsCsV8pZ2d0X6L
rAFfc4lhUuhTFSEcogEgFfSkL4ypCX2IS3w6Cvr3UXg2tUUr9beM/nuoBCu+hAVN2QrU2RVTSoB6
OEQhXKBGP//EAB0QAAIDAQADAQAAAAAAAAAAAAACAQMQIAQwMkL/2gAIAQEAAQUC4cYsLBx9UUjF
xDx/mO59E91ilYu1lZHE6x+D/8QAGhEAAgMBAQAAAAAAAAAAAAAAAAQCAxAFIP/aAAgBAwEBPwEi
KiAkc4UxYUKdp8U7IZG8d18qLj//xAAaEQADAAMBAAAAAAAAAAAAAAAABBABAgMy/9oACAECAQE/
ATAuKCs2rZrOgzGPUfjEbGYzeN//xAAUEAEAAAAAAAAAAAAAAAAAAABQ/9oACAEBAAY/AnP/xAAa
EAADAQEBAQAAAAAAAAAAAAAAATEQIEFR/9oACAEBAAE/IeI3p5s+nuILFdXoeOCzwvlY+SFD3gzt
EcrxkCx//9oADAMBAAIAAwAAABAMGJ0PzwIByB6GD7z4EP15yEPz/wAceA//xAAZEQACAwEAAAAA
AAAAAAAAAAAgQQABEDH/2gAIAQMBAT8QDIEsSKW9XO8dDbT/xAAbEQACAgMBAAAAAAAAAAAAAAAQ
QQAgATAxgf/aAAgBAgEBPxAOInk5D2Hq20RkKf/EABYQAAMAAAAAAAAAAAAAAAAAAAEQUP/aAAgB
AQABPxBmzbMFT8cxDYf/2Q== "
style="image-rendering:optimizeQuality" preserveAspectRatio="none" decoding="async"/>
</g>
</svg>
</div>
<!-- ::>> End of hidden Navbar -->
<nav id="TopNav" class="temp_override_remove">
<input type="hidden" display="none" id="CSRF"
style="display:none !important; visibility:hidden !important;"><!-- CSRF -->
<input type="hidden" display="none" id="HiddenSecret"
style="display:none !important; visibility:hidden !important;"><!-- Custom -->
<i class="blob"></i>
<!-- ::>> Notes:: -->
<img id="MainLogo" src="" decoding="async" alt="Logo Design" display="none" style="display:none !important; width:0; height:0;">
<h1>Art4Coding</h1>
<h2>Asset's and resources<br><i class="h2italic">for Artist's & Coders.</i></h2>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/42/Opensource.svg/2000px-Opensource.svg.png"
class="opensource_logo disp_none" decoding="async">
<!-- <h3>Asset's and resources for Artist's & Coders.</h3> -->
<!-- Svg Search Icon -->
<!-- Svg Search Icon -->
<div class="offscreen_icon_menu disp_flex opacity0">
<a href="https://www.facebook.com/groups/art4coding.icu"
target="_blank" class="face_group fa fa-facebook"></a>
<!-- " animated infinite bounce" Classes for animate.css from cdn were not activating -->
<!-- icons to add
linkedin
github
stackoverflow
blender-forum
css-tricks
codepen
deviantart
jsfiddle
shutterstock
devto
pinterest
instagram
etc etc......
-->
</div>
<ul id="TopNavLinx" class="nav_lnx_one">
<!-- Create a slide in icon menu
::>> Icons to Include: Settings cog, Facebook, Github,
Deviantart, Kofi, Patreon?,
night.mode switch, drag&drop,
screen capture? msngr, switch2 Coding4Art,
FractalGen, Online editor, sticky note.
-->
<li>
<a href="/Pages/Resources/Rsc_one.html"
class="top_nav nav_opt nav_style ajax prevent_default">Resources</a>
<!-- <img src="/Imgs/Pngs/help.png" class="help_png tooltip" width="" height="" type="img/png"> -->
</li>
<li>
<a href="/Pages/Tutorials/Tutorials.html"
class="top_nav nav_opt nav_style ajax prevent_default">Tutorials</a>
<!-- <img src="/Imgs/Pngs/help.png" class="help_png tooltip" width="" height="" type="img/png"> -->
</li>
<li>
<a href="/Pages/Artists/AllArtists.html"
class="top_nav nav_opt nav_style ajax prevent_default">Artists</a>
<!-- <img src="/Imgs/Pngs/help.png" class="help_png tooltip" width="" height="" type="img/png"> -->
</li>
<li>
<a href="/Pages/Articles/AllArticles.html"
class="top_nav nav_opt nav_style ajax prevent_default">Articles</a>
<!-- <img src="/Imgs/Pngs/help.png" class="help_png tooltip" width="" height="" type="img/png"> -->
</li><br>
<li class="move_up">
<a href="/Pages/Assets/GeneralAssets.html"
class="top_nav nav_opt nav_style ajax prevent_default">Assets</a>
<!-- <img src="/Imgs/Pngs/help.png" class="help_png tooltip" width="" height="" type="img/png"> -->
</li>
<li class="move_up nudgeXpx">
<a href="/Pages/Gallery/GeneralGallery.html"
class="top_nav nav_opt nav_style ajax prevent_default">Gallery</a>
<!-- <img src="/Imgs/Pngs/help.png" class="help_png tooltip" width="" height="" type="img/png"> -->
</li>
<li class="move_up nudegXpx2">
<a href="/Pages/Index/SiteMap.html"
class="top_nav nav_opt nav_style ajax prevent_default">Index</a>
<!-- <img src="/Imgs/Pngs/help.png" class="help_png tooltip" width="" height="" type="img/png"> -->
</li>
<li><img src="" type="" decoding="async" alt=""></li>
</ul>
<ul class="nav_lnx_two quick_links" style="display:none;">
<li>Shop</li>
<li>Users</li>
<li>Top Artist's</li>
<li>Top Coders</li>
<li>Top Contributers</li>
<li>Job Pin Board</li>
<li>Messanger</li>
<li>Admin</li>
</ul>
<!-- ::>> Notes: <<:: -->
<!-- ::>> Notes: <<:: -->
<!-- .............................................. TopNavSvgIcons Menu ............................................................. -->
<section id="TopNavSvgIcons">
<i class="nav_arrow disp_none"></i>
<!-- Tablet -->
<svg id="TabletSvgIcon" width="84px" height="84px" fill="url(#lin_grad1)"
viewBox="0 0 97 97" x="0px" y="0px" xml:space="preserve"
version="1.1" class="disp_none"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
tabindex="2" aria-label="" contenteditable="true"
style="">
<defs>
<style> /* ::>> The graphics within the Tablet are set to Gold, As the Hue has been changed this reset's the inner Graphics back to gold.. */
.reverse_hue{
filter:hue-rotate(42deg);
}
</style>
<linearGradient id="lin_grad1" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:rgb(0,255,127); stop-opacity:1" /> <!-- SpringGreen gradientTransform="rotate(33)" -->
<stop offset="54%" style="stop-color:rgb(0,128,255); stop-opacity:1" /> <!-- Dodger Blue -->
<stop offset="100%" style="stop-color:rgb(220,20,60); stop-opacity:1" /> <!-- Crimson -->
</linearGradient>
<radialGradient id="rad_grad2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" style="stop-color:rgb(0,255,127); stop-opacity:1" /> <!-- SpringGreen -->
<stop offset="64%" style="stop-color:rgb(0,128,255); stop-opacity:1" /> <!-- Dodger Blue -->
<stop offset="78%" style="stop-color:rgb(220,20,60); stop-opacity:1" /> <!-- Crimson -->
<stop offset="84%" style="stop-color:rgb(0,255,127); stop-opacity:1" /> <!-- SpringGreen -->
<stop offset="92%" style="stop-color:rgb(0,128,255); stop-opacity:1" /> <!-- Dodger Blue -->
<stop offset="100%" style="stop-color:rgb(220,20,60); stop-opacity:1" /> <!-- Crimson -->
</radialGradient>
</defs>
<g>
<path fill="none" d="M45.939,8.364h6.934c0.578,0,1.047-0.471,1.047-1.049c0-0.577-0.469-1.048-1.047-1.048h-6.934 c-0.578,
0-1.048,0.471-1.048,1.048C44.892,7.894,45.361,8.364,45.939,8.364z"/>
<path fill="none" d="M36.847,17.227c-2.88,0-5.216,2.336-5.216,5.216h5.216V17.227z"/>
<circle fill="none" cx="49.405" cy="91.678" r="2.998"/>
<path fill="none" d="M27.567,85.607h43.675V11.886H27.567V85.607z M31.675,63.197c-0.241,0-0.437-0.196-0.437-0.438v-4.912 c0-0.241,0.196-0.438,0.437-0.438h1.75c0.241,
0,0.436,0.196,0.436,0.438v4.912c0,0.241-0.195,0.438-0.436,0.438H31.675z M37.23,78.926v1.432h-1.375v-1.32c-0.931-0.041-1.833-0.307-2.362-0.598l0.417-1.625c0.583,
0.318,1.403,0.611,2.305,0.611 c0.808,0,1.35-0.32,1.35-0.861c0-0.529-0.444-0.863-1.486-1.209c-1.488-0.5-2.502-1.196-2.502-2.544 c0-1.235,0.863-2.196,
2.349-2.473v-1.32h1.362v1.223c0.916,0.026,1.542,0.236,2.028,0.459l-0.416,1.569 c-0.348-0.166-1-0.486-2.002-0.486c-0.903,0-1.195,0.402-1.195,0.793c0,0.443,
0.487,0.75,1.683,1.18 c1.652,0.585,2.306,1.35,2.306,2.612C39.69,77.605,38.829,78.661,37.23,78.926z M35.712,62.76v-7.688 c0-0.242,0.196-0.438,0.438-0.438h1.749c0.241,
0,0.437,0.195,0.437,0.438v7.688c0,0.241-0.196,0.438-0.437,0.438H36.15 C35.908,63.197,35.712,63.001,35.712,62.76z M42.81,62.76c0,0.241-0.196,0.438-0.437,
0.438h-1.75c-0.242,0-0.438-0.196-0.438-0.438 V52.295c0-0.241,0.196-0.438,0.438-0.438h1.75c0.24,0,0.437,0.196,0.437,0.438V62.76z M47.668,16.518h19.363 c0.539,0,
0.975,0.436,0.975,0.975c0,0.538-0.436,0.975-0.975,0.975H47.668c-0.538,0-0.975-0.437-0.975-0.975 C46.694,16.953,47.13,16.518,47.668,16.518z M47.668,
21.467h19.363c0.539,0,0.975,0.437,0.975,0.975 c0,0.539-0.436,0.975-0.975,0.975H47.668c-0.538,0-0.975-0.436-0.975-0.975C46.694,21.903,47.13,21.467,
47.668,21.467z M47.668,26.416h19.363c0.539,0,0.975,0.438,0.975,0.975c0,0.539-0.436,0.976-0.975,0.976H47.668c-0.538,0-0.975-0.437-0.975-0.976 C46.694,
26.854,47.13,26.416,47.668,26.416z M47.668,34.111h19.363c0.539,0,0.975,0.437,0.975,0.975 c0,0.539-0.436,0.975-0.975,0.975H47.668c-0.538,0-0.975-0.436-0.975-0.975C46.694,
34.548,47.13,34.111,47.668,34.111z M47.668,39.061h19.363c0.539,0,0.975,0.438,0.975,0.975c0,0.539-0.436,0.976-0.975,0.976H47.668c-0.538,0-0.975-0.437-0.975-0.976 C46.694,
39.498,47.13,39.061,47.668,39.061z M47.668,44.011h19.363c0.539,0,0.975,0.437,0.975,0.975s-0.436,0.976-0.975,0.976 H47.668c-0.538,
0-0.975-0.438-0.975-0.976S47.13,44.011,47.668,44.011z M47.668,51.43h19.363c0.539,0,0.975,0.436,0.975,0.975 c0,0.538-0.436,0.975-0.975,
0.975H47.668c-0.538,0-0.975-0.437-0.975-0.975C46.694,51.865,47.13,51.43,47.668,51.43z M47.668,56.379h19.363c0.539,0,0.975,0.437,0.975,
0.975c0,0.539-0.436,0.975-0.975,0.975H47.668c-0.538,0-0.975-0.436-0.975-0.975 C46.694,56.815,47.13,56.379,47.668,56.379z M47.668,61.328h19.363c0.539,0,0.975,
0.438,0.975,0.975 c0,0.539-0.436,0.976-0.975,0.976H47.668c-0.538,0-0.975-0.437-0.975-0.976C46.694,61.766,47.13,61.328,47.668,61.328z M47.668,
69.23h19.363c0.539,0,0.975,0.438,0.975,0.975c0,0.539-0.436,0.976-0.975,0.976H47.668c-0.538,0-0.975-0.437-0.975-0.976 C46.694,69.668,47.13,
69.23,47.668,69.23z M47.668,74.181h19.363c0.539,0,0.975,0.437,0.975,0.975s-0.436,0.976-0.975,0.976H47.668 c-0.538,0-0.975-0.438-0.975-0.976S47.13,
74.181,47.668,74.181z M47.668,79.131h19.363c0.539,0,0.975,0.436,0.975,0.975 c0,0.538-0.436,0.975-0.975,0.975H47.668c-0.538,0-0.975-0.437-0.975-0.975C46.694,
79.566,47.13,79.131,47.668,79.131z M36.847,16.772c3.131,0,5.67,2.539,5.67,5.67c0,3.132-2.539,5.671-5.67,5.671c-3.131,0-5.67-2.539-5.67-5.671 C31.177,
19.312,33.716,16.772,36.847,16.772z M31.939,41.819c0.126,0,0.242,0.034,0.355,0.071l1.601-1.6 c-0.038-0.113-0.072-0.229-0.072-0.355c0-0.626,0.508-1.133,
1.134-1.133c0.626,0,1.134,0.507,1.134,1.133 c0,0.01-0.005,0.019-0.006,0.028l2.001,1.051c0.187-0.134,0.402-0.229,0.648-0.229c0.126,0,0.242,0.034,0.355,
0.071l1.6-1.6 c-0.038-0.113-0.072-0.229-0.072-0.355c0-0.626,0.509-1.134,1.134-1.134c0.627,0,1.133,0.508,1.133,1.134 c0,0.627-0.506,1.134-1.133,1.134c-0.126,
0-0.242-0.034-0.355-0.071l-1.601,1.6c0.038,0.113,0.072,0.229,0.072,0.355 c0,0.626-0.507,1.133-1.134,1.133c-0.625,0-1.134-0.507-1.134-1.133c0-0.01,0.005-0.019,0.006-0.028l-2.002-1.052
c-0.186,0.134-0.401,0.229-0.647,0.229c-0.125,0-0.241-0.034-0.354-0.071l-1.601,1.601c0.038,0.113,0.072,0.229,0.072,0.354 c0,0.627-0.508,1.135-1.135,1.135c-0.626,0-1.133-0.508-1.133-1.135C30.807,
42.326,31.313,41.819,31.939,41.819z"/>
<path fill="url(#lin_grad1)" d="M70.121,2.747h-41.43c-3.724,0-6.74,3.018-6.74,6.74v81.52c0,3.724,3.017,6.738,6.74,6.738h41.43 c3.723,0,6.74-3.017,6.74-6.738V9.487C76.861,
5.766,73.844,2.747,70.121,2.747z M45.939,6.268h6.934 c0.578,0,1.047,0.471,1.047,1.048c0,0.578-0.469,1.049-1.047,1.049h-6.934c-0.578,0-1.048-0.471-1.048-1.049
C44.892,6.738,45.361,6.268,45.939,6.268z M49.405,94.676c-1.655,0-2.999-1.345-2.999-3c0-1.654,1.344-2.996,2.999-2.996 s3.001,1.342,3.001,2.996C52.406,93.331,
51.061,94.676,49.405,94.676z M71.242,85.607H27.567V11.886h43.675V85.607z"/>
<path fill="gold" class="reverse_hue" d="M36.847,28.113c3.131,0,5.67-2.539,5.67-5.671c0-3.131-2.539-5.67-5.67-5.67c-3.131,0-5.67,2.539-5.67,5.67 C31.177,25.574,33.716,28.113,36.847,28.113z M36.847,
17.227v5.216h-5.216C31.631,19.563,33.967,17.227,36.847,17.227z"/>
<path fill="url(#lin_grad1)" d="M47.668,18.467h19.363c0.539,0,0.975-0.437,0.975-0.975c0-0.539-0.436-0.975-0.975-0.975H47.668 c-0.538,0-0.975,0.436-0.975,0.975C46.694,18.03,47.13,18.467,47.668,18.467z"/>
<path fill="url(#lin_grad1)" d="M47.668,23.416h19.363c0.539,0,0.975-0.436,0.975-0.975c0-0.538-0.436-0.975-0.975-0.975H47.668 c-0.538,0-0.975,0.437-0.975,0.975C46.694,22.98,47.13,23.416,47.668,23.416z"/>
<path fill="url(#lin_grad1)" d="M47.668,28.366h19.363c0.539,0,0.975-0.437,0.975-0.976c0-0.537-0.436-0.975-0.975-0.975H47.668 c-0.538,0-0.975,0.438-0.975,0.975C46.694,27.93,47.13,28.366,47.668,28.366z"/>
<path fill="gold" class="reverse_hue" d="M31.939,44.087c0.627,0,1.135-0.508,1.135-1.135c0-0.126-0.034-0.241-0.072-0.354l1.601-1.601 c0.113,0.037,0.229,0.071,0.354,0.071c0.246,0,0.462-0.095,0.647-0.229l2.002,1.052c0,
0.01-0.006,0.019-0.006,0.028 c0,0.626,0.509,1.133,1.134,1.133c0.626,0,1.134-0.507,1.134-1.133c0-0.126-0.034-0.242-0.072-0.355l1.601-1.6 c0.113,0.037,0.229,0.071,0.355,
0.071c0.627,0,1.133-0.507,1.133-1.134c0-0.626-0.506-1.134-1.133-1.134 c-0.625,0-1.134,0.508-1.134,1.134c0,0.126,0.034,0.242,0.072,0.355l-1.6,
1.6c-0.113-0.037-0.229-0.071-0.355-0.071 c-0.246,0-0.462,0.095-0.648,0.229l-2.001-1.051c0-0.01,0.006-0.019,0.006-0.028c0-0.626-0.507-1.133-1.134-1.133 c-0.626,
0-1.134,0.507-1.134,1.133c0,0.126,0.034,0.242,0.072,0.355l-1.601,1.6c-0.113-0.037-0.229-0.071-0.355-0.071 c-0.626,0-1.133,0.507-1.133,1.133C30.807,43.579,31.313,44.087,31.939,44.087z"/>
<path fill="url(#lin_grad1)" d="M47.668,36.061h19.363c0.539,0,0.975-0.436,0.975-0.975c0-0.538-0.436-0.975-0.975-0.975H47.668 c-0.538,0-0.975,0.437-0.975,0.975C46.694,35.625,47.13,36.061,47.668,36.061z"/>
<path fill="url(#lin_grad1)" d="M47.668,41.011h19.363c0.539,0,0.975-0.437,0.975-0.976c0-0.537-0.436-0.975-0.975-0.975H47.668 c-0.538,0-0.975,0.438-0.975,0.975C46.694,40.574,47.13,41.011,47.668,41.011z"/>
<path fill="url(#lin_grad1)" d="M47.668,45.961h19.363c0.539,0,0.975-0.438,0.975-0.976s-0.436-0.975-0.975-0.975H47.668 c-0.538,0-0.975,0.437-0.975,0.975S47.13,45.961,47.668,45.961z"/>
<path fill="gold" class="reverse_hue" d="M33.861,62.76v-4.912c0-0.241-0.195-0.438-0.436-0.438h-1.75c-0.241,0-0.437,0.196-0.437,0.438v4.912 c0,0.241,0.196,0.438,0.437,0.438h1.75C33.666,63.197,33.861,63.001,33.861,62.76z"/>
<path fill="gold" d="M37.898,63.197c0.241,0,0.437-0.196,0.437-0.438v-7.688c0-0.242-0.196-0.438-0.437-0.438H36.15 c-0.242,0-0.438,0.195-0.438,0.438v7.688c0,0.241,0.196,0.438,0.438,0.438H37.898z"/>
<path fill="gold" class="reverse_hue" d="M42.374,51.857h-1.75c-0.242,0-0.438,0.196-0.438,0.438V62.76c0,0.241,0.196,0.438,0.438,0.438h1.75 c0.24,0,0.437-0.196,0.437-0.438V52.295C42.81,52.054,42.614,51.857,42.374,51.857z"/>
<path fill="url(#lin_grad1)" d="M47.668,53.379h19.363c0.539,0,0.975-0.437,0.975-0.975c0-0.539-0.436-0.975-0.975-0.975H47.668 c-0.538,0-0.975,0.436-0.975,0.975C46.694,52.942,47.13,53.379,47.668,53.379z"/>
<path fill="url(#lin_grad1)" d="M47.668,58.328h19.363c0.539,0,0.975-0.436,0.975-0.975c0-0.538-0.436-0.975-0.975-0.975H47.668 c-0.538,0-0.975,0.437-0.975,0.975C46.694,57.893,47.13,58.328,47.668,58.328z"/>
<path fill="url(#lin_grad1)" d="M47.668,63.278h19.363c0.539,0,0.975-0.437,0.975-0.976c0-0.537-0.436-0.975-0.975-0.975H47.668 c-0.538,0-0.975,0.438-0.975,0.975C46.694,62.842,47.13,63.278,47.668,63.278z"/>
<path fill="url(#lin_grad1)" d="M47.668,71.181h19.363c0.539,0,0.975-0.437,0.975-0.976c0-0.537-0.436-0.975-0.975-0.975H47.668 c-0.538,0-0.975,0.438-0.975,0.975C46.694,70.744,47.13,71.181,47.668,71.181z"/>
<path fill="url(#lin_grad1)" d="M47.668,76.131h19.363c0.539,0,0.975-0.438,0.975-0.976s-0.436-0.975-0.975-0.975H47.668 c-0.538,0-0.975,0.437-0.975,0.975S47.13,76.131,47.668,76.131z"/>
<path fill="url(#lin_grad1)" d="M47.668,81.08h19.363c0.539,0,0.975-0.437,0.975-0.975c0-0.539-0.436-0.975-0.975-0.975H47.668 c-0.538,0-0.975,0.436-0.975,0.975C46.694,80.644,47.13,81.08,47.668,81.08z"/>
<path fill="gold" class="reverse_hue" d="M37.384,73.756c-1.196-0.43-1.683-0.736-1.683-1.18c0-0.391,0.292-0.793,1.195-0.793c1.001,0,1.654,0.32,2.002,0.486 l0.416-1.569c-0.485-0.223-1.112-0.433-2.028-0.459v-1.223h-1.362v1.32c-1.486,
0.276-2.349,1.237-2.349,2.473 c0,1.348,1.014,2.044,2.502,2.544c1.042,0.346,1.486,0.68,1.486,1.209c0,0.541-0.542,0.861-1.35,0.861 c-0.902,0-1.722-0.293-2.305-0.611l-0.417,
1.625c0.529,0.291,1.431,0.557,2.362,0.598v1.32h1.375v-1.432 c1.599-0.265,2.46-1.32,2.46-2.558C39.69,75.105,39.036,74.341,37.384,73.756z"/>
</g>
</svg>
<!-- Tablet -->
<!-- Search -->
<svg id="SearchIcon" width='248px' height='248px' fill="url(#lin_grad1)"
viewBox="0 0 100 100" x="0px" y="0px" xml:space="preserve"
version="1.1" class=""
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
tabindex="3" aria-label="" contenteditable="true"
style=""> <!-- Linx 2 ::>> Search, Advanced Search, Seo, Website Submissions, Asset Catalogue, Website tree, Fractal library, Crates, Random srch result -->
<title>Search icon</title>
<desc>Search icon</desc>
<defs>
</defs>
<metadata> <?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/"
x:xmptk="Adobe XMP Core 6.0-c002 79.164352, 2020/01/30-15:50:38">
</x:xmpmeta><?xpacket end="w"?>
</metadata>
<g>
<g>
<path d="M45.33,30a1,1,0,0,0,0,2H61a1,1,0,0,0,1-1V15a1,1,0,0,0-1-1H41.957a20.9,20.9,0,0,0-2.7-4.288,1,1,0,1,0-1.547,
1.267,19.018,19.018,0,1,1-2.689-2.688,1,1,0,1,0,1.266-1.548A20.986,20.986,0,1,0,10,39.461V53H7.816a3,3,0,1,0,0,
2H11a1,1,0,0,0,1-1V40.854a20.842,20.842,0,0,0,5,2.262V56.184a3,3,0,1,0,2,0V43.607a20.864,20.864,0,0,0,3,
.342V48a1,1,0,0,0,1,1h8v2.184a3,3,0,1,0,2,0V48a1,1,0,0,0-1-1H24V43.949A20.876,20.876,0,0,0,34.744,40.4l3.172,
3.171a2.962,2.962,0,0,0,.578,3.407l9.35,9.349a1,1,0,0,0,1.414-1.414L46.98,52.636l5.656-5.657,7.071,7.072a1,1,
0,0,1,0,1.413l-4.242,4.243a1,1,0,0,1-1.415,0l-1.964-1.964a1,1,0,0,0-1.414,1.414l1.964,1.964a3,3,0,0,0,4.243,
0l4.242-4.242a3,3,0,0,0,0-4.243L46.979,38.494a3,3,0,0,0-3.405-.577L40.4,34.744A20.9,20.9,0,0,0,43.373,
28H57a1,1,0,0,0,1-1V19a1,1,0,0,0-1-1H43.381c-.167-.676-.357-1.345-.589-2H60V30ZM5,55a1,1,0,1,1,1-1A1,1,0,0,1,5,
55Zm13,5a1,1,0,1,1,1-1A1,1,0,0,1,18,60Zm14-5a1,1,0,1,1,1-1A1,1,0,0,1,32,55Zm13.566-3.778-1.415-1.415,5.656-5.656,
1.415,1.414Zm0-11.314,2.828,2.828-5.656,5.657-2.829-2.829a1,1,0,0,1,0-1.413l4.242-4.243A1,1,0,0,1,45.565,39.908ZM42.029,
39.2,39.2,42.029l-2.84-2.84a21.168,21.168,0,0,0,2.828-2.828ZM56,20v6H43.76q.142-.987.189-2H49a1,1,0,0,0,
0-2H43.957c-.033-.671-.095-1.338-.191-2Z">
</path>
<circle cx="53" cy="23" r="1"></circle>
<path d="M23,40A17,17,0,1,0,6,23,16.828,16.828,0,0,0,9.581,33.414a1,1,0,0,0,1.58-1.227A14.846,14.846,0,0,1,8,23,15,15,0,1,1,23,
38a14.848,14.848,0,0,1-9.187-3.161,1,1,0,1,0-1.226,1.579A16.826,16.826,0,0,0,23,40Z">
</path>
<path d="M33,18a1,1,0,0,0,0-2h-.343a12.573,12.573,0,0,1-8.95-3.707,1,1,0,0,0-1.414,0A12.573,12.573,0,0,1,13.343,
16H13a1,1,0,0,0-1,1v3.271a14.929,14.929,0,0,0,5.629,11.713l4.746,3.8a1,1,0,0,0,1.25,0l4.746-3.8a15.006,15.006,0,0,0,5.587-10.932,
1,1,0,1,0-2-.1,13,13,0,0,1-4.839,9.475L23,33.719l-4.121-3.3A12.939,12.939,0,0,1,14,20.271V17.986a14.539,14.539,0,0,0,9-3.616A14.55,
14.55,0,0,0,32.657,18Z">
</path>
<path d="M27.293,20.293,23,24.586l-2.293-2.293a1,1,0,0,0-1.414,1.414l3,3a1,1,0,0,0,1.414,0l5-5a1,1,
0,0,0-1.414-1.414Z">
</path><!--
<text x="0" y="2" class="tool-tip" style="display:none;"
font-family="Verdana" font-size="32" text-anchor="middle">
Advanced Search
</text>-->
</g>
</g>
</svg>
<!-- Search -->
<!-- Desktop -->
<svg id="DesktopSvgIcon" width="84px" height="84px" fill="url(#lin_grad1)"
viewBox="0 0 100 100" x="0px" y="0px" xml:space="preserve"
version="1.1" class="svg svg_icon menu_item disp_none"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
tabindex="4" aria-label="" contenteditable="true"
style="">
<defs>
</defs>
<path d="M80.613,33.988c-1.454,4.706-5.839,8.125-11.023,8.125c-6.371,0-11.536-5.165-11.536-11.536s5.165-11.536,
11.536-11.536 v11.536L80.613,33.988z M82.381,32.731c0.333-1.078,0.513-2.223,
0.513-3.411c0-6.371-5.165-11.536-11.536-11.536v11.536 L82.381,32.731z M94.561,
61.902v10.686h-0.008c-0.118,3.049-2.625,5.485-5.703,5.485H59.936c0.051,1.282,0.765,7.097,
9.452,8.189 h-0.416c1.372,0,2.484,1.112,2.484,2.484s-1.112,2.484-2.484,2.484H30.888c-1.372,
0-2.484-1.112-2.484-2.484 s1.112-2.484,2.484-2.484h-0.279c8.687-1.092,9.401-6.908,9.452-8.189H11.148c-3.078,
0-5.585-2.436-5.703-5.485H5.441v-0.122 c-0.001-0.034-0.003-0.068-0.003-0.102v-0.476c0-0.034,
0.002-0.068,0.003-0.102v-8.668c0-0.027-0.002-0.053-0.002-0.08V15.25 c0-3.573,2.907-6.48,6.48-6.48h76.158c3.573,
0,6.48,2.907,6.48,6.48v46.654L94.561,61.902z M53.169,71.682 c0-1.75-1.419-3.169-3.169-3.169s-3.169,1.419-3.169,
3.169c0,1.75,1.419,3.169,3.169,3.169S53.169,73.433,53.169,71.682z M89.214,
15.25c0-0.626-0.51-1.136-1.136-1.136H11.92c-0.626,0-1.136,0.509-1.136,1.136v47.789c0,0.626,0.51,1.136,1.136,1.136 h76.158c0.626,0,
1.136-0.509,1.136-1.136V15.25z M21.211,45.522c0-0.479-0.388-0.867-0.867-0.867h-4.738 c-0.479,0-0.867,
0.388-0.867,0.867v13.669c0,0.479,0.388,0.867,0.867,0.867h4.738c0.479,0,0.867-0.388,0.867-0.867V45.522z M31.277,
35.55c0-0.479-0.388-0.867-0.867-0.867h-4.738c-0.479,0-0.867,0.388-0.867,0.867v23.64c0,0.479,0.388,0.867,0.867,
0.867 h4.738c0.479,0,0.867-0.388,0.867-0.867V35.55z M41.343,
25.036c0-0.479-0.388-0.867-0.867-0.867h-4.738 c-0.479,0-0.867,0.388-0.867,0.867v34.154c0,
0.479,0.388,0.867,0.867,0.867h4.738c0.479,0,0.867-0.388,0.867-0.867V25.036z M51.409,
34.141c0-0.479-0.388-0.867-0.867-0.867h-4.738c-0.479,0-0.867,0.388-0.867,0.867v25.05c0,0.479,0.388,0.867,0.867,
0.867 h4.738c0.479,0,0.867-0.388,0.867-0.867V34.141z M83.127,46.009H57.005v2.65h26.122V46.009z M83.127,
51.352H57.005v2.65h26.122 V51.352z M75.594,56.75H57.005v2.65h18.589V56.75z M90.896,41.824"/>
<!--
<text x="0" y="2" class="tool-tip" style="display:none;"
font-family="Verdana" font-size="35" text-anchor="middle">
DashBoard
</text>-->
</svg>
<!-- Desktop -->
<!-- Svg Cog Menu Activator -->
<div id="ProfileCog_Dv"> <!-- Linx 2 ::>> Profile, Settings, Users, Admins, Preferances, Themes, Uploads, UserDefined_Assets... -->
<svg id="Profile_Cog" width='84px' height='84px' fill="url(#lin_grad1)"
class="disp_none"
viewBox="0 0 100 100" x="0px" y="0px" xml:space="preserve"
tabindex="5" aria-label="Profile & Settings" contenteditable="true"
xmlns="http://www.w3.org/2000/svg" data-name="Layer 1">
<title>Profile Cog</title>
<defs>
</defs>
<g data-name="Group">
<path data-name="Compound Path"
d="M50,22.61A27.39,27.39,0,1,0,77.39,50,27.42,27.42,0,0,0,50,
22.61ZM35.2,68.1C35.65,60.71,40.62,57,50,57S64.35,60.71,64.8,68.1a23.34,23.34,0,0,1-29.6,
0ZM50,51.82a7.5,7.5,0,1,1,7.5-7.5A7.5,7.5,0,0,1,50,51.82ZM68.31,64.53C67,58.84,63,55.13,56.66,53.67a11.5,11.5,0,1,0-13.33,
0C37,55.13,33,58.84,31.69,64.53a23.39,23.39,0,1,1,36.62,0Z">
</path>
<path data-name="Compound Path"
d="M89.89,37.39l-6.7-1.14L87,30.83a6.77,6.77,0,0,0-.55-8.94l-8.38-8.38a6.69,6.69,0,0,0-8.79-.66l-5.57,4-1.12-6.55a6.77,6.77,0,0,
0-6.71-5.93H44.08a6.69,6.69,0,0,0-6.68,5.75l-1.15,6.74L30.82,13a6.77,6.77,0,0,0-8.94.55l-8.38,8.38a6.69,6.69,0,0,0-.66,
8.79l4,5.57-6.56,1.12a6.77,6.77,0,0,0-5.93,6.71V55.92a6.69,6.69,0,0,0,5.75,6.68l6.74,1.14L13,69.18a6.76,6.76,0,0,
0,.55,8.94l8.38,8.38a6.75,6.75,0,0,0,4.8,2,6.54,6.54,0,0,0,4-1.33l5.57-4,1.12,6.55a6.77,6.77,0,0,0,6.71,
5.93H55.92a6.69,6.69,0,0,0,6.68-5.75l1.15-6.74L69.18,87a6.79,6.79,0,0,0,4.16,1.43,6.71,6.71,0,0,0,4.78-2l8.38-8.37a6.69,
6.69,0,0,0,.66-8.79l-4-5.57,6.55-1.12a6.77,6.77,0,0,0,5.93-6.71V44.08A6.71,6.71,0,0,0,89.89,
37.39Zm1.79,18.54a2.79,2.79,0,0,1-2.51,2.75l-9.78,1.66a2,2,0,0,0-1.3,3.13l5.85,8.24a2.74,2.74,0,0,1-.28,3.57l-8.38,
8.38a2.76,2.76,0,0,1-3.72.17l-8.09-5.74a2,2,0,0,0-3.13,1.3l-1.69,10a2.74,2.74,0,0,1-2.73,2.33H44.08a2.79,2.79,0,0,
1-2.75-2.51l-1.66-9.78a2,2,0,0,0-3.13-1.29l-8.24,5.85a2.8,2.8,0,0,1-3.57-.28l-8.38-8.38a2.79,2.79,0,0,1-.17-3.72l5.74-8.09a2,
2,0,0,0-1.3-3.13l-10-1.69a2.74,2.74,0,0,1-2.33-2.73V44.08a2.79,2.79,0,0,1,2.51-2.75l9.78-1.66a2,2,0,0,0,1.3-3.13l-5.85-8.24a2.74,
2.74,0,0,1,.28-3.57l8.38-8.38a2.79,2.79,0,0,1,3.72-.17l8.09,5.74a2,2,0,0,0,3.13-1.3l1.69-10a2.74,2.74,0,0,1,2.73-2.33H55.92a2.79,
2.79,0,0,1,2.75,2.51l1.66,9.78a2,2,0,0,0,3.13,1.29l8.24-5.85a2.74,2.74,0,0,1,3.57.28l8.38,8.38a2.79,2.79,0,0,1,.17,
3.72l-5.74,8.09a2,2,0,0,0,1.3,3.13l9.87,1.68h.09a2.74,2.74,0,0,1,2.33,2.73Z">
</path>
</g><!--
<text x="0" y="2" class="tool-tip" style="display:none;"
font-family="Verdana" font-size="32" text-anchor="middle">
Profile & Settings
</text> -->
</svg>
</div>
<!-- Svg Cog Menu Activator -->
</section> <!-- Closing Tag for TopNavSvgIcons Section -->
</nav>
</header><!-- /header -->
<section id="Body_Grid_Wrapper"></section>
<div class="upload_btn">
<button type="submit" action="" tabindex="" aria-label="">Upload</button>
</div>
<!-- ::>> Some Other Section <<:: ................................................. -->
<!-- ::>> Revolver Maps Section <<:: .............................................. -->
<div id="RMapsHoverActivator">
<div id="RMapsBorder_Patch_">
<!-- ??:: This would be better as an object embed with multiple video src attribs -->
<video src="/Imgs/VjLoops/starsloop.mp4" id="StarBackdrop" type="video/mp4"
width="inherit" height="auto" autoplay="true" loop="true"
muted="true" style="filter:opacity(0.1);"><!-- !!:: decoding="async" is throwing an error, No Decoders for requested formats: video/mp4 -->
</video>
<div id="Rev_Maps" class="r_maps_container disp_none" style="">
<script type="text/javascript"
src="//rf.revolvermaps.com/0/0/8.js?i=5m938d5bli8&m=0&c=ff0000&cr1=ffffff&f=comic_sans_ms&l=49&hi=40&hc=00fff6"
async="async">
</script>
</div>
</div>
</div>
<!-- ::>> Revolver Maps Section <<:: .............................................. -->
<!-- ::>> Some Other Section <<:: ................................................. -->
<canvas class="intial_top_animation"></canvas>
<section id="StockImg_Carousel">
<p>Stock Images</p>
<img id="Left_Arr" src="" alt="">
<img id="Right_Arr" src="" alt="">
</section>
<section id="PublicDomain_Imgs">
<p>Public Domain Images</p>
<img id="Left_Arr" src="" alt="">
<img id="Right_Arr" src="" alt="">
</section>
<section id="">
<img id="Left_Arr" src="" alt="">
<img id="Right_Arr" src="" alt="">
</section>
<!-- Notes ::>>
-->
<!-- Notes ::>>
-->
<!-- ::>> Discord Server Embed <<::
<section id="Discord_Svr">
<span>⭒❃.✮:▹Art4Coding's Discord Server◃:✮.❃⭒</span>
<iframe src="https://discord.com/widget?id=773912708180344872&theme=dark" width="350" height="500"
allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox
allow-same-origin allow-scripts">
</iframe>
<span>﹥ˏˋ♡̩͙♡̩̩̥͙♡̩̥̩ ⋆ ♡̩̥̩♡̩̩̥͙♡̩͙ˊˎ﹤<br>
তততততততততততত<br>
■□■□■□■□■□■□■□■<br>
°✧° 𝔉𝔢𝔢𝔡 𝔪𝔢 °♡°(ꂧ ꁞ ꂧ)°♡° 𝔠𝔞𝔫𝔡𝔶 °✧°<br>
✲꘏ ꘏ ꘏ ꘏ ꘏ ꘏ ꘏✲<br>
° 𐐪𐑂 ♡ 𐐪𐑂 ₒ 𐐪𐑂 ♡ 𐐪𐑂 °</span>
</section>-->
<!-- ::>> Discord Server Embed <<:: -->
<!-- Kofi Donate Button
<script type='text/javascript' src='https://ko-fi.com/widgets/widget_2.js'>
</script>
<script type='text/javascript'>kofiwidget2.init('Support Project on Ko-fi','#29abe0','N4N62IBAH');
kofiwidget2.draw();
</script> -->
<!-- Kofi Donate Button -->
<!-- ::>> These are Slowing down Page Load Times Temp Comment them Out and load them in after all other resources have completed or
if a user request's to see some vids.. -->
<section class="video_embeds vid_grid display_4 desktop_grid promt_more" style="display:none; visibility:hidden;">
<!-- Should be a grid of 4 videos wide x2 rows or use flex-box-->
<div class='embed-container'>
<!-- How To Draw With Code Casey Reas -->
<!-- <iframe width="488" height="360"
src="https://www.youtube.com/embed/_8DMEHxOLQE"
frameborder="0" allow="accelerometer; autoplay;
clipboard-write; encrypted-media;
gyroscope; picture-in-picture"
allowfullscreen>
</iframe> -->
<!-- How To Draw With Code Casey Reas -->
<!-- The Art of Code - DevConf
<iframe width="488" height="360"
src="https://www.youtube.com/embed/zmWkhlocBRY"
frameborder="0" allow="accelerometer; autoplay;
clipboard-write; encrypted-media;
gyroscope; picture-in-picture"
allowfullscreen>
</iframe> -->
<!-- The Art Of Code - DevConf
<iframe width="488" height="360"
src="https://www.youtube.com/embed/uQXXMycJwlM"
frameborder="0" allow="accelerometer; autoplay;
clipboard-write; encrypted-media;
gyroscope; picture-in-picture"
allowfullscreen>
</iframe> -->
<!-- Unsure About these last two, maybe move them to a different section
<iframe width="488" height="360"
src="https://www.youtube.com/embed/TShOtrWPGYw"
frameborder="0" allow="accelerometer; autoplay;
clipboard-write; encrypted-media;
gyroscope; picture-in-picture"
allowfullscreen>
</iframe> -->
<button action="" id="" class="xhr_video_request">Load More Videos</button>
<!-- Move these **Below** to an external file and load in with Js if the Xhr button is pressed
<iframe width="488" height="360"
src="https://www.youtube.com/embed/SNQ8s4HDs5s"
frameborder="0" allow="accelerometer; autoplay;
clipboard-write; encrypted-media;
gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
<iframe width="488" height="360"
src="https://www.youtube.com/embed/oailLVjKFII"
frameborder="0" allow="accelerometer; autoplay;
clipboard-write; encrypted-media;
gyroscope; picture-in-picture"
allowfullscreen>
</iframe> -->
</div>
</section>
<!-- ::>> End of Video Embeds Section -->
<br><br><br>
<div class="Deviant_Group txt_align_cent">
<a href="https://www.deviantart.com/coding-artists"
target="_blank">Open The DeviantArt Collaboration Page</a>
</div>
<div class="opensource_project_linx">
<a href="https://opensource.org/">OpenSource.org</a><br>
<a href="https://opensource.com/resources/organizations">OpenSource.com</a><br>
<a href="https://github.com/topics/open-source-project">GitHub OpenSource Projects</a><br>
<a href="https://en.wikipedia.org/wiki/List_of_free_and_open-source_software_organizations">Wiki List of Open Source Software</a><br>
<a href="https://github.com/open-source">GitHub OpenSource</a><br>
<a href="https://www.linuxfoundation.org/projects">Linux Foundation OpenSource</a><br>
<a href="https://sourcegraph.com/search?obility_id=114601249104&utm_term=%2Bgithub+%2Bopen+%2Bsource+%2Bprojects&utm_content=460230435517&gclid=Cj0KCQjwxNT8BRD9ARIsAJ8S5xbY3K7fwx8xqCGqjLyAryDX5B-S2pEI5_NVcXIKoh2v6p_mbSIKMbAaAnQ9EALw_wcB">?</a>
<a href="https://designers.hubspot.com/code-gallery/open-source/submission">OpenSource Submission</a><br>
<a href="https://softwareengineering.stackexchange.com/questions/14033/where-can-i-list-my-opensource-project">Where to list OpenSource Projects</a><br>
<a href="https://opensource.com/how-submit-article">Submi an OpenSource Article</a><br>
<!-- replacing a links with svg for better animations - streamline where possible -->
<svg width="298.8" height="28.8" viewBox="0 0 108 108" xmlns="http://www.w3.org/2000/svg">
<!-- A link around a shape -->
<a href="/docs/Web/SVG/Element/circle">
<circle cx="50" cy="40" r="4"/>
</a>
<!-- A link around a text -->
<a href="/docs/Web/SVG/Element/text">
<text x="50" y="90" text-anchor="middle">
<Submi an OpenSource Article>
</text>
</a>
</svg>
</div>
<!-- Notes ::>>
-->
<!-- Acrylic Pouring & Resin Art -->
<!-- Blender Art -->
<!-- The Best of DeviantArt -->
<!-- Cgi Stuff -->
<!-- Animation General -->
<!-- Grafitti -->
<!-- Screen Printing -->
<!-- Video Dj Stuff -->
<!-- Game Dev Stuff -->
<!-- Fractal Section -->
<!-- Gimp Tutorials -->
<!-- Unreal Engine -->
<!-- Phaser -->
<!-- Unity -->
<!-- Odditys -->
<!-- Unusual Architecture -->
<!-- General 3D -->
<!-- News -->
<!-- Blog -->
<!-- Events -->
<!-- Competitions -->
<!-- Affliates -->
<!-- Externals -->
<!-- Info -->
<!-- Optional Bbc 1Xtra Player try fade in with JS
<div data-my-radio-lang="en" class="embed-radioplayer js-radioplayerData"
data-autoplay="false" data-stream="752" data-name="BBC 1Xtra"
data-logo="png" data-url="bbc-1xtra" data-rid="121">
<a href="https://ukradiolive.com/bbc-1xtra" target="_blank">BBC 1Xtra</a>
</div>
<script data-script="jquery.embed-radioplayer.js" async crossorigin="use-credentials"
src="https://ukradiolive.com/public/jsv201016175251/jquery.embed-script-loader.js">
</script> -->
<!-- Optional Bbc 1Xtra Player -->
<!--
<div class="smallz" style="margin-top:8.95vh; width:200px; height:auto;">
<pre style="color:white; z-index:500;">
if(Art){
document.extract(Code)
} elseif(Code){
document.manifest(Art);
}
</pre>
</div> -->
<!-- ::>> Deviant Art Group Page for Art4Coding for Collaboration
<div id="DevArt_Group_Page">
<iframe class="Dev_iFrame" name=""
src="https://www.deviantart.com/coding-artists"
title="Art4Coding DeviantArtGroup"
width="740" height="585"
sandbox=""
allowpaymentrequest="false"
allowfullscreen="true">
<script>e() = undefined;</script>-->
<!-- </iframe> ::>> Sandbox testing:: allow-scripts allow-same-origin
</div>
<div class="iframely-embed">
<div class="iframely-responsive"
style="height:140px; width:240px;padding-bottom:0;">
<a href="https://www.deviantart.com/coding-artists/blog/"
data-iframely-url="//cdn.iframe.ly/0Znvj9B">
</a>
</div>
</div>
<script async src="//cdn.iframe.ly/embed.js" charset="utf-8"></script>
-->
<!-- ::>> Deviant Art Group Page for Art4Coding for Collaboration -->
<!-- Maybe try put inside an Iframe with allow scripts -->
<!-- Still Not doing anything
<iframe src="" sandbox="allow-scripts allow-same-origin" referrerpolicy="origin-when-cross-origin">
:: WindowOrWorkerGlobalScope.fetch() <<< See if this will do
using xhr & setRequestHeader() ::>> Adds a label/value pair to the header
</iframe> -->
<!-- Maybe hook in and try to append script into iframe body after loaded -->
<!-- DBX ::>> These are messing up the loading of other iframes, disabled until can figure out why..
<div class="dbxi" style="display:none;">
<iframe></iframe>
<iframe></iframe>
</div>-->
<!-- DBX
<hr>
<br/>
<br>
<hr>-->
<!-- Dumby Text
<p>Test</p>
<p>Our Group Chat & More resources are available here</p>
<a href="https://www.deviantart.com/coding-artists">Coding Artist's Group on Deviantart</a>
<p>Sarah Dresden Links.</p>
<p>Fractal coding Links</p>
<p>Game developement</p>-->
<!-- Notes ::>>
-->
<section class="tutorials">
</section>
<!-- RSS Feed Section -->
<div class="rss_feed">
<!-- RSS 1
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>RSS Title</title>
<description>This is an example of an RSS feed</description>
<link>http://www.example.com/main.html</link>
<copyright>2020 Example.com All rights reserved</copyright>
<lastBuildDate>Mon, 06 Sep 2010 00:01:00 +0000 </lastBuildDate>
<pubDate>Sun, 06 Sep 2009 16:20:00 +0000</pubDate>
<ttl>1800</ttl>
<item>
<title>Example entry</title>
<description>Here is some text containing an interesting description.</description>
<link>http://www.example.com/blog/post/1</link>
<guid isPermaLink="false">7bd204c6-1655-4c27-aeee-53f933c5395f</guid>
<pubDate>Sun, 06 Sep 2009 16:20:00 +0000</pubDate>
</item>
</channel>
</rss>-->
<!-- RSS 1 -->
<!-- RSS 2 -->
<!-- RSS 2 -->
</div>
<!-- RSS Feed Section -->
<ul>
<li><a href="https://www.deviantart.com/developers/">DeviantArt Developers</a></li>
</ul>
<div class="left_side_affiliate">
<!-- Coding Books -->
</div>
<div class="right_side_affiliate">
<!-- Coding/Msi Laptops -->
</div>
<div class="page_counter">
</div>
<!-- ::>> Footer Notes ::>>
-->
<br><br>
<br><br>
<footer style="filter:opacity(0);"> <!-- Footer wasn't staying put {Temp opacity 0} -->
<a href="">1</a>
<a href="">2</a>
<a href="">3</a>
</footer>
<!-- ::>> Footer Notes ::>>
Pick and Choose which Scripts you'll end up using Sure functionality overlaps with some of them..
-->
<script type="module" src="main.js" async></script>
<!--<script type="module" src="/Modules/core_module.js" async></script>-->
<!-- ::>> P5 Library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.min.js"
integrity="sha512-WIklPM6qPCIp6d3fSSr90j+1unQHUOoWDS4sdTiR8gxUTnyZ8S2Mr8e10sKKJ/bhJgpAa/qG068RDkg6fIlNFA=="
crossorigin="anonymous">
</script>
<!-- ::>> P5 Library -->
<!-- ::>> Three Library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r121/three.min.js"
integrity="sha512-yNJzAsg5JyP91u+sLHlUDULMBd3hmEiVkYeeN1cQBKaLZ7EyT6oH2u5THNIRM2Fu6VKcZJv+F/QAp1h/qzy9Ow=="
crossorigin="anonymous">
</script>
<!-- ::>> Three Library -->
<!-- ::>> GSAP Animation [Note:: Try & find a version with integrity Hash & origin decl`...]-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.5.1/gsap.min.js"></script>
<!-- ::>> GSAP Animation -->
<!-- ::>> Google Firebase Code -->
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-analytics.js"></script>
<!-- Add the standard Performance Monitoring library -->
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-performance.js"></script>
<script>
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
var firebaseConfig = {
apiKey: "AIzaSyCdNYtcIzKV0rnRy69AUsOzAC7p-iRvAPM",
authDomain: "art4coding-b9e8a.firebaseapp.com",
databaseURL: "https://art4coding-b9e8a.firebaseio.com",
projectId: "art4coding-b9e8a",
storageBucket: "art4coding-b9e8a.appspot.com",
messagingSenderId: "632891192315",
appId: "1:632891192315:web:04c7a9f1f5e11d6ca0915e",
measurementId: "G-0YSVGVFBEL"
};
// Initialize Firebase
//firebase.initializeApp(firebaseConfig);
// var perf = firebase.performance();
// analytics.isSupported(firebase.analytics()); // Added as per browser error console suggested.
//[2020-10-29T10:47:56.886Z] @firebase/analytics: Analytics: IndexedDB unavailable or restricted in this environment. Wrap initialization of analytics in analytics.isSupported() to prevent initialization in unsupported environments. Details: A mutation operation was attempted on a database that did not allow mutations. (analytics/indexeddb-unavailable).
</script>
<!-- ::>> Google Firebase Code -->
<!-- ::>> <script type="text/javascript" id="test" src="/Scripts/Secondary.js" style="display:none !important;"></script> -->
<!-- ::>> test if Style None, which greys the element out in console, still allows the element to be run or edited -->
</body>
</html>
<!--
<p class="dummy_txt" style="color:white; margin-top:2vh; display:none;">
Dispassionate extra-terrestrial observer, you have split your worlds in two.<br>
one so far removed from yourself that you feel alienated waking in your own attire<br>
The only solice you find is in the
the orders you take or the inputs you recieve are not are
free-will
another world vastness is bearable only through love<br>
how far away radio telescope laws of physics. From which we spring great turbulent clouds white dwarf<br>
worldlets shores of the cosmic ocean Drake Equation. Great turbulent clouds network of wormholes bits of moving<br>
fluff dream of the mind's eye not a sunrise but a galaxyrise Sea of Tranquility.<br>
Preserve and cherish that pale blue dot preserve and cherish that pale blue dot kindling the energy<br>
hidden in matter not a sunrise but a galaxyrise great turbulent clouds inconspicuous motes of rock and gas<br>
and billions upon billions upon billions upon billions upon billions upon billions upon billions.
</p>
<script type="application/ld+json" id="json_root_config_file">
{
"root" : "art4coding.icu",
"public_ip" : "?",
"private_ip" : "?",
"router" : "? :node: ?",
"proxy" : "? :node: ?",
"middleware" : "? :spam_assasin etc: ?",
"token" : "x4785987bdix4zdsfii122112",
"value" : "open_source_initiative",
"contact" : "https://www.deviantart.com/coding-artists",
"discord_server" : "https://discord.gg/vfcpxYQN",
"groups" : "da fa li di x",
"note_prefix" : "::>> < move these further down...",
"question_prefix" : "?::>>",
"issue_prefix" : "!!::>>",
"required_prefix" : "++::>>",
"assist_prefix" : "+%::>>",
"note" : "move_this_to_an_external_file_after_validate",
"mainEntity": [
{
"website" : "",
"comment" : "null"
"allowed_origins": [
{
"art4coding" : "https://www.art4coding.icu/"
"google_firebase" : "https://www.gstatic.com/firebasejs/",
"cloudflare_cdnjs" : "https://cdnjs.cloudflare.com/ajax/libs/",
"revolver_maps" : "//rf.revolvermaps.com",
"google_fonts" : "",
"font_awesome" : "",
"w3c" : "",
"wikimedia" : "https://upload.wikimedia.org/wikipedia/commons"
"public_domain_imgs" :
}, {
"blocked_ips": "",
"bad_bots" : "",
"" : ""
}
]
}
]
}
</script>
-->
<!-- ::>> Meta
<meta name="" content=""/>
<meta name="author" content="R T Middleton"/>
<meta name="robots" content="index,follow" />
<meta name="rating" content="General"/>
<meta name="revisit-after" content="7 days"/>
<meta name="description" content=""/>
<meta name="description" content=""/>
<meta name="robots" content=""/>
<meta name="googlebot" content=""/>
<meta name="googlebot-news" content=""/>
<meta property="og:type" content="website">
<meta property="og:url" content="">
<meta property="og:title" content="">
<meta property="og:image" content="">
<meta property="og:description" content="">
<meta name="twitter:site" content="">
<meta name="twitter:card" content="">
<meta name="twitter:title" content="">
<meta name="twitter:image" content="">
<meta name="twitter:description" content="">
<meta property="twitter:account_id" content="">
<meta property="da:appurl" content="">
<meta property="fb:page_id" content="">