-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2019-projects.html
More file actions
1171 lines (1169 loc) · 56.4 KB
/
2019-projects.html
File metadata and controls
1171 lines (1169 loc) · 56.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>
2019 Projects - HARDHACK 2021
</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<link href="https://fonts.googleapis.com/css?family=Karla:400,700|Oswald:700|Roboto+Mono:400,400i,700,700i" rel="stylesheet"/>
<script src="files/theme/MutationObserver.js">
</script>
<style>
.navbar__logo .icon,
.navbar__center .navbar__logo:after {
color: #2990ea !important;
}
.header-prompt .navbar__link--login,
.header-prompt .navbar__link.navbar__link--signup {
color: #666C70 !important;
}
.header-prompt .navbar__link.navbar__link--signup {
box-shadow: inset 0 0 0 2px #C9CDCF !important;
}
</style>
<link href="https://cdn2.editmysite.com/css/sites.css?buildTime=1234" id="wsite-base-style" rel="stylesheet" type="text/css"/>
<link href="https://cdn2.editmysite.com/css/old/fancybox.css?1234" rel="stylesheet" type="text/css"/>
<link href="https://cdn2.editmysite.com/css/social-icons.css?buildtime=1234" media="screen,projection" rel="stylesheet" type="text/css">
<link href="files/main_style.css?1584148138" rel="stylesheet" title="wsite-theme-css" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Karla:400,700,400italic,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Karla:400,700,400italic,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Karla:400,700,400italic,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css"/>
<style type="text/css">
.wsite-elements.wsite-not-footer:not(.wsite-header-elements) div.paragraph, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) p, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-block .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-description, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .wsite-form-field label, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .wsite-form-field label, #wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {font-family:"Karla" !important;}
#wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {}
.wsite-elements.wsite-footer div.paragraph, .wsite-elements.wsite-footer p, .wsite-elements.wsite-footer .product-block .product-title, .wsite-elements.wsite-footer .product-description, .wsite-elements.wsite-footer .wsite-form-field label, .wsite-elements.wsite-footer .wsite-form-field label{}
.wsite-elements.wsite-not-footer:not(.wsite-header-elements) h2, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-long .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-large .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-small .product-title, #wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {font-weight:700 !important;letter-spacing: 0px !important;}
#wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {color:#2a2a2a !important;}
.wsite-elements.wsite-footer h2, .wsite-elements.wsite-footer .product-long .product-title, .wsite-elements.wsite-footer .product-large .product-title, .wsite-elements.wsite-footer .product-small .product-title{}
#wsite-title {font-family:"Oswald" !important;font-weight:700 !important;color:#2a2a2a !important;text-transform: none !important;letter-spacing: 0px !important;}
.wsite-menu-default a {}
.wsite-menu a {}
.wsite-image div, .wsite-caption {font-family:"Karla" !important;}
.galleryCaptionInnerText {}
.fancybox-title {}
.wslide-caption-text {}
.wsite-phone {}
.wsite-headline,.wsite-header-section .wsite-content-title {}
.wsite-headline-paragraph,.wsite-header-section .paragraph {}
.wsite-button-inner {text-transform: none !important;}
.wsite-not-footer blockquote {}
.wsite-footer blockquote {}
.blog-header h2 a {}
#wsite-content h2.wsite-product-title {}
.wsite-product .wsite-product-price a {}
@media screen and (min-width: 767px) {.wsite-elements.wsite-not-footer:not(.wsite-header-elements) div.paragraph, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) p, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-block .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-description, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .wsite-form-field label, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .wsite-form-field label, #wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {font-size:16px !important;}
#wsite-content div.paragraph, #wsite-content p, #wsite-content .product-block .product-title, #wsite-content .product-description, #wsite-content .wsite-form-field label, #wsite-content .wsite-form-field label, .blog-sidebar div.paragraph, .blog-sidebar p, .blog-sidebar .wsite-form-field label, .blog-sidebar .wsite-form-field label {}
.wsite-elements.wsite-footer div.paragraph, .wsite-elements.wsite-footer p, .wsite-elements.wsite-footer .product-block .product-title, .wsite-elements.wsite-footer .product-description, .wsite-elements.wsite-footer .wsite-form-field label, .wsite-elements.wsite-footer .wsite-form-field label{}
.wsite-elements.wsite-not-footer:not(.wsite-header-elements) h2, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-long .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-large .product-title, .wsite-elements.wsite-not-footer:not(.wsite-header-elements) .product-small .product-title, #wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {font-size:30px !important;}
#wsite-content h2, #wsite-content .product-long .product-title, #wsite-content .product-large .product-title, #wsite-content .product-small .product-title, .blog-sidebar h2 {}
.wsite-elements.wsite-footer h2, .wsite-elements.wsite-footer .product-long .product-title, .wsite-elements.wsite-footer .product-large .product-title, .wsite-elements.wsite-footer .product-small .product-title{}
#wsite-title {font-size:24px !important;}
.wsite-menu-default a {}
.wsite-menu a {}
.wsite-image div, .wsite-caption {}
.galleryCaptionInnerText {}
.fancybox-title {}
.wslide-caption-text {}
.wsite-phone {}
.wsite-headline,.wsite-header-section .wsite-content-title {}
.wsite-headline-paragraph,.wsite-header-section .paragraph {}
.wsite-button-inner {}
.wsite-not-footer blockquote {}
.wsite-footer blockquote {}
.blog-header h2 a {}
#wsite-content h2.wsite-product-title {}
.wsite-product .wsite-product-price a {}
}
</style>
<link href="https://cdn2.editmysite.com/css/old/slideshow/slideshow.css?1234" rel="stylesheet" type="text/css"/>
<script>
var STATIC_BASE = '//cdn1.editmysite.com/';
var ASSETS_BASE = '//cdn2.editmysite.com/';
var STYLE_PREFIX = 'wsite';
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>
<script src="https://cdn2.editmysite.com/js/lang/en/stl.js?buildTime=1234&" type="text/javascript">
</script>
<script src="https://cdn2.editmysite.com/js/site/main.js?buildTime=1234">
</script>
<script type="text/javascript">
function initCustomerAccountsModels() {
(function(){_W.setup_rpc({"url":"\/ajax\/api\/JsonRPC\/CustomerAccounts\/","actions":{"CustomerAccounts":[{"name":"login","len":2,"multiple":false,"standalone":false},{"name":"logout","len":0,"multiple":false,"standalone":false},{"name":"getSessionDetails","len":0,"multiple":false,"standalone":false},{"name":"getAccountDetails","len":0,"multiple":false,"standalone":false},{"name":"getOrders","len":0,"multiple":false,"standalone":false},{"name":"register","len":4,"multiple":false,"standalone":false},{"name":"emailExists","len":1,"multiple":false,"standalone":false},{"name":"passwordReset","len":1,"multiple":false,"standalone":false},{"name":"passwordUpdate","len":3,"multiple":false,"standalone":false},{"name":"validateSession","len":1,"multiple":false,"standalone":false}]},"namespace":"_W.CustomerAccounts.RPC"});
_W.setup_model_rpc({"rpc_namespace":"_W.CustomerAccounts.RPC","model_namespace":"_W.CustomerAccounts.BackboneModelData","collection_namespace":"_W.CustomerAccounts.BackboneCollectionData","bootstrap_namespace":"_W.CustomerAccounts.BackboneBootstrap","models":{"CustomerAccounts":{"_class":"CustomerAccounts.Model.CustomerAccounts","defaults":null,"validation":null,"types":null,"idAttribute":null,"keydefs":null}},"collections":{"CustomerAccounts":{"_class":"CustomerAccounts.Collection.CustomerAccounts"}},"bootstrap":[]});
})();
}
if(document.createEvent && document.addEventListener) {
var initEvt = document.createEvent('Event');
initEvt.initEvent('customerAccountsModelsInitialized', true, false);
document.dispatchEvent(initEvt);
} else if(document.documentElement.initCustomerAccountsModels === 0){
document.documentElement.initCustomerAccountsModels++
}
</script>
<script type="text/javascript">
_W = _W || {}; _W.securePrefix='UNSET';
</script>
<script>
_W = _W || {};
_W.customerLocale = "en_US";
_W.storeName = null;
_W.storeCountry = "AU";
_W.storeCurrency = "AUD";
_W.storeEuPrivacyPolicyUrl = "";
com_currentSite = "240750007582293700";
com_userID = "101799490";
</script>
<script src="https://cdn2.editmysite.com/js/old/slideshow-jq.js?buildTime=1234" type="text/javascript">
</script>
<script type="text/javascript">
_W.configDomain = "www.weebly.com";
</script>
<script>
_W.relinquish && _W.relinquish()
</script>
<script src="https://cdn2.editmysite.com/js/lang/en/stl.js?buildTime=1234&" type="text/javascript">
</script>
<script>
_W.themePlugins = [];
</script>
<script type="text/javascript">
_W.recaptchaUrl = "https://www.google.com/recaptcha/api.js";
</script>
<script type="text/javascript">
<!--
var IS_ARCHIVE = 1;
function initFlyouts(){
initPublishedFlyoutMenus(
[{"id":"980729199903201996","title":"Home","url":"index.html","target":"","nav_menu":false,"nonclickable":false},{"id":"180778030686805773","title":"Details","url":"details.html","target":"","nav_menu":false,"nonclickable":false},{"id":"262351605450613938","title":"Components","url":"components.html","target":"","nav_menu":false,"nonclickable":false},{"id":"558157107831467310","title":"Rules","url":"rules.html","target":"","nav_menu":false,"nonclickable":false},{"id":"826011429284417961","title":"2019 Projects","url":"2019-projects.html","target":"","nav_menu":false,"nonclickable":false},{"id":"512481355700656421","title":"2018 Projects","url":"2018-projects.html","target":"","nav_menu":false,"nonclickable":false},{"id":"766801339173964871","title":"FAQ","url":"faq.html","target":"","nav_menu":false,"nonclickable":false},{"id":"219636233715695400","title":"About Us","url":"about-us.html","target":"","nav_menu":false,"nonclickable":false}],
"826011429284417961",
'',
'active',
false,
{"navigation\/item":"<li {{#id}}id=\"{{id}}\"{{\/id}} class=\"wsite-menu-item-wrap {{#has_children}}has-submenu{{\/has_children}}\">\n <a\n {{^nonclickable}}\n {{^nav_menu}}\n href=\"{{url}}\"\n {{\/nav_menu}}\n {{\/nonclickable}}\n {{#target}}\n target=\"{{target}}\"\n {{\/target}}\n {{#membership_required}}\n data-membership-required=\"{{.}}\"\n {{\/membership_required}}\n {{#nonclickable}}\n class=\"wsite-menu-item dead-link\"\n {{\/nonclickable}}\n {{^nonclickable}}\n class=\"wsite-menu-item\"\n {{\/nonclickable}}\n >\n {{{title_html}}}\n <\/a>\n {{#has_children}}{{> navigation\/flyout\/list}}{{\/has_children}}\n<\/li>\n","navigation\/flyout\/list":"<div class=\"wsite-menu-wrap\" style=\"display:none\">\n\t<ul class=\"wsite-menu\">\n\t\t{{#children}}{{> navigation\/flyout\/item}}{{\/children}}\n\t<\/ul>\n<\/div>\n","navigation\/flyout\/item":"<li {{#id}}id=\"{{id}}\"{{\/id}}\n class=\"wsite-menu-subitem-wrap {{#is_current}}wsite-nav-current{{\/is_current}} {{#has_children}}has-submenu{{\/has_children}}\"\n >\n <a\n {{^nonclickable}}\n {{^nav_menu}}\n href=\"{{url}}\"\n {{\/nav_menu}}\n {{\/nonclickable}}\n {{#target}}\n target=\"{{target}}\"\n {{\/target}}\n {{#nonclickable}}\n class=\"wsite-menu-item dead-link\"\n {{\/nonclickable}}\n {{^nonclickable}}\n class=\"wsite-menu-item\"\n {{\/nonclickable}}\n >\n <span class=\"wsite-menu-title\">\n {{{title_html}}}\n <\/span>\n <\/a>\n {{#has_children}}{{> navigation\/flyout\/list}}{{\/has_children}}\n<\/li>\n"},
{"hasCustomMinicart":true}
)
}
//-->
</script>
</link>
</head>
<body class="no-header-page wsite-theme-light wsite-page-2019-projects header-sticky banner-overlay-on">
<div class="wrapper">
<div class="edison-header">
<div class="container">
<div class="header-inner-wrap">
<div class="logo">
<span class="wsite-logo">
<a href="/">
<span id="wsite-title">
HARDHACK 2021
</span>
</a>
</span>
</div>
<div class="nav-wrap">
<div class="dummy-menu">
<ul class="wsite-menu-default">
<li class="wsite-menu-item-wrap" id="pg980729199903201996">
<a class="wsite-menu-item" href="index.html">
Home
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg180778030686805773">
<a class="wsite-menu-item" href="details.html">
Details
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg262351605450613938">
<a class="wsite-menu-item" href="components.html">
Components
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg558157107831467310">
<a class="wsite-menu-item" href="rules.html">
Rules
</a>
</li>
<li class="wsite-menu-item-wrap" id="active">
<a class="wsite-menu-item" href="2019-projects.html">
2019 Projects
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg512481355700656421">
<a class="wsite-menu-item" href="2018-projects.html">
2018 Projects
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg766801339173964871">
<a class="wsite-menu-item" href="faq.html">
FAQ
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg219636233715695400">
<a class="wsite-menu-item" href="about-us.html">
About Us
</a>
</li>
</ul>
</div>
<div class="nav desktop-nav">
<ul class="wsite-menu-default">
<li class="wsite-menu-item-wrap" id="pg980729199903201996">
<a class="wsite-menu-item" href="index.html">
Home
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg180778030686805773">
<a class="wsite-menu-item" href="details.html">
Details
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg262351605450613938">
<a class="wsite-menu-item" href="components.html">
Components
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg558157107831467310">
<a class="wsite-menu-item" href="rules.html">
Rules
</a>
</li>
<li class="wsite-menu-item-wrap" id="active">
<a class="wsite-menu-item" href="2019-projects.html">
2019 Projects
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg512481355700656421">
<a class="wsite-menu-item" href="2018-projects.html">
2018 Projects
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg766801339173964871">
<a class="wsite-menu-item" href="faq.html">
FAQ
</a>
</li>
<li class="wsite-menu-item-wrap" id="pg219636233715695400">
<a class="wsite-menu-item" href="about-us.html">
About Us
</a>
</li>
</ul>
</div>
</div>
<div class="site-utils">
<div class="wsite-search-wrap">
<a class="search-toggle" href="#">
Search
</a>
</div>
<button class="hamburger">
<i>
</i>
</button>
</div>
</div>
</div>
</div>
<div class="content-wrap">
<div class="wsite-elements wsite-not-footer" id="wsite-content">
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-section-bg-color wsite-background-93" style="background-color: #ededed;background-image: none;is_customized: 1;">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<h2 class="wsite-content-title">
2019 Teams & Projects
</h2>
<div class="paragraph">
Event photos can be found
<a href="https://bit.ly/2Jl3Mk2" target="_blank">
here
</a>
.
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-section-bg-color wsite-background-94" style="background-color: #ededed;background-image: none;is_customized: 1;">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#020202">
<font size="5">
SeatFinder
</font>
</font>
<br/>
<font color="#000000">
An application that allows students to find free seats in a busy library.
</font>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="455534193694380255-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"455534193694380255",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1/0/1/7/101799490/img-6454.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6411.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6483.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6513.jpg","width":"800","height":"533"}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<span>
<font color="#000000">
The SeatFinder is an application designed for university students to help find free seats in libraries during busy time like exam periods. An ultrasonic sensor placed under each desk is used to detect whether a seat is free or occupied and this information is sent to an phone application which displays a layout of the library, showing all the seats in the library. A seat coloured green is free, and a red seat is occupied. An extra feature included in our project was a reservation button, which can be used to reserve your seat for a set amount of time. During the reservation, a seat will be highlighted orange. LED lights were also used to display the status of a seat. In simpler words, this project is a similar to a car park system, except for seats.
</font>
</span>
<br/>
<br/>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="paragraph">
<span>
<font color="#000000">
This project will serve as a great convenience for students during exam times and will help reduce student stress levels. This project is also greatly beneficial to libraries as it provides them with valuable data of student operation in the library. Information on which areas are most busy in the library and which areas are not will help the library allocate resources more efficiently and help improve the overall infrastructure of the library, which would end up being greatly beneficial to students in the long run as well.
</font>
</span>
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;">
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<span style="color:rgb(0, 0, 0)">
<strong>
Turtle
<br/>
</strong>
Emily Kuo - Akash Ramaswamy - Sarah Ross
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-background-95">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#020202">
<font size="5">
Checkout Chum
</font>
</font>
<br/>
<font color="#000000">
A smart trolley streamlining the retail experience with on-the-go product scanning, tracking and one-step payments.
</font>
<span>
</span>
</div>
<div class="wsite-spacer" style="height:19px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="552165672739844284-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"552165672739844284",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1/0/1/7/101799490/img-6457.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6452.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6387.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6519_1.jpg","width":"800","height":"533"}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph" style="text-align:left;">
<span>
<font color="#000000">
Our project makes retail shopping a three step process: arrive, shop and pay - customers sign in to an individually personalised trolley, items are scanned as the customer shops and trolley contents are automatically synced for streamlined payments.
<br/>
<br/>
Onboard we have a Raspberry Pi, LCD and RFID scanner facilitating the scanning and live transmission of products the customer has placed in the trolley. These items are tracked in real-time on a cloud database. At checkout time, scanning a loyalty/ID card at the POS system will retrieve the list of trolley items from the cloud and present payment options. Our POS system consisted of a laptop, Arduino and RFID scanner.
<br/>
<br/>
<br/>
</font>
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="paragraph">
<span>
<font color="#000000">
Problems addressed:
</font>
</span>
<ul>
<li>
<font color="#000000">
Lengthy queues and the inconvenience of scanning and rebagging items at the checkout.
</font>
</li>
<li>
<font color="#000000">
High establishment costs of existing checkout replacement systems (Amazon Go, self checkouts).
</font>
</li>
</ul>
<ul>
<li>
<font color="#000000">
Labour costs of staffing checkouts.
</font>
</li>
</ul>
<span>
</span>
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;">
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<span style="color:rgb(0, 0, 0)">
<strong>
Paradigm Disruptors
</strong>
<br/>
Shayne D'Lima - Dilshan Goonatillake - Joseph Nguyen -Mukesh Sudhakar
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-section-bg-color wsite-background-96" style="background-color: #ededed;background-image: none;is_customized: 1;">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#0a0a0a" size="5">
Recycle Station
</font>
<br/>
<span>
<font color="#000000">
Gamified recycling with automatic recyclable sorting
</font>
</span>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="980103855454806468-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"980103855454806468",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1/0/1/7/101799490/img-6443.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6429.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6525.jpg","width":"800","height":"533"}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<span>
<font color="#000000">
The project is a recycling chute that accepts recyclables from users after they tap on with their RFID card. The RFID card reader connected to the WeMos D1 prompts it to send a HTTP request to the Raspberry Pi Zero which detects whether items inputted are recyclable using a camera. The response from the Pi determines whether the WeMos actuates two servos to allow items into the chute.
<br/>
<br/>
Users receive visual feedback from the system with the use of an LED light - it turns green when the user initially taps on with their card or when an item is accepted and turns red when the item in the chute is not recyclable. After a minute the light turns off, signalling the next user to tap on with their RFID card.
<br/>
<br/>
After each item is accepted there is a frontend wherein users can see their recycling credits and participate in challenges or promotions. The frontend is built in React with Material UI components.
</font>
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="paragraph" style="text-align:left;">
<span>
<font color="#000000">
The project addresses the problem of people not recycling enough by rewarding users with credits and challenges essentially gamifying recycling. Futhermore, Recycle Station makes recycling more economical by sorting recyclables closer to the source.
</font>
</span>
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;">
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<span style="color:rgb(0, 0, 0)">
<strong>
Guava
</strong>
<br/>
Joseph Hao - Steven Tran - Jacob Wisniewski - Eddie Yao
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-background-97">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#0a0a0a">
<font size="5" style="">
Shüüs
</font>
</font>
<br/>
<span>
<font color="#000000">
Shüüs aids in navigation on foot, through an integrated app and haptic feedback motors embedded in insoles.
</font>
</span>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="529969508810513921-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"529969508810513921",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1/0/1/7/101799490/img-6462.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6405.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6460.jpg","width":"800","height":"533"}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<span>
<font color="#000000">
Through a mobile app, users are able to type in their intended destination. By utilising the Google Maps API, the optimal route is calculated and then transmitted. The Shüüs connect to the phone via Wifi (using the Wemos D1), and begin receiving directional information. The microcontroller responds by sending the appropriate signal to a MOSFET circuit, which in turn powers the motor of either the left foot, or the right foot. An accelerometer and gyro module (MPU-6050) continuously collects pitch, yaw and roll data to calculate the amount of steps taken, which is transmitted back to the mobile application, and displayed to the user.
</font>
<br/>
<br/>
<font color="#000000">
Aims to address navigation in unfamiliar areas for both sighted and vision impaired people.
</font>
</span>
<br/>
</div>
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<span>
<font color="#000000">
John Bui - Penn Chen - Zi Li Tan - Angus Trau - Kenny Ung
</font>
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-section-bg-color wsite-background-98" style="background-color: #ededed;background-image: none;is_customized: 1;">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#090808" size="5">
B.R.E.A.D.B.O.X
</font>
<br/>
<span>
<font color="#000000">
A learning tool for visually impaired children.
</font>
</span>
</div>
<div class="wsite-spacer" style="height:15px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="528674708365666368-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"528674708365666368",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1/0/1/7/101799490/img-6435.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6432.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6401.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6478.jpg","width":"800","height":"533"}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<span>
<font color="#000000">
Only around 10% of visually impaired children around the world are literate in Braille. In an attempt to solve this problem, we created a device known as the B.R.E.A.D.B.O.X.
<br/>
<br/>
This device supplements a child's learning by converting on-screen text into physical Braille character by character which the child can feel and learn at their own pace. B.R.E.A.D.B.O.X also supports TTS (Text-to-Speech), which allows the child to hear the currently displayed character (word, letter, or punctuation).
<br/>
<br/>
An Arduino programmed with six servos were used to create the braille characters, receiving input from a user interface on the computer programmed in Java.
</font>
</span>
</div>
<div class="wsite-spacer" style="height:22px;">
</div>
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<strong>
<span>
<font color="#000000">
BAS²
</font>
</span>
</strong>
<span style="color:rgb(0, 0, 0)">
<br/>
Steven Hoang - Albin Joy -
</span>
<span>
<font color="#000000">
Steven Lay - Bryan Vardic Gunawan
</font>
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-background-99">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#000000" size="5">
PaCheck
</font>
<br/>
<span>
<font color="#000000">
Computer vision remote pantry viewer
</font>
</span>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="201150420576560610-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"201150420576560610",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1/0/1/7/101799490/img-6480.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6399.jpg","width":"800","height":"533"},{"url":"1/0/1/7/101799490/img-6437.jpg","width":"800","height":"533"}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<font color="#000000">
The project consists of a raspberry pi and camera. The raspberry pi hosts a Web application for your mobile phone which lists all the items currently in your pantry, as well as allows you to add more items, or simply view your pantry. The computer vision system compares histograms of each item to a database of objects previously scanned in. Then it will continuously update to tell the user which items are still held in their pantry.
<br/>
<br/>
Deals with food wastage mainly, aiming to minimise double buying of products. The ultimate goal is that it could be further implemented as an inventory manager for any other applications, such as medical facilities or armories.
</font>
<br/>
</div>
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<span>
<font color="#000000">
<strong style="">
#include <stdlib.h>
</strong>
<br/>
</font>
<font color="#000000">
Owen Brooks - Alex Chou - Geordie McClelland - An Nguyen - Josh Pearse
</font>
</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wsite-section-wrap">
<div class="wsite-section wsite-body-section wsite-section-bg-color wsite-background-100" style="background-color: #ededed;background-image: none;is_customized: 1;">
<div class="wsite-section-content">
<div class="container">
<div class="wsite-section-elements">
<div class="paragraph">
<font color="#040404" size="5">
Anti-Sleeping System
<br/>
</font>
<span>
<font color="#000000">
A system that utilizes computer vision and other parameters to determine fatigue in drivers.
</font>
</span>
</div>
<div class="wsite-spacer" style="height:17px;">
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div>
<div style="height:20px;overflow:hidden">
</div>
<div id="524050948688729167-slideshow">
</div>
<script type="text/javascript">
(function(jQuery) {
function init() { window.wSlideshow && window.wSlideshow.render({elementID:"524050948688729167",nav:"thumbnails",navLocation:"bottom",captionLocation:"bottom",transition:"fade",autoplay:"0",speed:"5",aspectRatio:"auto",showControls:"true",randomStart:"false",images:[{"url":"1\/0\/1\/7\/101799490\/img-6466.jpg","width":800,"height":533,"fullHeight":733,"fullWidth":1100},{"url":"1\/0\/1\/7\/101799490\/img-6494.jpg","width":800,"height":533,"fullHeight":733,"fullWidth":1100},{"url":"1\/0\/1\/7\/101799490\/img-6504.jpg","width":800,"height":533,"fullHeight":733,"fullWidth":1100}]}) }
jQuery(document).ready(init);
})(window.jQuery)
</script>
<div style="height:20px;overflow:hidden">
</div>
</div>
</td>
<td class="wsite-multicol-col" style="width:50%; padding:0 15px;">
<div class="paragraph">
<font color="#000000">
Our solution consists of a R-Pi that utilizes the Pi camera to record the face of the driver; Computer vision is used with facial recognition to identify the eyes of the driver and from there, calculate the blink duration to determine if the driver is fatigued. Moreover, to foolproof the system, a touch sensor and heartbeat sensor are used to ensure that the driver is indeed tired and not looking away from view. The system is constructed with both the Arduino and R-Pi; Allowing more process power for the R-Pi for computer vision while the Arduino controls the actuators and evaluates the data from all input sources. A simple buzzer is used to alert the driver that he/she is fatigued.
</font>
<br/>
<br/>
<font color="#000000">
Aims to prevent road fatalities caused by drowsy drivers.
</font>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div>
<div class="wsite-multicol">
<div class="wsite-multicol-table-wrap" style="margin:0 -15px;">
<table class="wsite-multicol-table">
<tbody class="wsite-multicol-tbody">
<tr class="wsite-multicol-tr">
<td class="wsite-multicol-col" style="width:49.999999999999%; padding:0 15px;">
<div class="wsite-spacer" style="height:50px;">
</div>
</td>
<td class="wsite-multicol-col" style="width:49.999999999999%; padding:0 15px;">
<div>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
<hr class="styled-hr" style="width:100%;"/>
<div style="height: 20px; overflow: hidden; width: 100%;">
</div>
</div>
<div class="paragraph" style="text-align:center;">
<strong>
<font color="#000000">
Trihard
<br/>
</font>
</strong>
<font color="#000000">
Jackson Hew - Zwe Lin Htet - Jun Wen Kwan
</font>
<br/>
<font color="#000000">
-
</font>
<span>
<font color="#000000">
Shakeel Rafi - Joon You Tan
</font>
</span>
<br/>
<br/>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>