-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1056 lines (1039 loc) · 47 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<!-- //////////////// cdn font awesome /////////////////////////// -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css"
integrity="sha512-5Hs3dF2AEPkpNAR7UiOHba+lRSJNeM2ECkwxUIxC1Q/FLycGTbNapWXB4tP889k5T5Ju8fs4b1P5z/iB4nMfSQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- /////////////////////////////////////////// -->
<meta name="google" content="notranslate" />
<link rel="preconnect" href="https://cdnc.heyzine.com" />
<link
rel="canonical"
href="https://heyzine.com/flip-book/1468b11602.html"
/>
<title>Pars CNC Catalog</title>
<meta itemprop="name" content="Online Flipbook" />
<meta
itemprop="description"
content="Created with the Heyzine flipbook maker"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Online Flipbook" />
<meta
property="og:description"
content="Created with the Heyzine flipbook maker"
/>
<meta
property="og:url"
content="https://heyzine.com/flip-book/1468b11602.html"
/>
<!-- //////////////// css link ///////////////////// -->
<link rel="stylesheet" href="style.css" />
<!-- ///////////////////////////////////// -->
<link
rel="alternate"
type="application/json+oembed"
href="https://heyzine.com/api1/oembed?url=https%3A%2F%2Fheyzine.com%2Fflip-book%2F1468b11602.html&format=json"
title="Online Flipbook"
/>
<meta
property="og:image"
content="https://cdnc.heyzine.com/files/uploaded/1468b11602cb08877991625643164897bd767beb.pdf-thumb.jpg"
/>
<meta
itemprop="image"
content="https://cdnc.heyzine.com/files/uploaded/1468b11602cb08877991625643164897bd767beb.pdf-thumb.jpg"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image:src"
content="https://cdnc.heyzine.com/files/uploaded/1468b11602cb08877991625643164897bd767beb.pdf-thumb.jpg"
/>
<meta name="robots" content="index, nofollow" />
<script
type="text/javascript"
src="https://cdnc.heyzine.com/flipbook/js/site/jquery-3.5.1.min.js?v2"
></script>
<script
src="https://cdnc.heyzine.com/flipbook/js/site/pdf.4.0.379.l.min.mjs"
type="module"
></script>
<script type="text/javascript">
PDFJS_WORKER =
"https://cdnc.heyzine.com/flipbook/js/site/pdf.worker.4.0.379.l.min.mjs?v5";
PDFJS_CMAP_URL = "https://cdnc.heyzine.com/flipbook/js/lib/pdfjs/bcmaps/";
</script>
<script type="text/javascript">
/*start-metadata*/
var flipbookcfg = {
id: "091dba1426d3853ade27c92ff2046a406b726c066",
app_name: "metadata-app-name",
app_ver: "1",
name: "1468b11602cb08877991625643164897bd767beb.pdf",
custom_name: "1468b11602.html",
domain: "https:\/\/heyzine.com",
mode: "PDF",
isize: 1.59664,
width: 595,
height: 842,
size: "4158963",
admin_key: "",
url: "https:\/\/heyzine.com\/flip-book\/1468b11602.html",
cover: 0,
num_pages: 18,
viewer: "MAGAZINE",
thumbnail: "1468b11602cb08877991625643164897bd767beb.pdf-thumb.jpg",
stats: 0,
readerToken: null,
design: {
type: "book",
background:
"https:\/\/cdnc.heyzine.com\/files\/user\/backgrounds\/ae8be610dd652f50b5a379e85329d5dbb47a6774.jpeg",
background_color: null,
background_style: {
blur: "0",
transparency: "6",
size: "Cover",
position: "center center",
},
company_logo: "https://ik.imagekit.io/mehran/parscnc/logo/parscnc.png?updatedAt=1733573491765",
company_logo_link: "https:\/\/pahneparscnc.ir",
company_logo_link_mode: 0,
company_logo_style:
'{"top":"auto","bottom":"2%","left":"-20px","right":"auto","background-color":"rgba(255,255,255,.5)","padding":"8px","border-radius":"12px"}',
title: "",
subtitle: "",
description: "",
show_slider: 1,
show_download: 1,
show_print: 1,
show_fullscreen: 1,
show_text: 0,
show_shadow: 0,
show_depth: 1,
show_edges: 1,
show_round: 0,
show_binding: 1,
show_center: 1,
show_double: 0,
show_zoom: 1,
show_share: 1,
show_search: 1,
show_thumbpanel: 2,
show_outline: 3,
show_bookmarks: 3,
start_page: null,
end_page: null,
load_page: null,
click_zoom: 2,
show_prevnext: 0,
show_start: 0,
show_end: 0,
viewer_dir: 0,
rtl: 1,
arrows: 1,
controls_iconset: "iconset2_6",
controls_size: "sm",
controls_style:
"background-color:rgba(255, 255, 255, 0.43);top: 20px; bottom: auto; left: auto; right: 50px; flex-direction: column; padding-left: 6px; padding-right: 6px; padding-top: 10px; padding-bottom: 10px; gap: 12px; ",
sound_flip: 1,
},
layers: [
{
id: "1733525502166",
type: "background",
page: 1,
page_end: 18,
origin: "editor",
css: {
width: 0,
height: 0,
left: 0,
top: 0,
},
wrapper: {
width: 0,
height: 0,
left: 0,
top: 0,
},
action: {
highlight: 0,
target: "",
type: null,
subtype: null,
id_media: null,
extra: {
new_tab: null,
text: null,
},
},
media: {
id_media: "2c33d49bef45b625ff421cb1a854a25b10d4bde0.mp3",
url: "https:\/\/cdnc.heyzine.com\/files\/user\/media\/v2\/2c33d49bef45b625ff421cb1a854a25b10d4bde0.mp3",
type: "audio",
options: {
loop: true,
keep: false,
once: false,
volume: null,
display: "inline",
},
},
},
],
lead: null,
bookmark: {
list: [],
},
};
/*end-metadata*/
CDN_PATH = "https://cdnc.heyzine.com";
THUMBNAIL_PATH = "https://cdnc.heyzine.com/files/uploaded/";
TOC_PATH = "https://cdnc.heyzine.com/files/toc/";
ICONSET_VER = "6";
</script>
</head>
<body style="width: 100vw; height: 100vh">
<!-- ///////////////////////////////////////// Floating Tab ///////////////////////////////////////// -->
<div class="floating-tab" onclick="toggleModal(event)"></div>
<!-- Modal -->
<div class="modal-overlay" id="modal">
<span class="modal-drag-bar"></span>
<a href="tel:+989187726901"><i class="fa-solid fa-phone fa-2xl contact-icon"><span class="badge"></span></i></a>
<div class="modal-header">Video List Pras CNC</div>
<div class="video-grid">
<!-- Video Items -->
<div class="video-item">
<video src="https://videocdn.alibaba.com/4f4e1c368ac918af/b55f920c5b39291f/20240814_f8da2119aaa2cfad_477018571622_mp4_264_hd_unlimit_taobao.mp4?bizCode=icbu_vod_video" muted></video>
<div class="play-icon" onclick="togglePlay(this)">
<i class="fa-solid fa-play fa-2xl"></i>
</div>
</div>
<div class="video-item">
<video src="https://videocdn.alibaba.com/7c569251818fbca4/pZvBnTkBvihTRc56Idh/YQeEUpxxel1hpghDX3K_321487712300_mp4_264_hd.mp4?bizCode=icbu_vod_publish" muted></video>
<div class="play-icon" onclick="togglePlay(this)">
<i class="fa-solid fa-play fa-2xl"></i>
</div>
</div>
<div class="video-item">
<video src="https://gv.videocdn.alibaba.com/icbu_vod_video/video_target/gv92-23514133-a1ace553-91b6b35c-67fc/trans/b0310c87-546c-4634-a02e-e521bf492522-h264-hd.mp4?bizCode=icbu_vod_video" muted></video>
<div class="play-icon" onclick="togglePlay(this)">
<i class="fa-solid fa-play fa-2xl"></i>
</div>
</div>
<div class="video-item">
<video src="https://videocdn.alibaba.com/4f4e1c368ac918af/b8d4fa5a4fabc220/20240708_cdd923033acdaa77_471591267962_mp4_264_hd_unlimit_taobao.mp4?bizCode=icbu_vod_video" muted></video>
<div class="play-icon" onclick="togglePlay(this)">
<i class="fa-solid fa-play fa-2xl"></i>
</div>
</div>
<div class="video-item">
<video src="https://videocdn.alibaba.com/icbu_vod_video/video_target/gv92-d24ad836-8b397136-9270feec-6ca7/trans/8c4bea91-3761-44bf-8246-fa406afa108a-h264-hd.mp4?bizCode=icbu_vod_video" muted></video>
<div class="play-icon" onclick="togglePlay(this)">
<i class="fa-solid fa-play fa-2xl"></i>
</div>
</div>
<div class="video-item">
<video src="https://videocdn.alibaba.com/7c569251818fbca4/Wm1LvdU4PcibzvUM2CS/UF4Pc0yypKW1MvlmGWq_306405933759_mp4_264_hd.mp4?bizCode=icbu_vod_publish" muted></video>
<div class="play-icon" onclick="togglePlay(this)">
<i class="fa-solid fa-play fa-2xl"></i>
</div>
</div>
<div class="video-item">
<video src="https://videocdn.alibaba.com/a9b5b21ee64d2b47/qcRwFV3Bh0i57jBmgo0/jLm3irkl8f8yF6M1BB5_244276501189_sd_hq.mp4" muted></video>
<div class="play-icon" onclick="togglePlay(this)">
<i class="fa-solid fa-play fa-2xl"></i>
</div>
</div>
<div class="video-item">
<video src="https://videocdn.alibaba.com/icbu_vod_video/video_target/gv92-d249c92d-8b8a2431-9270a029-78d6/trans/c0a19447-6790-4473-943c-913886212e34-h264-hd.mp4" muted></video>
<div class="play-icon" onclick="togglePlay(this)">
<i class="fa-solid fa-play fa-2xl"></i>
</div>
</div>
<div class="video-item">
<video src="https://videocdn.alibaba.com/7c569251818fbca4/iMpXUr1JLixIcpVXWOc/KvCPovbfZbOkaYxRkGP_315734842627_mp4_264_hd.mp4?bizCode=icbu_vod_publish" muted></video>
<div class="play-icon" onclick="togglePlay(this)">
<i class="fa-solid fa-play fa-2xl"></i>
</div>
</div>
<div class="video-item">
<video src="https://videocdn.alibaba.com/4f4e1c368ac918af/29a43118306eaaac/20230826_8e4e1ab4f1cf245a_424667929681_mp4_264_hd_unlimit_aliyun.mp4?bizCode=icbu_vod_video" muted></video>
<div class="play-icon" onclick="togglePlay(this)">
<i class="fa-solid fa-play fa-2xl"></i>
</div>
</div>
<div class="video-item">
<video src="https://videocdn.alibaba.com/4f4e1c368ac918af/d748b96c9ef036a8/20230308_a9c527c15800b295_400796390423_mp4_264_hd_unlimit_taobao.mp4?bizCode=icbu_vod_video" muted></video>
<div class="play-icon" onclick="togglePlay(this)">
<i class="fa-solid fa-play fa-2xl"></i>
</div>
</div>
</div>
</div>
<!-- ////////////////////////////////////////////////////////////////////////////////////////////////////// -->
<div id="loaderLine" class="loader-line" style="display: none"></div>
<div class="logo-backs"></div>
<img
src=""
class="logo-backs2 logo-backs2-loading"
style="display: none"
alt="PDF to Flipbook"
width="5px"
/>
<div class="flipbook-title" style="display: none">
<h1></h1>
<h2></h2>
<p></p>
</div>
<div id="modalFull" style="display: none">
<div
class="hz-icon hz-icn-fullscreen-on"
style="
background-image: url('https://cdnc.heyzine.com/flipbook/img/iconset2_6.png');
"
></div>
</div>
<div id="modalOver" style="display: none"></div>
<div id="zoomArea"></div>
<div
id="canvas"
style="
width: 100%;
height: 100%;
margin: 0 auto;
position: relative;
box-sizing: border-box;
padding: 10px;
"
>
<div
id="pnlControls"
class="controls-pdf controls-md"
data-disable-events="true"
style="display: none"
>
<a id="btnNavStart" style="display: none">
<div
class="hz-icon hz-icn-start"
style="
background-image: url('https://cdnc.heyzine.com/flipbook/img/iconset2_6.png');
"
></div>
</a>
<a id="btnNavPrev" style="display: none">
<div
class="hz-icon hz-icn-prev"
style="
background-image: url('https://cdnc.heyzine.com/flipbook/img/iconset2_6.png');
"
></div>
</a>
<a id="btnNavNext" style="display: none">
<div
class="hz-icon hz-icn-next"
style="
background-image: url('https://cdnc.heyzine.com/flipbook/img/iconset2_6.png');
"
></div>
</a>
<a id="btnNavEnd" style="display: none">
<div
class="hz-icon hz-icn-end"
style="
background-image: url('https://cdnc.heyzine.com/flipbook/img/iconset2_6.png');
"
></div>
</a>
<a
id="btnNavPanel"
class="hz-icon hz-icn-nav"
style="
display: none;
background-image: url('https://cdnc.heyzine.com/flipbook/img/iconset2_6.png');
"
></a>
<a
id="btnShare"
data-stats="share"
class="hz-icon-2 hz-icn-share"
style="
display: none;
background-image: url('https://cdnc.heyzine.com/flipbook/img/iconset2_6.png');
"
></a>
<a
id="btnDownPdf"
href="https://cdnc.heyzine.com/flip-book/pdf/1468b11602cb08877991625643164897bd767beb.pdf"
data-stats="download"
target="_blank"
class="hz-icon hz-icn-down down-pdf"
style="
display: none;
background-image: url('https://cdnc.heyzine.com/flipbook/img/iconset2_6.png');
"
></a>
<a
id="btnPrint"
data-print="https://cdnc.heyzine.com/flip-book/print/1468b11602cb08877991625643164897bd767beb.pdf"
data-stats="print"
class="hz-icon-2 hz-icn-print"
style="
display: none;
background-image: url('https://cdnc.heyzine.com/flipbook/img/iconset2_6.png');
"
></a>
<a
class="zoom-icon zoom-icon-in hz-icon"
data-stats="zoom"
style="
display: none;
background-image: url('https://cdnc.heyzine.com/flipbook/img/iconset2_6.png');
"
></a>
<a
id="btnFullscreen"
data-stats="fullscreen"
class="fullscreen-button hz-icon hz-icn-fullscreen-on"
onclick="if (typeof toggleFullScreen != 'undefined') { toggleFullScreen(); } return false;"
></a>
<a
id="btnSearch"
data-stats="share"
class="hz-icon-2 hz-icn-search"
style="
display: none;
background-image: url('https://cdnc.heyzine.com/flipbook/img/iconset2_6.png');
"
></a>
<a
id="btnSoundOff"
data-stats="soundoff"
class="hz-icon hz-icn-sound-on"
style="display: none"
></a>
</div>
<div
id="pnlZoomStep"
class="controls-pdf controls-zoom-step controls-md"
style="display: none"
>
<a
class="btnZoomMore hz-icon hz-icn-zoom-more"
data-disable-events="true"
data-disable-zoom="true"
></a>
<a
class="btnZoomLess hz-icon hz-icn-zoom-less"
data-disable-events="true"
data-disable-zoom="true"
></a>
</div>
<div class="corner-arrow" style="display: none; position: absolute">
<img src="" />
</div>
<div id="magazineViewport" class="magazine-viewport">
<div class="magazine-viewport-loader" style="display: none"></div>
</div>
<script id="tplMagazine" type="template/x-template">
<img src="" class="logo-backs2" style="display: none;" alt="PDF to Flipbook" width="5px" />
<div class="container">
<div class="magazine">
<div ignore="1" class="page-depth page-depth-left" style="display: none;">
</div>
<div ignore="1" class="page-depth page-depth-right" style="display: none;">
</div>
<div ignore="1" class="page-findex page-findex-left" data-disable-events="true" data-disable-zoom="true" style="display: none;">
</div>
<div ignore="1" class="page-findex page-findex-right" data-disable-events="true" data-disable-zoom="true" style="display: none;">
</div>
<div ignore="1" class="next-button btnNext" data-disable-events="true" data-disable-zoom="true"></div>
<div ignore="1" class="previous-button btnPrevious" data-disable-events="true" data-disable-zoom="true"></div>
</div>
</div>
<div class="bottom control-bottom">
<div class="page-bar">
<span class="page-bar-value" style="display: none;"></span>
<span class="page-bar-num" style="display: none;"></span>
<input class="page-bar-range" type="range" value="0" min="0" max="50" step="1">
</div>
</div>
<div ignore="1" class="page-depth-label" style="display: none;">
</div>
</script>
<script id="tplSwiper" type="template/x-template">
<img src="" class="logo-backs2" style="display: none;" alt="PDF to Flipbook" width="5px" />
<div class="container swiper">
<div class="swiper-wrapper">
</div>
<div ignore="1" class="page-findex page-findex-left" data-disable-events="true" data-disable-zoom="true" style="display: none;">
</div>
<div ignore="1" class="page-findex page-findex-right" data-disable-events="true" data-disable-zoom="true" style="display: none;">
</div>
<div class="swiper-button-next btnNext hz-icon hz-icon-md" data-disable-zoom="true" style="background-image: url('https://cdnc.heyzine.com/flipbook/img/iconset2_6.png')"></div>
<div class="swiper-button-prev btnPrevious hz-icon hz-icon-md" data-disable-zoom="true" style="background-image: url('https://cdnc.heyzine.com/flipbook/img/iconset2_6.png')"></div>
</div>
<div class="bottom control-bottom">
<div class="page-bar">
<span class="page-bar-value" style="display: none;"></span>
<span class="page-bar-num" style="display: none;"></span>
<input class="page-bar-range" type="range" value="0" min="0" max="50" step="1">
</div>
</div>
</script>
<div
id="pnlShare"
class="controls-pdf controls-share controls-md"
style="display: none"
>
<div
class="controls-share-group"
data-iconset="iconset2"
style="display: none"
>
<div class="btn-sharing" data-share="facebook">
<svg
fill="#000000"
role="graphics-symbol"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="48"
height="48"
viewBox="0 0 48 48"
width="50px"
height="50px"
>
<title>Facebook</title>
<path
d="M 27.689453 2.0371094 C 24.410243 2.0371094 21.627143 3.0524604 19.751953 5.0898438 C 17.876763 7.1272271 16.998047 10.032839 16.998047 13.5 L 16.998047 17 L 13.517578 17 C 11.589931 17 9.9985023 18.604801 10.017578 20.533203 L 10.046875 23.537109 A 1.50015 1.50015 0 0 0 10.046875 23.539062 C 10.069385 25.440659 11.647206 27.005642 13.550781 27.003906 L 17 27.001953 L 17 43.5 C 17 45.414955 18.585045 47 20.5 47 L 24.5 47 C 26.414955 47 28 45.414955 28 43.5 L 28 27 L 31.095703 27 C 32.859472 27 34.367374 25.656297 34.572266 23.904297 L 34.921875 20.904297 C 35.160419 18.850746 33.513658 17 31.445312 17 L 28.019531 17 L 28.0625 13.712891 A 1.50015 1.50015 0 0 0 28.0625 13.693359 C 28.0625 13.00752 28.583692 12.486328 29.269531 12.486328 L 32.177734 12.486328 C 33.735895 12.486328 35.03125 11.190973 35.03125 9.6328125 L 35.03125 5.0625 C 35.03125 3.596878 33.891093 2.3503008 32.433594 2.21875 A 1.50015 1.50015 0 0 0 32.429688 2.21875 C 32.145313 2.1938679 30.177903 2.0371094 27.689453 2.0371094 z M 27.689453 5.0371094 C 29.967263 5.0371094 32.01319 5.2007464 32.03125 5.2011719 L 32.03125 9.4863281 L 29.269531 9.4863281 C 26.963371 9.4863281 25.0625 11.387199 25.0625 13.693359 L 25 18.480469 A 1.50015 1.50015 0 0 0 26.5 20 L 31.445312 20 C 31.770968 20 31.978863 20.236144 31.941406 20.558594 L 31.59375 23.556641 C 31.562642 23.82264 31.361935 24 31.095703 24 L 26.5 24 A 1.50015 1.50015 0 0 0 25 25.5 L 25 43.5 C 25 43.795045 24.795045 44 24.5 44 L 20.5 44 C 20.204955 44 20 43.795045 20 43.5 L 20 25.5 A 1.50015 1.50015 0 0 0 18.5 24 L 13.548828 24.003906 A 1.50015 1.50015 0 0 0 13.546875 24.003906 C 13.257582 24.00417 13.051932 23.798417 13.046875 23.505859 L 13.017578 20.503906 C 13.014704 20.208314 13.221226 20 13.517578 20 L 18.498047 20 A 1.50015 1.50015 0 0 0 19.998047 18.5 L 19.998047 13.5 C 19.998047 10.534161 20.731877 8.4584135 21.960938 7.1230469 C 23.189996 5.7876802 25.001663 5.0371094 27.689453 5.0371094 z"
></path>
</svg>
</div>
<div class="btn-sharing" data-share="twitter">
<svg
fill="#000000"
role="graphics-symbol"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="30"
height="30"
viewBox="0 0 30 30"
>
<title>X (formerly Twitter)</title>
<path
d="M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z"
></path>
</svg>
</div>
<div class="btn-sharing" data-share="linkedin">
<svg
fill="#000000"
role="graphics-symbol"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="48"
height="48"
viewBox="0 0 48 48"
>
<title>LinkedIn</title>
<path
d="M 11.5 6 C 8.4802259 6 6 8.4802259 6 11.5 L 6 36.5 C 6 39.519774 8.4802259 42 11.5 42 L 36.5 42 C 39.519774 42 42 39.519774 42 36.5 L 42 11.5 C 42 8.4802259 39.519774 6 36.5 6 L 11.5 6 z M 11.5 9 L 36.5 9 C 37.898226 9 39 10.101774 39 11.5 L 39 36.5 C 39 37.898226 37.898226 39 36.5 39 L 11.5 39 C 10.101774 39 9 37.898226 9 36.5 L 9 11.5 C 9 10.101774 10.101774 9 11.5 9 z M 15.5 13 A 2.5 2.5 0 0 0 15.5 18 A 2.5 2.5 0 0 0 15.5 13 z M 14 20 C 13.447 20 13 20.447 13 21 L 13 34 C 13 34.553 13.447 35 14 35 L 17 35 C 17.553 35 18 34.553 18 34 L 18 21 C 18 20.447 17.553 20 17 20 L 14 20 z M 21 20 C 20.447 20 20 20.447 20 21 L 20 34 C 20 34.553 20.447 35 21 35 L 24 35 C 24.553 35 25 34.553 25 34 L 25 26.5 C 25 25.121 26.121 24 27.5 24 C 28.879 24 30 25.121 30 26.5 L 30 34 C 30 34.553 30.447 35 31 35 L 34 35 C 34.553 35 35 34.553 35 34 L 35 26 C 35 22.691 32.309 20 29 20 C 27.462 20 26.063 20.586016 25 21.541016 L 25 21 C 25 20.447 24.553 20 24 20 L 21 20 z"
></path>
</svg>
</div>
<div class="btn-sharing" data-share="pinterest">
<svg
fill="#000000"
role="graphics-symbol"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="48"
height="48"
viewBox="0 0 48 48"
>
<title>Pinterest</title>
<path
d="M 24 4 C 12.972066 4 4 12.972074 4 24 C 4 35.027926 12.972066 44 24 44 C 35.027934 44 44 35.027926 44 24 C 44 12.972074 35.027934 4 24 4 z M 24 7 C 33.406615 7 41 14.593391 41 24 C 41 33.406609 33.406615 41 24 41 C 22.566518 41 21.182325 40.804883 19.853516 40.472656 C 20.333373 39.496504 20.656022 38.535017 20.929688 37.529297 L 21.960938 33.460938 C 23.040937 34.480938 24.56 35 26.5 35 C 31.74 35 36 29.73 36 23.25 C 36 16.84 30.84 12 24 12 C 17.38 12 12 17.05 12 23.25 C 12 26.23 13.149922 28.940859 15.169922 30.880859 C 15.409922 31.110859 15.820391 30.980156 15.900391 30.660156 L 16.460938 28.330078 C 16.520937 28.090078 16.460313 27.840859 16.320312 27.630859 C 15.600312 26.610859 15 25.19 15 23.25 C 15 18.7 19.04 15 24 15 C 24.82 15 32 15.24 32 23.5 C 32 27.59 30.12 32 26 32 C 24.96 31.93 24.219062 31.589062 23.789062 31.039062 C 23.049063 30.059062 23.229219 28.399297 23.449219 27.529297 L 24.220703 24.509766 C 24.420703 23.709766 24.5 23.029219 24.5 22.449219 C 24.5 20.499219 23.32 19.5 22 19.5 C 20.22 19.5 19 21.389297 19 23.279297 C 19 24.309297 19.16 25.410625 19.5 26.390625 L 17.230469 35.810547 C 17.230469 35.810547 17 36.419922 17 38.419922 C 17 38.621315 17.035148 39.14999 17.050781 39.509766 C 11.123964 36.857341 7 30.926664 7 24 C 7 14.593391 14.593385 7 24 7 z"
></path>
</svg>
</div>
<div class="btn-sharing" data-share="email">
<svg
fill="#000000"
role="graphics-symbol"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="48"
height="48"
viewBox="0 0 48 48"
>
<title>Email</title>
<path
d="M 10.5 8 C 6.9280619 8 4 10.928062 4 14.5 L 4 33.5 C 4 37.071938 6.9280619 40 10.5 40 L 37.5 40 C 41.071938 40 44 37.071938 44 33.5 L 44 14.5 C 44 10.928062 41.071938 8 37.5 8 L 10.5 8 z M 10.5 11 L 37.5 11 C 39.450062 11 41 12.549938 41 14.5 L 41 15.605469 L 24 24.794922 L 7 15.605469 L 7 14.5 C 7 12.549938 8.5499381 11 10.5 11 z M 7 19.015625 L 23.287109 27.820312 A 1.50015 1.50015 0 0 0 24.712891 27.820312 L 41 19.015625 L 41 33.5 C 41 35.450062 39.450062 37 37.5 37 L 10.5 37 C 8.5499381 37 7 35.450062 7 33.5 L 7 19.015625 z"
></path>
</svg>
</div>
<div class="btn-sharing" data-share="whatsapp">
<svg
fill="#000000"
role="graphics-symbol"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="48"
height="48"
viewBox="0 0 48 48"
>
<title>WhatsApp</title>
<path
d="M 24 3.9980469 C 12.972292 3.9980469 4 12.970339 4 23.998047 C 4 27.273363 4.8627078 30.334853 6.2617188 33.064453 L 4.09375 40.826172 C 3.5887973 42.629575 5.3719261 44.41261 7.1757812 43.908203 L 14.943359 41.740234 C 17.670736 43.136312 20.727751 43.998047 24 43.998047 C 35.027708 43.998047 44 35.025755 44 23.998047 C 44 12.970339 35.027708 3.9980469 24 3.9980469 z M 24 6.9980469 C 33.406292 6.9980469 41 14.591755 41 23.998047 C 41 33.404339 33.406292 40.998047 24 40.998047 C 20.998416 40.998047 18.190601 40.217527 15.742188 38.853516 A 1.50015 1.50015 0 0 0 14.609375 38.71875 L 7.2226562 40.779297 L 9.2851562 33.396484 A 1.50015 1.50015 0 0 0 9.1503906 32.261719 C 7.7836522 29.811523 7 27.002565 7 23.998047 C 7 14.591755 14.593708 6.9980469 24 6.9980469 z M 17.240234 15 C 16.921234 15 16.405797 15.119656 15.966797 15.597656 C 15.528797 16.073656 14.294922 17.228125 14.294922 19.578125 C 14.294922 21.928125 16.005141 24.197578 16.244141 24.517578 C 16.482141 24.834578 19.547344 29.812562 24.402344 31.726562 C 28.436344 33.316563 29.256812 32.999922 30.132812 32.919922 C 31.008813 32.841922 32.959422 31.766391 33.357422 30.650391 C 33.755422 29.534391 33.755672 28.579813 33.638672 28.382812 C 33.519672 28.183812 33.200656 28.063219 32.722656 27.824219 C 32.245656 27.585219 29.898937 26.430484 29.460938 26.271484 C 29.022938 26.112484 28.702766 26.031766 28.384766 26.509766 C 28.066766 26.987766 27.152047 28.062859 26.873047 28.380859 C 26.594047 28.700859 26.315891 28.740953 25.837891 28.501953 C 25.358891 28.260953 23.822094 27.757859 21.996094 26.130859 C 20.576094 24.865859 19.620797 23.302219 19.341797 22.824219 C 19.063797 22.348219 19.311781 22.086609 19.550781 21.849609 C 19.765781 21.635609 20.028578 21.292672 20.267578 21.013672 C 20.504578 20.734672 20.583188 20.53675 20.742188 20.21875 C 20.901188 19.90175 20.822125 19.621813 20.703125 19.382812 C 20.584125 19.143813 19.655469 16.780938 19.230469 15.835938 C 18.873469 15.041938 18.49725 15.024719 18.15625 15.011719 C 17.87825 15.000719 17.558234 15 17.240234 15 z"
></path>
</svg>
</div>
<div class="btn-sharing" data-share="messenger">
<svg
fill="#000000"
role="graphics-symbol"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="48"
height="48"
viewBox="0 0 48 48"
>
<title>Facebook Messenger</title>
<path
d="M 24 5 C 13.016141 5 4 13.47799 4 24 C 4 29.391285 6.4359964 34.208612 10.214844 37.652344 L 10.142578 41.169922 C 10.086908 43.977866 13.270314 45.853371 15.699219 44.443359 L 19.277344 42.367188 C 20.796228 42.722476 22.355355 43 24 43 C 34.983859 43 44 34.52201 44 24 C 44 13.47799 34.983859 5 24 5 z M 24 8 C 33.450141 8 41 15.19201 41 24 C 41 32.80799 33.450141 40 24 40 C 22.386251 40 20.827941 39.774909 19.335938 39.375 A 1.50015 1.50015 0 0 0 18.195312 39.525391 L 14.193359 41.849609 C 13.656487 42.161669 13.130259 41.851809 13.142578 41.230469 L 13.226562 37.097656 A 1.50015 1.50015 0 0 0 12.691406 35.919922 C 9.1895359 32.974896 7 28.739934 7 24 C 7 15.19201 14.549859 8 24 8 z M 34.074219 18.107422 C 33.819844 18.061172 33.547859 18.110531 33.318359 18.269531 L 26.703125 22.851562 L 23.25 19.814453 L 23.007812 19.601562 L 22.875 19.492188 C 21.841 18.712188 20.369844 18.919125 19.589844 19.953125 L 13.318359 28.269531 L 13.298828 28.292969 C 13.043828 28.631969 13.021391 29.109562 13.275391 29.476562 C 13.593391 29.934562 14.222641 30.048469 14.681641 29.730469 L 21.296875 25.148438 L 24.75 28.1875 L 24.992188 28.400391 L 25.125 28.507812 C 26.159 29.287812 27.630156 29.082828 28.410156 28.048828 L 34.681641 19.732422 L 34.701172 19.707031 C 34.956172 19.368031 34.978609 18.892391 34.724609 18.525391 C 34.565609 18.296391 34.328594 18.153672 34.074219 18.107422 z"
></path>
</svg>
</div>
<div class="btn-sharing" data-share="telegram">
<svg
fill="#000000"
role="graphics-symbol"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="48"
height="48"
viewBox="0 0 48 48"
>
<title>Telegram</title>
<path
d="M39.175,10.016c1.687,0,2.131,1.276,1.632,4.272c-0.571,3.426-2.216,14.769-3.528,21.83 c-0.502,2.702-1.407,3.867-2.724,3.867c-0.724,0-1.572-0.352-2.546-0.995c-1.32-0.872-7.984-5.279-9.431-6.314 c-1.32-0.943-3.141-2.078-0.857-4.312c0.813-0.796,6.14-5.883,10.29-9.842c0.443-0.423,0.072-1.068-0.42-1.068 c-0.112,0-0.231,0.034-0.347,0.111c-5.594,3.71-13.351,8.859-14.338,9.53c-0.987,0.67-1.949,1.1-3.231,1.1 c-0.655,0-1.394-0.112-2.263-0.362c-1.943-0.558-3.84-1.223-4.579-1.477c-2.845-0.976-2.17-2.241,0.593-3.457 c11.078-4.873,25.413-10.815,27.392-11.637C36.746,10.461,38.178,10.016,39.175,10.016 M39.175,7.016L39.175,7.016 c-1.368,0-3.015,0.441-5.506,1.474L33.37,8.614C22.735,13.03,13.092,17.128,6.218,20.152c-1.074,0.473-4.341,1.91-4.214,4.916 c0.054,1.297,0.768,3.065,3.856,4.124l0.228,0.078c0.862,0.297,2.657,0.916,4.497,1.445c1.12,0.322,2.132,0.478,3.091,0.478 c1.664,0,2.953-0.475,3.961-1.028c-0.005,0.168-0.001,0.337,0.012,0.507c0.182,2.312,1.97,3.58,3.038,4.338l0.149,0.106 c1.577,1.128,8.714,5.843,9.522,6.376c1.521,1.004,2.894,1.491,4.199,1.491c2.052,0,4.703-1.096,5.673-6.318 c0.921-4.953,1.985-11.872,2.762-16.924c0.331-2.156,0.603-3.924,0.776-4.961c0.349-2.094,0.509-4.466-0.948-6.185 C42.208,7.875,41.08,7.016,39.175,7.016L39.175,7.016z"
></path>
</svg>
</div>
</div>
<div class="controls-share-group controls-share-group-link">
<input type="text" class="txtLink" readonly />
<div type="button" class="btn-sharing-page selPageSelector">
<div class="sel-page-empty selPageEmpty">
<svg
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="64"
height="64"
viewBox="0 0 128 128"
>
<path
d="M23.67,114.59c1.74,0.78,3.57,1.17,5.37,1.17c3.1,0,6.14-1.13,8.59-3.31l21.71-19.3c2.65-2.36,6.65-2.36,9.3,0l21.71,19.3 c3.88,3.45,9.23,4.27,13.96,2.14c4.73-2.13,7.67-6.67,7.67-11.86V24c0-7.17-5.83-13-13-13H29c-7.17,0-13,5.83-13,13v78.73 C16,107.92,18.94,112.47,23.67,114.59z M22,24c0-3.86,3.14-7,7-7h70c3.86,0,7,3.14,7,7v78.73c0,2.84-1.54,5.22-4.13,6.39 c-2.59,1.16-5.4,0.73-7.52-1.15l-21.71-19.3c-2.46-2.19-5.55-3.28-8.64-3.28s-6.17,1.09-8.64,3.28l-21.71,19.3 c-2.12,1.88-4.93,2.32-7.52,1.15c-2.59-1.16-4.13-3.55-4.13-6.39V24z"
></path>
</svg>
</div>
<div
class="sel-page-selected selPageSelected"
style="display: none"
></div>
<div class="sel-page selPageDropDown"></div>
</div>
<button type="button" class="btn-sharing-copy btnShareCopy">
<svg
class="btn-copy-done"
style="display: none"
xmlns="http://www.w3.org/2000/svg"
x="0px"
y="0px"
width="16"
height="16"
viewBox="0 0 16 16"
>
<title>Page number</title>
<path
d="M 14.5 2.792969 L 5.5 11.792969 L 1.851563 8.148438 L 1.5 7.792969 L 0.792969 8.5 L 1.148438 8.851563 L 5.5 13.207031 L 15.207031 3.5 Z"
></path>
</svg>
<svg
class="btn-copy-icon"
fill="#ffffff"
role="graphics-symbol"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
width="24px"
height="24px"
>
<title>Copy</title>
<path
d="M 4 2 C 2.895 2 2 2.895 2 4 L 2 17 C 2 17.552 2.448 18 3 18 C 3.552 18 4 17.552 4 17 L 4 4 L 17 4 C 17.552 4 18 3.552 18 3 C 18 2.448 17.552 2 17 2 L 4 2 z M 8 6 C 6.895 6 6 6.895 6 8 L 6 20 C 6 21.105 6.895 22 8 22 L 20 22 C 21.105 22 22 21.105 22 20 L 22 8 C 22 6.895 21.105 6 20 6 L 8 6 z M 8 8 L 20 8 L 20 20 L 8 20 L 8 8 z"
/>
</svg>
</button>
</div>
</div>
<div
id="pnlSearch"
class="controls-pdf controls-search controls-md"
style="display: none"
>
<div class="search-control">
<input type="text" id="txtContentSearch" />
<button type="button" id="btnContentSearch">
<svg
width="24px"
role="img"
height="24px"
stroke-width="1.5"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="#000000"
>
<path
d="M15.5 15.5L19 19M5 11a6 6 0 1012 0 6 6 0 00-12 0z"
stroke="#000000"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</button>
<button
type="button"
id="btnContentSearchCancel"
style="display: none"
>
<svg
width="24px"
height="24px"
stroke-width="1.5"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="#000000"
>
<path
d="M6.758 17.243L12.001 12m5.243-5.243L12 12m0 0L6.758 6.757M12.001 12l5.243 5.243"
stroke="#000000"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</button>
<div class="search-progress" style="display: none"></div>
</div>
<div class="panel-search-results" style="display: none"></div>
</div>
<div
id="pnlNav"
class="controls-pdf controls-md"
data-disable-events="true"
data-disable-zoom="true"
style="display: none"
>
<div class="panel-nav-controls">
<div class="panel-nav-sections">
<div id="btnNavPanelThumbnails" class="panel-section-btn">
<svg
width="22px"
height="22px"
stroke-width="2"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="#000000"
>
<path
d="M14 20.4v-5.8a.6.6 0 01.6-.6h5.8a.6.6 0 01.6.6v5.8a.6.6 0 01-.6.6h-5.8a.6.6 0 01-.6-.6zM3 20.4v-5.8a.6.6 0 01.6-.6h5.8a.6.6 0 01.6.6v5.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6zM14 9.4V3.6a.6.6 0 01.6-.6h5.8a.6.6 0 01.6.6v5.8a.6.6 0 01-.6.6h-5.8a.6.6 0 01-.6-.6zM3 9.4V3.6a.6.6 0 01.6-.6h5.8a.6.6 0 01.6.6v5.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="#000000"
stroke-width="2"
></path>
</svg>
</div>
<div id="btnNavPanelOutline" class="panel-section-btn">
<svg
width="22px"
height="22px"
viewBox="0 0 24 24"
stroke-width="2"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="#000000"
>
<path
d="M3 5h12M20.5 7V3L19 4.5M21 14h-2l1.905-2.963a.428.428 0 00.072-.323C20.92 10.456 20.716 10 20 10c-1 0-1 .889-1 .889s0 0 0 0v.222M19.5 19h.5a1 1 0 011 1v0a1 1 0 01-1 1h-1M19 17h2l-1.5 2M3 12h12M3 19h12"
stroke="#000000"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</div>
<div id="btnNavPanelBookmark" class="panel-section-btn">
<svg
width="22px"
height="22px"
stroke-width="2"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="#000000"
>
<path
d="M5 21V5a2 2 0 012-2h10a2 2 0 012 2v16l-5.918-3.805a2 2 0 00-2.164 0L5 21z"
stroke="#000000"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</div>
</div>
<button type="button" class="panel-nav-close">
<svg
width="22px"
height="22px"
stroke-width="1.5"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="#000000"
>
<path
d="M6.758 17.243L12.001 12m5.243-5.243L12 12m0 0L6.758 6.757M12.001 12l5.243 5.243"
stroke="#000000"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</button>
</div>
<div class="panel-nav-thumbnails panel-nav-body">
<button type="button" class="panel-nav-close" style="display: none">
<svg
width="24px"
height="22px"
stroke-width="1.5"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="#000000"
>
<path
d="M6.758 17.243L12.001 12m5.243-5.243L12 12m0 0L6.758 6.757M12.001 12l5.243 5.243"
stroke="#000000"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</button>
<div class="panel-nav-thumbnails-body"></div>
</div>
<div class="panel-nav-outline panel-nav-body" style="display: none">
<button type="button" class="panel-nav-close" style="display: none">
<svg
width="24px"
height="22px"
stroke-width="1.5"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="#000000"
>
<path
d="M6.758 17.243L12.001 12m5.243-5.243L12 12m0 0L6.758 6.757M12.001 12l5.243 5.243"
stroke="#000000"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</button>
<div class="panel-nav-outline-body"></div>
</div>
<div class="panel-nav-bookmark panel-nav-body" style="display: none">
<div class="panel-nav-bookmark-controls">
<button
id="btnNavPanelBookmarkAdd"
class="btn-nav-panel-bookmark"
type="button"
>
<svg
width="22px"
height="22px"
stroke-width="2"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="#000000"
>
<path
d="M6 12h6m6 0h-6m0 0V6m0 6v6"
stroke="#000000"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
<span class="btn-nav-panel-text"></span>
</button>
<button
id="btnNavPanelEditBookmarks"
class="btn-nav-panel-bookmark"
type="button"
style="display: none"
>
<svg
width="16px"
height="16px"
stroke-width="2"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="#000000"
>
<path
d="M3 21h18M12.222 5.828L15.05 3 20 7.95l-2.828 2.828m-4.95-4.95l-5.607 5.607a1 1 0 00-.293.707v4.536h4.536a1 1 0 00.707-.293l5.607-5.607m-4.95-4.95l4.95 4.95"
stroke="#000000"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</button>
<button
id="btnNavPanelSaveBookmarks"
class="btn-nav-panel-bookmark"
type="button"
style="display: none"
>
<svg
width="16px"
height="16px"
stroke-width="2"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="#000000"
>
<path
d="M3 19V5a2 2 0 012-2h11.172a2 2 0 011.414.586l2.828 2.828A2 2 0 0121 7.828V19a2 2 0 01-2 2H5a2 2 0 01-2-2z"
stroke="#000000"
stroke-width="2"
></path>
<path
d="M8.6 9h6.8a.6.6 0 00.6-.6V3.6a.6.6 0 00-.6-.6H8.6a.6.6 0 00-.6.6v4.8a.6.6 0 00.6.6zM6 13.6V21h12v-7.4a.6.6 0 00-.6-.6H6.6a.6.6 0 00-.6.6z"
stroke="#000000"
stroke-width="2"
></path>
</svg>
</button>
<button
type="button"
class="panel-nav-close btn-nav-panel-bookmark"
style="display: none"
>
<svg
width="24px"
height="22px"
stroke-width="1.5"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="#000000"
>
<path
d="M6.758 17.243L12.001 12m5.243-5.243L12 12m0 0L6.758 6.757M12.001 12l5.243 5.243"
stroke="#000000"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</button>
</div>