forked from NITRR-Official/Classlocator-engine
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmaps.html
More file actions
5271 lines (5228 loc) · 357 KB
/
maps.html
File metadata and controls
5271 lines (5228 loc) · 357 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Class Locator - Ground Floor</title>
<meta content="" name="description" />
<meta content="" name="keywords" />
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon" />
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700|Open+Sans:300,300i,400,400i,700,700i"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link
href="assets/vendor/bootstrap-icons/bootstrap-icons.css"
rel="stylesheet"
/>
<link
href="assets/vendor/glightbox/css/glightbox.min.css"
rel="stylesheet"
/>
<!-- Template Main CSS File -->
<link href="assets/css/inner-style.css" rel="stylesheet" />
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TS5SNMMD07"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-TS5SNMMD07');
</script>
</head>
<body style="background-color: rgb(255, 255, 255);">
<!-- ======= Header ======= -->
<!-- This section is for dialog box -->
<div class="popup" id="popup">
<div class="overlay"></div>
<div class="popup-content">
<h1><i style="color:#3274ed"><i class="bi bi-info-circle-fill"></i></i> Information</h1>
<p></p>
<div class="service">
<button class="services" id="services1">Nearest Stairs</button>
<button class="services" id="services2">Nearest Lift/Water</button>
<button class="services" id="services3">Nearest Ladies Toilet</button>
<button class="services" id="services4">Nearest Gents Toilet</button>
<button class="services" id="services5">Nearest Exit Gates</button>
</div>
<div class="controls">
<button class="close-btn">Close</button>
</div>
</div>
</div>
<header id="header" class="fixed-top d-flex
flex-column p-2">
<div class="align-items-center">
<div
class="container d-flex justify-content-between align-items-center"
>
<div id="logo">
<a class="initial-logo" href="index.html"
><img height="50px" src="assets/img/logo.png" alt=""
/></a>
<a class="final-logo" href="index.html"
><img
height="50px"
src="assets/img/final_white_logo-sm.png"
alt=""
/></a>
</div>
<div class="bigContainer">
<div class="hcontainer">
<input
id="current"
type="text"
placeholder="Nearest Room"
name="search-box"
value=""
autocomplete="off"
/>
</div>
<div class="iContainer" id="currentdiv">
<!-- Don't think this section useless, it is used for showing the search results -->
</div>
<div>
<!-- This feature is completed successfully, just frontend part is left, will be completed soon -->
<a id="swap" class="btn-get-started" style="display:none;color:#fff;border:none;margin:0;width:50px; cursor:pointer;z-index: 2;"><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512" height="60" fill="white">
<path
d="M32 96l320 0V32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l96 96c6 6 9.4 14.1 9.4 22.6s-3.4 16.6-9.4 22.6l-96 96c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6V160L32 160c-17.7 0-32-14.3-32-32s14.3-32 32-32zM480 352c17.7 0 32 14.3 32 32s-14.3 32-32 32H160v64c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-96-96c-6-6-9.4-14.1-9.4-22.6s3.4-16.6 9.4-22.6l96-96c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 64H480z" />
</svg></a>
</div>
<div class="hcontainer">
<input
id="final"
type="text"
placeholder="Destination Room"
name="search-box"
value=""
autocomplete="off"
/>
</div>
<div class="iContainer i2Container" id="finaldiv">
<!-- Don't think this section useless, it is used for showing the search results -->
</div>
<!-- <a href="#" class="btn-get-started nav-search" style="width:80px; padding:0.5rem 1rem;"><i class="bi bi-search"></i></a> -->
</div>
<nav id="navbar" class="navbar">
<ul>
<li>
<a class="nav-link scrollto active" href="./index.html">Home</a>
</li>
<li class="dropdown">
<a href="#"
><span>Select Floor</span> <i class="bi bi-chevron-down"></i
></a>
<ul>
<li>
<a id="grounds1" href="./maps.html">Ground Floor</a>
</li>
<li>
<a id="firstt1" href="./maps.html">First Floor</a>
</li>
<li>
<a id="secondd1" href="./maps.html">Second Floor</a>
</li>
<li>
<a id="backyardd1" href="./maps.html">Backside</a>
</li>
</ul>
</li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
</div>
</div>
</header>
<!-- End Header -->
<div class="containerharsh">
<ul class="pagination" style="position:relative;z-index:30;">
<li>
<a href="#" style="cursor: pointer">Ground</a>
</li>
<li>
<a href="#" style="cursor: pointer">First</a>
</li>
<li>
<a href="#" style="cursor: pointer">Second</a>
</li>
<li>
<a href="#" style="cursor: pointer">Backside</a>
</li>
</ul>
</div>
<!-- harsh -->
<div class="w-container" id="removal">
<!-- This is ground floor -->
<div
style="perspective-origin: 0%;transition: transform 1s; opacity: 0;"
class="purple"
id="groundd"
>
<svg
style="transform-origin: 0% 0%;position: relative;z-index: 0;margin: auto;transition: transform 0.05s;"
width="57vw"
height="90vh"
viewBox="0 0 407 310"
fill="none"
version="1.1"
id="svg1039"
sodipodi:docname="map - Copy.svg"
inkscape:version="1.2.1 (9c6d41e410, 2022-07-14)"
inkscape:export-filename="..\map - Copy.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
>
<defs id="defs1043">
<symbol id="ToiletsWomen_Inv">
<title id="title11045">Toilets - Women</title>
<rect
x="0.5"
y="0.5"
width="71"
height="71"
ry="6"
style="stroke: #ffffff"
id="rect11047"
/>
<g style="fill: #ffffff; stroke: none" id="g11053">
<circle cx="36" cy="10" r="5" id="circle11049" />
<path
d="m 35.5,64 a 2.5,2.5 0 0 1 -5,0 V 47 H 24 l 7,-23.5 h -1 l -4.1,13.4 a 2.1,2.1 0 0 1 -4,-1.2 L 26.5,20.5 A 6.5,6.5 0 0 1 33,16 h 6 a 6.5,6.5 0 0 1 6.5,4.5 l 4.6,15.2 a 2.1,2.1 0 0 1 -4,1.2 L 42,23.5 H 41 L 48,47 h -6.5 v 17 a 2.5,2.5 0 0 1 -5,0 V 47 h -1 z"
id="path11051"
/>
</g>
</symbol>
<symbol id="ToiletsWomen">
<title id="title11036">Toilets - Women</title>
<g style="stroke: none" id="g11042">
<circle cx="36" cy="10" r="5" id="circle11038" />
<path
d="m 35.5,64 a 2.5,2.5 0 0 1 -5,0 V 47 H 24 l 7,-23.5 h -1 l -4.1,13.4 a 2.1,2.1 0 0 1 -4,-1.2 L 26.5,20.5 A 6.5,6.5 0 0 1 33,16 h 6 a 6.5,6.5 0 0 1 6.5,4.5 l 4.6,15.2 a 2.1,2.1 0 0 1 -4,1.2 L 42,23.5 H 41 L 48,47 h -6.5 v 17 a 2.5,2.5 0 0 1 -5,0 V 47 h -1 z"
id="path11040"
/>
</g>
</symbol>
<symbol id="ToiletsMen">
<title id="title11016">Toilets - Men</title>
<g style="stroke: none" id="g11022">
<circle cx="36" cy="9" r="5" id="circle11018" />
<path
d="m 24,22 v 15.5 a 2.25,2.25 0 0 0 4.5,0 V 23 h 1 v 39.5 a 3,3 0 0 0 6,0 V 40 h 1 v 22.5 a 3,3 0 0 0 6,0 V 23 h 1 v 14.5 a 2.25,2.25 0 0 0 4.5,0 V 22 A 7,7 0 0 0 41,15 H 31 a 7,7 0 0 0 -7,7 z"
id="path11020"
/>
</g>
</symbol>
<symbol id="StairsUp">
<title id="title10954">Stairs Up</title>
<path
d="m 9,56.5 h 12 v -10 h 10 v -10 h 10 v -10 h 10 v -10 h 12"
style="fill: none; stroke-width: 5"
id="path10956"
/>
<path
d="M 54,45 42,57 m 12,-3 v -9 h -9"
style="
fill: none;
stroke-width: 4;
stroke-linecap: round;
stroke-linejoin: round;
"
id="path10958"
/>
</symbol>
<symbol id="Stairs">
<title id="title10926">Stairs</title>
<path
d="m 9,56.5 h 12 v -10 h 10 v -10 h 10 v -10 h 10 v -10 h 12"
style="fill: none; stroke-width: 5"
id="path10928"
/>
</symbol>
<symbol id="UpArrow">
<title id="title3820">Up Arrow</title>
<path
d="M 36,9 58,31 V 46 L 42,30 V 62 H 30 V 30 L 14,46 V 31 Z"
style="stroke: none"
id="path3822"
/>
</symbol>
</defs>
<sodipodi:namedview
id="namedview1041"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="3.8092526"
inkscape:cx="178.25019"
inkscape:cy="167.09315"
inkscape:window-width="1920"
inkscape:window-height="1051"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
inkscape:current-layer="svg1039"
/>
<g id="g17831">
<g id="1" class="room">
<path d="M 294.711,264.623 H 273.5 V 209.5 h 102 v 63 h -80.289 v -7.377 -0.5 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: #70f770; fill-opacity: 0.12549"></path>
<text xml:space="preserve" style="
font-style: normal;
font-variant: normal;
font-weight: bold;
font-stretch: normal;
font-size: 10.3455px;
font-family: sans-serif;
-inkscape-font-specification: 'sans-serif Bold';
white-space: pre;
inline-size: 88.8082;
display: inline;
fill: #1a1a1a;
fill-opacity: 1;
stroke-width: 1.29319;
cursor: default;
" x="52.718563" y="233.89223" id="text1148-65-9-3-72-6-5-95-2-7" transform="matrix(0.73093534,-0.01226256,0.00706382,0.88929159,274.49066,51.25139)">
<tspan x="52.718563" y="233.89223" id="tspan6793">Stage</tspan>
</text>
<image width="26.340412" height="29.490646" preserveAspectRatio="none" xlink:href="assets/img/stage.png" id="image2824" x="313.14053" y="216.00859">
<rect style="fill: #ffffff; fill-opacity: 1; stroke-width: 0.974399" id="rect846" width="492.48505" height="364.90097" x="-45.153214" y="-22.576607" ry="0.47472677"></rect>
</image>
</g>
<g id="2" class="room">
<path d="m 251.5,209.5 h 22 v 55 H 255.848 251.5 v -6.392 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<text xml:space="preserve" style="
cursor:default;
font-size: 14.6667px;
white-space: pre;
inline-size: 88.8082;
display: inline;
fill: #280b0b;
stroke-width: 1.73675;
" x="52.718563" y="233.89223" id="text1148-8" transform="matrix(-0.01335465,-0.58887933,0.56259167,-0.01726652,134.58204,291.6052)">
<tspan x="52.718563" y="233.89223" id="tspan6767">E - HALL</tspan>
</text>
</g>
<g id="3" class="room">
<path d="m 306.5,272.5 h 89 v 16 H 324.971 306.5 v -1.592 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219);"></path>
<text style="
cursor: default;
font-size: 14.6667px;
white-space: pre;
inline-size: 88.8082;
display: inline;
fill: #280b0b;
stroke-width: 1.29319;
" x="52.718563" y="233.89223" id="text1148-0" transform="matrix(0.73350251,0,0,0.81521326,286.32479,93.09941)" inkscape:transform-center-x="-196.36398" inkscape:transform-center-y="6.8254858">
<tspan x="52.718563" y="233.89223" id="tspan6769">Parking</tspan>
</text>
</g>
<g id="4" class="room">
<path d="m 165.5,209.5 h 78 v 49 H 181.652 165.5 v -5.654 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: #70f770; fill-opacity: 0.12549"></path>
</g>
<g id="5" class="room">
<path d="m 166.5,120.5 h 77 v 64 H 182.441 166.5 V 177 Z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: #70f770; fill-opacity: 0.12549"></path>
</g>
<g id="6" class="room">
<path d="M 133.5,87.3607 V 93.5 H 75.897 31.5 V 86.6154 34.5 h 212 v 59 h -74 v -6.1393 -6.6394 -0.5 h -0.5 -35 -0.5 v 0.5 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: #70f770; fill-opacity: 0.2"></path>
</g>
<g id="7" class="room">
<path d="m 207.5,93.449927 h 36 V 112.5 H 214.799 207.5 v -1.94522 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="stroke-width: 1; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-1" x="210.33321" y="97.298317"></image>
</g>
<g id="8" class="room">
<path d="m 169.5,93.449927 h 38 V 112.5 H 177.221 169.5 v -1.94522 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="stroke-width: 1; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-71" x="171.21791" y="98.085869"></image>
</g>
<g id="9" class="room">
<path d="m 100.5,93.449927 h 11 V 112.5 h -8.971 -2.029 v -1.94522 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="stroke-width: 1; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1-4-3-7" x="102.13777" y="99.91497"></image>
</g>
<g id="10" class="room">
<path d="m 89.5,93.449927 h 11 V 112.5 H 91.5294 89.5 v -1.94522 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="stroke-width: 1; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1-4-3-09" x="91.374512" y="100.17749"></image>
</g>
<g id="11" class="room">
<path d="m 74.5,93.449927 h 15 V 112.5 H 77.3725 74.5 v -1.94522 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="stroke-width: 1; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-710" x="78.023781" y="99.135948"></image>
</g>
<g id="12" class="room">
<path d="m 59.5,93.449927 h 15 V 112.5 H 62.3725 59.5 v -1.94522 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="stroke-width: 1; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1-4-3-3" x="62.835831" y="99.389931"></image>
</g>
<g id="13" class="room">
<path d="m 39.5,93.449927 h 20 V 112.5 H 43.4265 39.5 v -1.94522 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="stroke-width: 1; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-8" x="45.471462" y="99.135948"></image>
</g>
<g id="14" class="room">
<path d="m 22.5,93.449927 h 17 V 112.5 H 25.7941 22.5 v -1.94522 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="display: inline; stroke-width: 1; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.4646015" height="12.067928" preserveAspectRatio="none" xlink:href="./assets/images/ladder.png" id="image9148-3-5-8" x="24.669792" y="97.13588"></image>
</g>
<g id="15" class="room">
<path d="M 133.42405,92.936863 V 80.106218 l 36.20722,0.13126 -0.13126,12.699385 v 19.563127 h -45.95976 -11.90898 v -1.95086 -17.091758 h 21.95021 -0.15743 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="stroke-width: 1; fill: rgb(219, 219, 219); fill-opacity: 0.827451;" sodipodi:nodetypes="cccccccccccc"></path>
<image width="16.689739" height="17.518473" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-76" x="142.6656" y="89.060081"></image>
</g>
<g id="16" class="room">
<path d="m 212.97463,184.46174 h 30.56363 v 17.07652 h -24.36685 -6.19678 v -1.72272 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="display: inline; stroke-width: 0.923478; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="14.764712" height="13.568173" preserveAspectRatio="none" xlink:href="assets/img/classroom.png" id="image7515-9-7" x="216.85716" y="185.34166"></image>
</g>
<g id="17" class="room">
<path d="m 194.59057,184.59057 h 18.33175 v 16.81886 h -14.87551 -3.45624 v -1.69673 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="stroke-width: 1.18115; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1-3" x="195.85695" y="188.12125"></image>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-1-6-2-2" x="204.51985" y="187.07971"></image>
</g>
<g id="18" class="room">
<path d="m 166.5,184.5 h 28 v 17 H 172.113 166.5 v -1.715 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1-3-4" x="170.81752" y="188.61346"></image>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-3-4" x="180.36813" y="188.12978"></image>
</g>
<g id="19" class="room">
<path d="m 148.5,184.5 h 18 v 17 H 152.005 148.5 v -1.715 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.2767096" height="10.326782" preserveAspectRatio="none" xlink:href="./assets/images/ladder.png" id="image9148-4" x="147.81596" y="187.99496"></image>
</g>
<g id="20" class="room">
<path d="m 229.5,120.5 h 14 v 10 H 232.162 229.5 v -0.854 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<text xml:space="preserve" style="
font-style: normal;
font-variant: normal;
font-weight: bold;
font-stretch: normal;
font-size: 10.3455px;
font-family: sans-serif;
-inkscape-font-specification: 'sans-serif Bold';
white-space: pre;
inline-size: 88.8082;
display: inline;
fill: #1a1a1a;
fill-opacity: 1;
stroke-width: 1.29319;
cursor: default;
" x="52.718563" y="233.89223" id="text1148-65-9-3-72-6-5-9-5-8-9-7-1-6" transform="matrix(0.34857582,0,0,0.41025408,212.23253,29.060053)">
<tspan x="52.718563" y="233.89223" id="tspan6787">Lift</tspan>
</text>
<text xml:space="preserve" style="
font-style: normal;
font-variant: normal;
font-weight: bold;
font-stretch: normal;
font-size: 10.3455px;
font-family: sans-serif;
-inkscape-font-specification: 'sans-serif Bold';
white-space: pre;
inline-size: 88.8082;
display: inline;
fill: #1a1a1a;
fill-opacity: 1;
stroke-width: 1.29319;
cursor: default;
" x="52.718563" y="233.89223" id="text1148-65-9-3-72-6-5-9-5-8-9-7-1-4-0" transform="matrix(0.20072166,0,0,0.35400408,223.4135,45.976448)">
<tspan x="52.718563" y="233.89223" id="tspan6789">water</tspan>
</text>
</g>
<g id="21" class="room">
<path d="m 148.5,163.5 h 18 v 21 H 152.005 148.5 v -2.208 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-3" x="151.52106" y="166.48203"></image>
</g>
<g id="22" class="room">
<path d="m 148.5,141.5 h 18 v 22 H 152.005 148.5 v -2.331 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-5" x="151.47914" y="143.64969"></image>
</g>
<g id="23" class="room">
<path d="m 148.5,120.5 h 18 v 21 H 152.005 148.5 v -2.208 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-16" x="151.33543" y="124.90118"></image>
</g>
<g id="24" class="room">
<path d="m 213.5,258.5 h 30 v 14 H 219.534 213.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4" x="217.49924" y="260.62573"></image>
<text style="cursor: default; font-weight:bold;font-size:5.33333px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#000000;fill-opacity:1" x="228.15503" y="268.07294" id="text2668-3"><tspan sodipodi:role="line" id="tspan2666-2" x="228.15503" y="268.07294">G1</tspan></text>
</g>
<g id="25" class="room">
<path d="m 118.5,258.5 h 22 v 14 H 122.848 118.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.0389214" height="8.5748444" preserveAspectRatio="none" xlink:href="assets/img/work.png" id="image8396-7-3" x="123.06462" y="260.06891"></image>
<text style="cursor: default; font-weight:bold;font-size:4px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#000000;fill-opacity:1" x="130.47179" y="263.70001" id="text2668"><tspan sodipodi:role="line" id="tspan2666" x="130.47179" y="263.70001">G37</tspan></text>
</g>
<g id="26" class="room">
<path d="m 96.5,258.5 h 22 v 14 H 100.848 96.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-9" x="99.187645" y="260.58493"></image>
</g>
<g id="27" class="room">
<path d="m 74.5,258.5 h 22 v 14 H 78.848 74.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-1" x="77.13607" y="261.17221"></image>
</g>
<g id="28" class="room">
<path d="m 53.5,258.5 h 21 v 14 H 57.6373 53.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.0389214" height="8.5748444" preserveAspectRatio="none" xlink:href="assets/img/work.png" id="image8396-7-3-6" x="55.497169" y="260.06891"></image>
</g>
<g id="29" class="room">
<path d="m 38.5,258.5 h 15 v 14 H 41.3725 38.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.4646015" height="12.067928" preserveAspectRatio="none" xlink:href="./assets/images/ladder.png" id="image9148-3-5" x="39.633354" y="260.58487"></image>
</g>
<g id="30" class="room">
<path d="m 15.5,266.5 h 15 v 14 H 18.3725 15.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<use xlink:href="#ToiletsMen" style="fill: #000000; stroke: #000000; stroke-width: 2.38532" id="use14897-2-6" transform="matrix(0.14402683,0,0,0.12820291,16.70423,269.87698)"></use>
</g>
<g id="31" class="room">
<path d="m 15.5,252.5 h 15 v 14 H 18.3725 15.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<use xlink:href="#ToiletsWomen" style="fill: #000000; stroke: #000000; stroke-width: 5" id="use14643-7-2" transform="matrix(0.16388737,0,0,0.1607614,16.83903,253.35872)"></use>
</g>
<g id="32" class="room">
<path d="m 15.5,194.5 h 15 v 22 H 18.3725 15.5 v -2.331 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="5.4014354" height="5.9676495" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-1-6-2-5-3" x="19.906998" y="209.3938"></image>
</g>
<g id="33" class="room">
<path d="m 15.5,187.5 h 15 v 7 H 18.3725 15.5 v -0.485 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1-4-3-01" x="18.556679" y="186.54614"></image>
</g>
<g id="34" class="room">
<path d="m 15.5,172.5 h 15 v 15 H 18.3725 15.5 v -1.469 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1-4-3-34" x="18.13179" y="176.47028"></image>
</g>
<g id="35" class="room">
<path d="m 38.5,244.5 h 17 v 14 H 41.7941 38.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-1-0" x="40.515068" y="246.52994"></image>
</g>
<g id="36" class="room">
<path d="m 38.412869,235.1382 h 17.174262 v 9.44893 H 41.740736 38.412869 v -0.90845 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451; stroke-width: 0.825737;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1-4" x="41.527065" y="236.98082"></image>
</g>
<g id="37" class="room">
<path d="m 38.647721,223.64772 h 16.704558 v 11.95494 H 41.884573 38.647721 v -0.82832 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451; stroke-width: 1.29544;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-1-2" x="40.515068" y="225.0515" inkscape:transform-center-x="-6.8254859" inkscape:transform-center-y="0.26251869"></image>
</g>
<g id="38" class="room">
<path d="m 38.5,209.5 h 17 v 14 H 41.7941 38.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-1-6" x="40.658779" y="212.66167"></image>
</g>
<g id="39" class="room">
<path d="m 55.5,120.5 h 85 v 64 H 73.1274 55.5 V 177 Z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: #70f770; fill-opacity: 0.12549"></path>
</g>
<g id="40" class="room">
<path d="m 126.5,120.5 h 14 v 10 H 129.162 126.5 v -0.854 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<text xml:space="preserve" style="
font-style: normal;
font-variant: normal;
font-weight: bold;
font-stretch: normal;
font-size: 10.3455px;
font-family: sans-serif;
-inkscape-font-specification: 'sans-serif Bold';
white-space: pre;
inline-size: 88.8082;
display: inline;
fill: #1a1a1a;
fill-opacity: 1;
stroke-width: 1.29319;
cursor: default;
" x="52.718563" y="233.89223" id="text1148-65-9-3-72-6-5-9-5-8-9-7-1" transform="matrix(0.34857582,0,0,0.41025408,109.363,29.111685)">
<tspan x="52.718563" y="233.89223" id="tspan6783">Lift</tspan>
</text>
<text xml:space="preserve" style="
font-style: normal;
font-variant: normal;
font-weight: bold;
font-stretch: normal;
font-size: 10.3455px;
font-family: sans-serif;
-inkscape-font-specification: 'sans-serif Bold';
white-space: pre;
inline-size: 88.8082;
display: inline;
fill: #1a1a1a;
fill-opacity: 1;
stroke-width: 1.29319;
cursor: default;
" x="52.718563" y="233.89223" id="text1148-65-9-3-72-6-5-9-5-8-9-7-1-4" transform="matrix(0.20072166,0,0,0.35400408,120.54397,46.02808)">
<tspan x="52.718563" y="233.89223" id="tspan6785">water</tspan>
</text>
</g>
<g id="41" class="room">
<path d="m 111.5,184.5 h 29 v 17 H 117.324 111.5 v -1.715 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-1-6-2" x="119.23921" y="188.12978"></image>
</g>
<g id="42" class="room">
<path d="m 97.5,184.5 h 14 v 17 H 100.162 97.5 v -1.715 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1-4-9" x="100.59377" y="190.38377"></image>
</g>
<g id="43" class="room">
<path d="m 84.5,184.5 h 13 v 17 H 86.951 84.5 v -1.715 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1-4-3" x="87.86161" y="190.77754"></image>
</g>
<g id="44" class="room">
<path d="m 55.5,184.5 h 29 v 17 H 61.3235 55.5 v -1.715 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-1-6-2-5" x="65.098145" y="187.93631"></image>
</g>
<g id="45" class="room">
<path d="m 38.5,189.5 h 17 v 12 H 41.7941 38.5 v -1.1 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.4646015" height="12.067928" preserveAspectRatio="none" xlink:href="./assets/images/ladder.png" id="image9148-3-5-5" x="37.3018" y="189.80498"></image>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1-4-3-0" x="45.071064" y="191.82762"></image>
</g>
<g id="46" class="room">
<path d="m 38.608485,168.38922 h 16.78303 v 21.00229 H 41.860543 38.608485 v -2.01922 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="stroke-width: 1.21697; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-1-6-2-5-7" x="42.120941" y="178.02281"></image>
</g>
<g id="47" class="room">
<path d="m 38.453749,157.38471 h 17.092502 v 11.46732 H 41.765773 38.453749 v -1.10251 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="stroke-width: 0.907498; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1-4-3-0-5" x="43.071064" y="159.37544"></image>
</g>
<g id="48" class="room">
<path d="m 38.554813,137.67925 h 16.890374 v 19.82816 H 41.827671 38.554813 v -1.9729 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="stroke-width: 1.10962; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.0389214" height="8.5748444" preserveAspectRatio="none" xlink:href="assets/img/work.png" id="image8396-7-3-6-5" x="42.239975" y="139.17905"></image>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1-4-3-0-7" x="43.202324" y="149.43085"></image>
</g>
<g id="49" class="room">
<path d="m 38.414767,120.41477 h 17.170466 v 17.03238 H 41.741898 38.414767 v -1.83949 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="stroke-width: 0.829534; fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6-1-6-2-5-4-9" x="41.827309" y="127.09418"></image>
</g>
<g id="50" class="room">
<path d="m 55.5,209.5 h 85 v 49 H 73.1274 55.5 v -5.654 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: #70f770; fill-opacity: 0.12549"></path>
<image width="34.398804" height="30.590807" preserveAspectRatio="none" xlink:href="assets/img/player.png" id="image1480" x="79.352936" y="218.5056"></image>
</g>
<g id="51" class="room">
<path d="m 192.5,258.5 h 21 v 14 H 196.637 192.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-0" x="194.31259" y="260.49402"></image>
<text style="cursor: default; font-weight:bold;font-size:5.33333px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#000000;fill-opacity:1" x="203.61464" y="268.13016" id="text2668-3-9"><tspan sodipodi:role="line" id="tspan2666-2-8" x="203.61464" y="268.13016">G1</tspan></text>
</g>
<g id="52" class="room">
<path d="m 165.5,258.5 h 19 v 14 H 169.216 165.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.0389214" height="8.5748444" preserveAspectRatio="none" xlink:href="assets/img/work.png" id="image8396-7-9" x="167.43028" y="261.90652"></image>
<text style="cursor: default; font-weight:bold;font-size:5.33333px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#000000;fill-opacity:1" x="176.05017" y="265.76749" id="text2668-3-6"><tspan sodipodi:role="line" id="tspan2666-2-3" x="176.05017" y="265.76749">G1</tspan></text>
</g>
<g id="53" class="room">
<path d="m 148.5,258.5 h 17 v 14 H 151.794 148.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.4646015" height="12.067928" preserveAspectRatio="none" xlink:href="./assets/images/ladder.png" id="image9148-3" x="151.27968" y="259.72653"></image>
</g>
<g id="54" class="room">
<path d="m 148.5,251.5 h 17 v 7 H 151.794 148.5 v -0.485 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-1" x="153.10622" y="251.90776"></image>
</g>
<g id="55" class="room">
<path d="m 148.5,209.5 h 17 v 7 H 151.794 148.5 v -0.485 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5-0" x="152.45651" y="209.77003"></image>
</g>
<g id="56" class="room">
<path d="m 148.5,216.5 h 17 v 35 H 151.794 148.5 v -3.931 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-4-9-6" x="153.19171" y="226.7515"></image>
</g>
<g id="57" class="room">
<path d="m 383.5,272.5 h 12 v -9 h -9.76 -2.24 v 0.731 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.0389214" height="8.5748444" preserveAspectRatio="none" xlink:href="assets/img/work.png" id="image8396-7-2" x="385.3208" y="264.2692"></image>
</g>
<g id="58" class="room">
<path d="m 383.5,245.5 h 12 v 18 h -9.76 -2.24 v -1.838 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="10.202228" height="10.710048" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-62-3" x="384.60788" y="249.02559"></image>
</g>
<g id="59" class="room">
<path d="m 383.5,227.5 h 12 v 18 h -9.76 -2.24 v -1.838 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.1205606" height="8.0552807" preserveAspectRatio="none" xlink:href="assets/img/classroom.png" id="image7515-3" x="385.01746" y="232.50169"></image>
</g>
<g id="60" class="room">
<path d="m 383.5,216.5 h 12 v 11 h -9.76 -2.24 v -0.977 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.1205606" height="8.0552807" preserveAspectRatio="none" xlink:href="assets/img/classroom.png" id="image7515-92" x="384.75494" y="218.06317"></image>
</g>
<g id="61" class="room">
<path d="m 383.5,205.5 h 12 v 7 h -9.76 -2.24 v -0.485 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219);"></path>
<use xlink:href="#ToiletsWomen" style="
fill: #0e0e0e;
stroke: #000000;
stroke-width: 5;
fill-opacity: 0.99421966;
" id="use14643-7-0-5" transform="matrix(-0.00855657,0.16357792,-0.13639044,-0.00987446,393.98667,203.43239)"></use>
</g>
<g id="62" class="room">
<path d="m 383.5,195.5 h 12 v 8 h -9.76 -2.24 v -0.608 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="5.2493725" height="8.5031452" preserveAspectRatio="none" xlink:href="./assets/images/ladder.png" id="image9148-6-9-9-7" x="195.40472" y="-394.26886" transform="matrix(-0.00208874,0.99999782,-0.99999586,-0.00287824,0,0)"></image>
</g>
<g id="63" class="room">
<path d="m 383.5,181.36874 h 12 v 14 h -9.76 -2.24 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<text xml:space="preserve" style="
font-style: normal;
font-variant: normal;
font-weight: bold;
font-stretch: normal;
font-size: 6.89703px;
font-family: sans-serif;
-inkscape-font-specification: 'sans-serif Bold';
white-space: pre;
inline-size: 88.8082;
display: inline;
fill: #1a1a1a;
fill-opacity: 1;
stroke-width: 1.29319;
cursor: default;
" x="52.718563" y="233.89223" id="text1148-65-9-3-7-3-6-0-0-6-6" transform="matrix(0.60765726,0,0,0.56359239,353.28921,60.707639)">
<tspan x="52.718563" y="233.89223" id="tspan6765">G55</tspan>
</text>
<image width="6.3873434" height="6.1951194" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-76-3-67" x="386.15814" y="182.53117"></image>
</g>
<g id="64" class="room">
<path d="m 383.5,163.5 h 23 v 18 H 388.059 383.5 v -1.838 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.1205606" height="8.0552807" preserveAspectRatio="none" xlink:href="assets/img/classroom.png" id="image7515-92-9-8" x="385.27997" y="167.65959"></image>
</g>
<g id="65" class="room">
<path d="m 383.5,145.5 h 23 v 18 H 388.059 383.5 v -1.838 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-2-4-8" x="387.53333" y="149.0145"></image>
</g>
<g id="66" class="room">
<path d="m 383.5,134.5 h 23 v 11 H 388.059 383.5 v -0.977 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-2-4-5" x="386.48325" y="134.83849"></image>
</g>
<g id="67" class="room">
<path d="m 383.5,120.5 h 23 v 14 H 388.059 383.5 v -1.346 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-2-4" x="387.53329" y="122.23759"></image>
</g>
<g id="68" class="room">
<path d="m 383.5,104.5 h 13 v 8 H 385.951 383.5 v -0.608 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-6" x="385.39545" y="106.11527"></image>
</g>
<g id="69" class="room">
<path d="m 383.5,91.5 h 23 v 13 H 388.059 383.5 v -1.223 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.826087;"></path>
<image width="7.3154874" height="7.4017062" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-76-3-8" x="386.45154" y="94.061119"></image>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-9" x="395.85825" y="95.614525"></image>
</g>
<g id="70" class="room">
<path d="m 383.5,26.5 h 23 v 65 H 388.059 383.5 v -7.6231 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.826087;"></path>
</g>
<g id="71" class="room">
<path d="m 273.5,120.5 h 102 v 60 H 294.711 273.5 v -7.008 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: #70f770; fill-opacity: 0.12549"></path>
</g>
<g id="72" class="room">
<path d="M 283,58.569 V 34.5 h 92.5 v 56 H 294.711 273.5 V 64.4322 59.069 h 9 0.5 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: #70f770; fill-opacity: 0.12549"></path>
<text xml:space="preserve" style="
font-style: normal;
font-variant: normal;
font-weight: bold;
font-stretch: normal;
font-size: 10.3455px;
font-family: sans-serif;
-inkscape-font-specification: 'sans-serif Bold';
white-space: pre;
inline-size: 88.8082;
display: inline;
fill: #1a1a1a;
fill-opacity: 1;
stroke-width: 1.29319;
cursor:default;
" x="52.718563" y="233.89223" id="text1148-65-9-3-72-6-5-95-2" transform="matrix(0.73093534,-0.01226256,0.00706382,0.88929159,260.73654,-124.92896)">
<tspan x="52.718563" y="233.89223" id="tspan6791">MakerSpace</tspan>
</text>
<image width="26.340412" height="23.715225" preserveAspectRatio="none" xlink:href="assets/img/makerspace.png" id="image2405" x="311.966" y="45.571777"></image>
</g>
<g id="73" class="room">
<path d="m 351.5,180.5 h 24 v 21 h -19.23 -4.77 v -2.208 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-6" x="358.65628" y="183.14194"></image>
</g>
<g id="74" class="room">
<path d="m 327.5,180.5 h 24 v 21 h -19.23 -4.77 v -2.208 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-6-9" x="334.98099" y="182.97957"></image>
</g>
<g id="75" class="room">
<path d="m 307.5,180.5 h 20 v 21 H 311.426 307.5 v -2.208 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-62" x="309.31281" y="183.03949"></image>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-63" x="308.75592" y="191.02153"></image>
<image width="9.0389214" height="8.5748444" preserveAspectRatio="none" xlink:href="assets/img/work.png" id="image8396-7" x="315.63925" y="189.97305"></image>
</g>
<g id="76" class="room">
<path d="m 273.5,180.5 h 34 v 21 H 280.377 273.5 v -2.208 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-6-9-8" x="294.57495" y="186.30238"></image>
</g>
<g id="77" class="room">
<path d="m 262.5,190.5 h 11 v 11 h -8.971 -2.029 v -0.977 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<use xlink:href="#ToiletsMen" style="fill: #000000; stroke: #000000; stroke-width: 2.38532" id="use14897-2" transform="matrix(0.14402683,0,0,0.12820291,262.77758,191.71204)"></use>
</g>
<g id="78" class="room">
<path d="m 251.5,190.5 h 11 v 11 h -8.971 -2.029 v -0.977 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="5.2493725" height="8.5031452" preserveAspectRatio="none" xlink:href="./assets/images/ladder.png" id="image9148-6-9-9" x="192.61038" y="-262.19125" transform="matrix(-0.00208874,0.99999782,-0.99999586,-0.00287824,0,0)"></image>
</g>
<g id="79" class="room">
<path d="m 184.5,258.5 h 8 v 7 h -6.603 -1.397 v -0.485 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
</g>
<g id="80" class="room">
<path d="m 184.5,265.5 h 8 v 7 h -6.603 -1.397 v -0.485 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-5" x="184.94154" y="264.90179"></image>
</g>
<g id="81" class="room">
<path d="m 262.5,100.5 h 11 v 12 h -8.971 -2.029 v -1.1 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<use xlink:href="#ToiletsWomen" style="fill: #000000; stroke: #000000; stroke-width: 5" id="use14643-7" transform="matrix(0.16388737,0,0,0.1607614,261.7767,100.80367)"></use>
</g>
<g id="82" class="room">
<path d="m 262.5,88.5 h 11 v 12 h -8.971 -2.029 v -1.1 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
</g>
<g id="83" class="room">
<path d="m 251.5,94.5 h 11 v 6 h -8.971 -2.029 v -0.362 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="5.2493725" height="8.5031452" preserveAspectRatio="none" xlink:href="./assets/images/ladder.png" id="image9148-6-9" x="94.363998" y="-261.55106" transform="matrix(-0.00208874,0.99999782,-0.99999586,-0.00287824,0,0)"></image>
</g>
<g id="84" class="room">
<path d="m 251.5,88.5 h 11 v 6 h -8.971 -2.029 v -0.3615 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219);"></path>
<use xlink:href="#ToiletsWomen" style="
fill: #000000;
stroke: #000000;
stroke-width: 5;
fill-opacity: 0.82745099;
" id="use14643-7-0" transform="matrix(-0.00855657,0.16357792,-0.13639044,-0.00987446,262.61702,86.096581)"></use>
</g>
<g id="85" class="room">
<path d="m 251.5,73.5 h 22 v 15 H 255.848 251.5 v -1.4692 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-6" x="264.57626" y="77.973625"></image>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9" x="254.53604" y="76.452087"></image>
</g>
<g id="86" class="room">
<path d="m 251.5,58.5 h 22 v 15 H 255.848 251.5 v -1.4692 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-7" x="254.73064" y="62.344303"></image>
</g>
<g id="87" class="room">
<path d="m 262.5,34.5 h 10 v 24 h -8.181 -1.819 v -2.5769 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<text xml:space="preserve" style="
font-style: normal;
font-variant: normal;
font-weight: bold;
font-stretch: normal;
font-size: 2.5686px;
font-family: sans-serif;
-inkscape-font-specification: 'sans-serif Bold';
fill: #2b0000;
fill-opacity: 1;
stroke-width: 0.481613;
cursor: default;
" x="-41.99165" y="266.21301" id="text11696" transform="matrix(0.02461493,-0.9951062,1.0046427,0.01112446,0,0)">
<tspan sodipodi:role="line" id="tspan11694" x="-53.99165" y="266.21301" style="stroke-width: 0.481613">
NSS
</tspan>
<tspan sodipodi:role="line" x="-53.99165" y="269.42377" id="tspan11698" style="stroke-width: 0.481613">
office
</tspan>
</text>
</g>
<g id="88" class="room">
<path d="m 251.5,49.5 h 11 v 9 h -8.971 -2.029 v -0.7308 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="6.8650765" height="6.3188844" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-7-1" x="253.75609" y="50.649689"></image>
</g>
<g id="89" class="room">
<path d="m 251.5,40.5 h 11 v 9 h -8.971 -2.029 v -0.7308 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-6-1" x="253.06281" y="41.590389"></image>
</g>
<g id="90" class="room">
<path d="m 251.5,34.5 h 11 v 6 h -8.971 -2.029 v -0.3615 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="4.7157197" height="4.1111336" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-6-1-4" x="254.55232" y="35.464642"></image>
</g>
<g id="91" class="room">
<path d="m 251.5,100.5 h 11 v 12 h -8.971 -2.029 v -1.1 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
</g>
<g id="92" class="room">
<path d="m 251.5,178.5 h 11 v 12 h -8.971 -2.029 v -1.1 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<use xlink:href="#ToiletsMen" style="fill: #000000; stroke: #000000; stroke-width: 2.38532" id="use14897-2-4" transform="matrix(3.2465571e-4,0.14402646,-0.12820258,2.8898648e-4,261.5668,179.63568)"></use>
</g>
<g id="93" class="room">
<path d="m 251.5,166.5 h 22 v 12 H 255.848 251.5 v -1.1 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.2568293" height="7.3764539" preserveAspectRatio="none" xlink:href="assets/img/work.png" id="image8396-1" x="255.0777" y="168.75545"></image>
<text style="cursor: default; font-weight:bold;font-size:5.33333px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#000000;fill-opacity:1" x="264.09409" y="175.19853" id="text2668-3-0"><tspan sodipodi:role="line" id="tspan2666-2-0" x="264.09409" y="175.19853">G2</tspan></text>
</g>
<g id="94" class="room">
<path d="m 251.5,154.5 h 22 v 12 H 255.848 251.5 v -1.1 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-2" x="254.30508" y="156.10249"></image>
</g>
<g id="95" class="room">
<path d="m 251.5,120.5 h 22 v 34 H 255.848 251.5 v -3.808 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="14.764712" height="13.568173" preserveAspectRatio="none" xlink:href="assets/img/classroom.png" id="image7515-9" x="254.67691" y="125.26281"></image>
<text style="cursor:default; font-weight:bold;font-size:8px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#000000;fill-opacity:1" x="255.58743" y="149.17267" id="text2668-9"><tspan sodipodi:role="line" id="tspan2666-3" x="255.58743" y="149.17267">G4</tspan></text>
</g>
<g id="96" class="room">
<path d="m 361.5,90.5 h 14 v 22 H 364.162 361.5 v -2.331 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-0" x="363.6441" y="93.360535"></image>
</g>
<g id="97" class="room">
<path d="m 347.5,90.5 h 14 v 22 H 350.162 347.5 v -2.331 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2-7" x="349.96548" y="93.473625"></image>
</g>
<g id="98" class="room">
<path d="m 332.5,90.5 h 15 v 22 H 335.373 332.5 v -2.331 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2" x="336.77853" y="92.23053"></image>
</g>
<g id="99" class="room">
<path d="m 316.5,90.5 h 16 v 22 H 319.583 316.5 v -2.331 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="8.8141785" height="8.5928364" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2" x="320.77853" y="92.23053"></image>
</g>
<g id="100" class="room">
<path d="m 302.5,90.5 h 14 v 22 H 305.162 302.5 v -2.331 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-2" x="305.41461" y="94.494583"></image>
</g>
<g id="101" class="room">
<path d="m 273.5,90.5 h 29 v 22 H 279.324 273.5 v -2.331 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="9.1205606" height="8.0552807" preserveAspectRatio="none" xlink:href="assets/img/classroom.png" id="image7515" x="283.80389" y="93.883606"></image>
<text style="cursor: default; font-weight:bold;font-size:8px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#000000;fill-opacity:1" x="280.33926" y="110.69933" id="text2668-9-4"><tspan sodipodi:role="line" id="tspan2666-3-4" x="280.33926" y="110.69933">G41</tspan></text>
</g>
<g id="102" class="room">
<path d="m 262.5,178.5 h 11 v 12 h -8.971 -2.029 v -1.1 z" fill="#d9d9d9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
</g>
<g id="103" class="room">
<path d="m 346.5,0.5 h 60 v 26 H 358.858 346.5 v -2.8231 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.826087;"></path>
<image width="16.689739" height="17.518473" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-76-9-51" x="362.06232" y="4.8934584"></image>
</g>
<g id="104" class="room">
<path d="m 309.5,0.5 h 37 v 26 h -29.49 -7.51 v -2.8231 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.826087;"></path>
<image width="16.689739" height="17.518473" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-76-9-5" x="319.53537" y="4.8934584"></image>
</g>
<g id="105" class="room">
<path d="m 280.5,0.5 h 29 v 26 H 286.324 280.5 v -2.8231 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.826087;"></path>
<image width="16.689739" height="17.518473" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-76-9-9" x="286.5773" y="5.5760932"></image>
</g>
<g id="106" class="room">
<path d="m 251.5,0.5 h 29 v 26 H 257.324 251.5 v -2.8231 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.826087;"></path>
<image width="16.689739" height="17.518473" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-76-9-7" x="257.16412" y="3.8635185"></image>
</g>
<g id="107" class="room">
<path d="m 235.5,0.5 h 16 v 26 H 238.583 235.5 v -2.8231 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.826087;"></path>
<image width="13.122754" height="13.772449" preserveAspectRatio="none" xlink:href="assets/img/work.png" id="image8396-7-3-7" x="237.02545" y="5.9041986"></image>
</g>
<g id="108" class="room">
<path d="m 190.5,0.5 h 31 v 26 H 196.745 190.5 v -2.8231 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.826087;"></path>
<image width="16.689739" height="17.518473" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-76-9" x="198.73297" y="3.8635185"></image>
</g>
<g id="109" class="room">
<path d="m 133.5,0.5 h 57 v 26 H 145.225 133.5 v -2.8231 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="16.689739" height="17.518473" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-76-0" x="152.96053" y="5.2647152"></image>
</g>
<g id="110" class="room">
<path d="m 82.5,0.5 h 51 v 26 H 92.9608 82.5 v -2.8231 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.826087;"></path>
<image width="16.689739" height="17.518473" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-76-4" x="99.068306" y="4.2347755"></image>
</g>
<g id="111" class="room">
<path d="m 29.5,0.5 h 53 v 26 H 40.3824 29.5 v -2.8231 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.826087;"></path>
<image width="16.689739" height="17.518473" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-76-3" x="46.888664" y="3.1210032"></image>
</g>
<g id="112" class="room">
<path d="m 0.5,0.5 h 29 v 26 H 6.32353 0.5 v -2.8231 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.826087;"></path>
<image width="9.1205606" height="8.0552807" preserveAspectRatio="none" xlink:href="assets/img/classroom.png" id="image7515-92-9-8-5" x="15.553508" y="2.8979917"></image>
<image width="9.864253" height="9.6429119" preserveAspectRatio="none" xlink:href="assets/img/writing.png" id="image7827-2-2-9-76-3-6" x="3.2059526" y="13.554851"></image>
<image width="9.0389214" height="8.5748444" preserveAspectRatio="none" xlink:href="assets/img/work.png" id="image8396-7-95" x="18.18158" y="14.151103"></image>
</g>
<g id="113" class="room">
<path d="m 396.5,104.5 h 10 v 8 h -8.181 -1.819 v -0.608 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219); fill-opacity: 0.827451;"></path>
<image width="7.3145223" height="7.0347862" preserveAspectRatio="none" xlink:href="assets/img/professor.png" id="image8065-1" x="396.94626" y="105.32771"></image>
</g>
<g id="114" class="room">
<path d="m 273.5,264.5 h 22 v 22 H 277.848 273.5 v -2.331 z" fill="#D9D9D9" fill-opacity="0.2" stroke="#000000" style="fill: rgb(219, 219, 219);"></path>
<image width="14.236526" height="13.029935" preserveAspectRatio="none" xlink:href="assets/img/work.png" id="image8396-7-9-3" x="276.6662" y="269.74252"></image>
</g>
<path d="m 0.5,26 v 10.5 h 31" stroke="#000000" id="path907"></path>
<path d="M 220.5,26 H 236" stroke="#000000" id="path909"></path>
<path d="m 30,113 v 45.70105" stroke="#000000" id="path911" style="stroke-width: 1.21418"></path>
<path d="m 30.393778,164.61304 v 24" stroke="#000000" id="path913"></path>
<path d="m 30.5,182.5 v 36" stroke="#000000" id="path915"></path>
<path d="m 30.583427,223.804 v 36" stroke="#000000" id="path915-3"></path>
<path d="m 30.5,280.5 h 117" stroke="#000000" id="path917"></path>
<path d="m 153,281 h 89.5 v 10 h 2.5" stroke="#000000" id="path919"></path>
<path d="m 255,291.5 h 18.5 v -5" stroke="#000000" id="path921"></path>
<path d="m 257.99636,291.8647 c 0,23.00713 26.00728,21.53859 26.00728,0" stroke="#000000" id="path923" style="
fill: #d3d3d3;
fill-opacity: 0.827451;
stroke-width: 0.989596;
"></path>
<path d="M 284,286.5 V 292" stroke="#000000" id="path925" style="fill: #d3d3d3; fill-opacity: 0.82745099"></path>
<rect x="13" y="29" width="3" height="3" fill="#00a3ff" id="p1" class="path"></rect>
<rect x="54" y="29" width="3" height="3" fill="#00a3ff" id="p2" class="path"></rect>
<rect x="105" y="29" width="3" height="3" fill="#00a3ff" id="p3" class="path"></rect>
<rect x="160" y="29" width="3" height="3" fill="#00a3ff" id="p4" class="path"></rect>
<rect x="203" y="29" width="3" height="3" fill="#00a3ff" id="p5" class="path"></rect>
<rect x="241" y="29" width="3" height="3" fill="#00a3ff" id="p6" class="path"></rect>
<rect x="265" y="29" width="3" height="3" fill="#00a3ff" id="p7" class="path"></rect>
<rect x="293" y="29" width="3" height="3" fill="#00a3ff" id="p8" class="path"></rect>
<rect x="326" y="29" width="3" height="3" fill="#00a3ff" id="p9" class="path"></rect>
<rect x="364" y="29" width="3" height="3" fill="#00a3ff" id="p10" class="path"></rect>
<rect x="378" y="58" width="3" height="3" fill="#00a3ff" id="p11" class="path"></rect>
<rect x="378" y="97" width="3" height="3" fill="#00a3ff" id="p12" class="path"></rect>
<rect x="378" y="107" width="3" height="3" fill="#00a3ff" id="p13" class="path"></rect>
<rect x="323" y="115" width="3" height="3" fill="#00a3ff" id="p14" class="path"></rect>
<rect x="308" y="115" width="3" height="3" fill="#00a3ff" id="p15" class="path"></rect>
<rect x="286" y="115" width="3" height="3" fill="#00a3ff" id="p16" class="path"></rect>
<rect x="267" y="115" width="3" height="3" fill="#00a3ff" id="p17" class="path"></rect>
<rect x="246" y="105" width="3" height="3" fill="#00a3ff" id="p19" class="path"></rect>
<rect x="246" y="96" width="3" height="3" fill="#00a3ff" id="p20" class="path"></rect>
<rect x="246" y="90" width="3" height="3" fill="#00a3ff" id="p21" class="path"></rect>
<rect x="246" y="80" width="3" height="3" fill="#00a3ff" id="p22" class="path"></rect>
<rect x="246" y="66" width="3" height="3" fill="#00a3ff" id="p23" class="path"></rect>
<rect x="246" y="53" width="3" height="3" fill="#00a3ff" id="p24" class="path"></rect>
<rect x="246" y="44" width="3" height="3" fill="#00a3ff" id="p25" class="path"></rect>
<rect x="246" y="36" width="3" height="3" fill="#00a3ff" id="p26" class="path"></rect>
<rect x="225" y="115" width="3" height="3" fill="#00a3ff" id="p27" class="path"></rect>
<rect x="188" y="115" width="3" height="3" fill="#00a3ff" id="p28" class="path"></rect>
<rect x="137" y="115" width="3" height="3" fill="#00a3ff" id="p29" class="path"></rect>
<rect x="104" y="115" width="3" height="3" fill="#00a3ff" id="p30" class="path"></rect>
<rect x="94" y="115" width="3" height="3" fill="#00a3ff" id="p31" class="path"></rect>
<rect x="80" y="115" width="3" height="3" fill="#00a3ff" id="p32" class="path"></rect>
<rect x="33" y="130" width="3" height="3" fill="#00a3ff" id="p33" class="path"></rect>
<rect x="33" y="115" width="3" height="3" fill="#8efb73" id="p34" class="path"></rect>
<rect x="48" y="115" width="3" height="3" fill="#00a3ff" id="p35" class="path"></rect>
<rect x="66" y="115" width="3" height="3" fill="#00a3ff" id="p36" class="path"></rect>
<rect x="33" y="145" width="3" height="3" fill="#8efb73" id="p37" class="path"></rect>
<rect x="33" y="152" width="3" height="3" fill="#00a3ff" id="p38" class="path"></rect>