-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.html
8366 lines (8209 loc) · 580 KB
/
README.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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>doom org style</title>
<meta name="generator" content="Org Mode" />
<style>
#content { max-width: 60em; margin: auto; }
.title { text-align: center;
margin-bottom: .2em; }
.subtitle { text-align: center;
font-size: medium;
font-weight: bold;
margin-top:0; }
.todo { font-family: monospace; color: red; }
.done { font-family: monospace; color: green; }
.priority { font-family: monospace; color: orange; }
.tag { background-color: #eee; font-family: monospace;
padding: 2px; font-size: 80%; font-weight: normal; }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.org-right { margin-left: auto; margin-right: 0px; text-align: right; }
.org-left { margin-left: 0px; margin-right: auto; text-align: left; }
.org-center { margin-left: auto; margin-right: auto; text-align: center; }
.underline { text-decoration: underline; }
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
p.verse { margin-left: 3%; }
pre {
border: 1px solid #e6e6e6;
border-radius: 3px;
background-color: #f2f2f2;
padding: 8pt;
font-family: monospace;
overflow: auto;
margin: 1.2em;
}
pre.src {
position: relative;
overflow: auto;
}
pre.src:before {
display: none;
position: absolute;
top: -8px;
right: 12px;
padding: 3px;
color: #555;
background-color: #f2f2f299;
}
pre.src:hover:before { display: inline; margin-top: 14px;}
/* Languages per Org manual */
pre.src-asymptote:before { content: 'Asymptote'; }
pre.src-awk:before { content: 'Awk'; }
pre.src-authinfo::before { content: 'Authinfo'; }
pre.src-C:before { content: 'C'; }
/* pre.src-C++ doesn't work in CSS */
pre.src-clojure:before { content: 'Clojure'; }
pre.src-css:before { content: 'CSS'; }
pre.src-D:before { content: 'D'; }
pre.src-ditaa:before { content: 'ditaa'; }
pre.src-dot:before { content: 'Graphviz'; }
pre.src-calc:before { content: 'Emacs Calc'; }
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
pre.src-fortran:before { content: 'Fortran'; }
pre.src-gnuplot:before { content: 'gnuplot'; }
pre.src-haskell:before { content: 'Haskell'; }
pre.src-hledger:before { content: 'hledger'; }
pre.src-java:before { content: 'Java'; }
pre.src-js:before { content: 'Javascript'; }
pre.src-latex:before { content: 'LaTeX'; }
pre.src-ledger:before { content: 'Ledger'; }
pre.src-lisp:before { content: 'Lisp'; }
pre.src-lilypond:before { content: 'Lilypond'; }
pre.src-lua:before { content: 'Lua'; }
pre.src-matlab:before { content: 'MATLAB'; }
pre.src-mscgen:before { content: 'Mscgen'; }
pre.src-ocaml:before { content: 'Objective Caml'; }
pre.src-octave:before { content: 'Octave'; }
pre.src-org:before { content: 'Org mode'; }
pre.src-oz:before { content: 'OZ'; }
pre.src-plantuml:before { content: 'Plantuml'; }
pre.src-processing:before { content: 'Processing.js'; }
pre.src-python:before { content: 'Python'; }
pre.src-R:before { content: 'R'; }
pre.src-ruby:before { content: 'Ruby'; }
pre.src-sass:before { content: 'Sass'; }
pre.src-scheme:before { content: 'Scheme'; }
pre.src-screen:before { content: 'Gnu Screen'; }
pre.src-sed:before { content: 'Sed'; }
pre.src-sh:before { content: 'shell'; }
pre.src-sql:before { content: 'SQL'; }
pre.src-sqlite:before { content: 'SQLite'; }
/* additional languages in org.el's org-babel-load-languages alist */
pre.src-forth:before { content: 'Forth'; }
pre.src-io:before { content: 'IO'; }
pre.src-J:before { content: 'J'; }
pre.src-makefile:before { content: 'Makefile'; }
pre.src-maxima:before { content: 'Maxima'; }
pre.src-perl:before { content: 'Perl'; }
pre.src-picolisp:before { content: 'Pico Lisp'; }
pre.src-scala:before { content: 'Scala'; }
pre.src-shell:before { content: 'Shell Script'; }
pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
/* additional language identifiers per "defun org-babel-execute"
in ob-*.el */
pre.src-cpp:before { content: 'C++'; }
pre.src-abc:before { content: 'ABC'; }
pre.src-coq:before { content: 'Coq'; }
pre.src-groovy:before { content: 'Groovy'; }
/* additional language identifiers from org-babel-shell-names in
ob-shell.el: ob-shell is the only babel language using a lambda to put
the execution function name together. */
pre.src-bash:before { content: 'bash'; }
pre.src-csh:before { content: 'csh'; }
pre.src-ash:before { content: 'ash'; }
pre.src-dash:before { content: 'dash'; }
pre.src-ksh:before { content: 'ksh'; }
pre.src-mksh:before { content: 'mksh'; }
pre.src-posh:before { content: 'posh'; }
/* Additional Emacs modes also supported by the LaTeX listings package */
pre.src-ada:before { content: 'Ada'; }
pre.src-asm:before { content: 'Assembler'; }
pre.src-caml:before { content: 'Caml'; }
pre.src-delphi:before { content: 'Delphi'; }
pre.src-html:before { content: 'HTML'; }
pre.src-idl:before { content: 'IDL'; }
pre.src-mercury:before { content: 'Mercury'; }
pre.src-metapost:before { content: 'MetaPost'; }
pre.src-modula-2:before { content: 'Modula-2'; }
pre.src-pascal:before { content: 'Pascal'; }
pre.src-ps:before { content: 'PostScript'; }
pre.src-prolog:before { content: 'Prolog'; }
pre.src-simula:before { content: 'Simula'; }
pre.src-tcl:before { content: 'tcl'; }
pre.src-tex:before { content: 'TeX'; }
pre.src-plain-tex:before { content: 'Plain TeX'; }
pre.src-verilog:before { content: 'Verilog'; }
pre.src-vhdl:before { content: 'VHDL'; }
pre.src-xml:before { content: 'XML'; }
pre.src-nxml:before { content: 'XML'; }
/* add a generic configuration mode; LaTeX export needs an additional
(add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
pre.src-conf:before { content: 'Configuration File'; }
table { border-collapse:collapse; }
caption.t-above { caption-side: top; }
caption.t-bottom { caption-side: bottom; }
td, th { vertical-align:top; }
th.org-right { text-align: center; }
th.org-left { text-align: center; }
th.org-center { text-align: center; }
td.org-right { text-align: right; }
td.org-left { text-align: left; }
td.org-center { text-align: center; }
dt { font-weight: bold; }
.footpara { display: inline; }
.footdef { margin-bottom: 1em; }
.figure { padding: 1em; }
.figure p { text-align: center; }
.equation-container {
display: table;
text-align: center;
width: 100%;
}
.equation {
vertical-align: middle;
}
.equation-label {
display: table-cell;
text-align: right;
vertical-align: middle;
}
.inlinetask {
padding: 10px;
border: 2px solid gray;
margin: 10px;
background: #ffffcc;
}
#org-div-home-and-up
{ text-align: right; font-size: 70%; white-space: nowrap; }
textarea { overflow-x: auto; }
.linenr { font-size: smaller }
.code-highlighted { background-color: #ffff00; }
.org-info-js_info-navigation { border-style: none; }
#org-info-js_console-label
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
.org-info-js_search-highlight
{ background-color: #ffff00; color: #000000; font-weight: bold; }
.org-svg { }
</style>
<script src="http://code.jquery.com/jquery-2.0.0.min.js"></script>
<script src="scroll.js"></script>
<link href="base.css" rel="stylesheet"></link>
<a href="https://github.com/vanniuner/doom-org-style" class="github-corner" aria-label="View source on GitHub"><svg width="80" height="80" viewBox="0 0 250 250" style="fill:#70B7FD; color:#fff; position: absolute; top: 0; border: 0; right: 0;" aria-hidden="true"><path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path><path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path><path d="M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z" fill="currentColor" class="octo-body"></path></svg></a>
<script>
window.MathJax = {
tex: {
ams: {
multlineWidth: '%MULTLINEWIDTH'
},
tags: '%TAGS',
tagSide: '%TAGSIDE',
tagIndent: '%TAGINDENT'
},
chtml: {
scale: %SCALE,
displayAlign: '%ALIGN',
displayIndent: '%INDENT'
},
svg: {
scale: %SCALE,
displayAlign: '%ALIGN',
displayIndent: '%INDENT'
},
output: {
font: '%FONT',
displayOverflow: '%OVERFLOW'
}
};
</script>
<script
id="MathJax-script"
async
src="https://cdn.bootcss.com/mathjax/3.0.5/es5/tex-mml-chtml.js">
</script>
</head>
<body>
<div id="preamble" class="status">
<p class="author">Made ✐︎ by Neo Emacser <a href="https://github.com/sincebyte">sincebyte</a></p>
</div>
<div id="content" class="content">
<h1 class="title">doom org style
<br />
<span class="subtitle">A vairty of template about org mode code which one referenced the doom doc style</span>
</h1>
<div id="table-of-contents" role="doc-toc">
<h2>Table of Contents</h2>
<div id="text-table-of-contents" role="doc-toc">
<ul>
<li><a href="#org6479b64">1. 使用</a></li>
<li><a href="#orgb2697cd">2. 字体样式</a></li>
<li><a href="#orga2e350a">3. 特殊说明</a>
<ul>
<li><a href="#orge495598">3.1. quote 摘要、引用</a></li>
<li><a href="#orgf396ff6">3.2. notice 注意事项、提醒</a></li>
<li><a href="#orgd6e1e8f">3.3. Declare a reference</a></li>
</ul>
</li>
<li><a href="#orgc026b80">4. 段落及高亮</a></li>
<li><a href="#orgdfaf60d">5. 表格</a>
<ul>
<li><a href="#orgecef6cf">5.1. AWK 表格</a></li>
<li><a href="#org7185bdd">5.2. 表格自增 ID</a></li>
</ul>
</li>
<li><a href="#orgd8dff60">6. LaTex 公式</a></li>
<li><a href="#org33d9de5">7. Org 代码</a>
<ul>
<li><a href="#org2f4c779">7.1. Java 代码</a></li>
<li><a href="#org375f825">7.2. babel java</a></li>
</ul>
</li>
<li><a href="#org8e73ce3">8. 图片</a>
<ul>
<li><a href="#org8163b7b">8.1. 引用本地图片</a></li>
<li><a href="#org46858af">8.2. dot</a></li>
<li><a href="#orgaf28977">8.3. dot sk</a></li>
<li><a href="#org94e8c3a">8.4. plantuml with style css</a></li>
<li><a href="#org6b80110">8.5. plant uml 系统 Contex 架构图</a></li>
<li><a href="#orgc9b9eeb">8.6. 泳道图</a></li>
<li><a href="#org05ca511">8.7. plantuml 通过html自定义图片样式</a></li>
<li><a href="#orgfb695e8">8.8. plot 折线图</a></li>
<li><a href="#org81893df">8.9. plot 柱状图</a></li>
<li><a href="#orgd8b9558">8.10. WHAT IS CONNECTOR</a></li>
<li><a href="#org080dc9a">8.11. d2 workflow</a></li>
<li><a href="#orgc7ed7ec">8.12. d2 6.2</a></li>
</ul>
</li>
<li><a href="#org6db8b71">9. org 转 Word</a></li>
<li><a href="#org70ccf72">10. 插入时间</a></li>
<li><a href="#orgcfcdfef">11. Unicode 字符</a></li>
<li><a href="#orgff756a5">12. a</a></li>
</ul>
</div>
</div>
<blockquote>
<p>
样式引用:<a href="https://docs.doomemacs.org/latest/#/modules">https://docs.doomemacs.org/latest/#/modules</a><br />
</p>
</blockquote>
<p>
一个类 <b>doom doc</b> 的 <b>org html</b> 样式模版 <a href="http://1.117.167.195/doc/doomorgstyle.html">点此预览🪄</a><br />
</p>
<div id="outline-container-org6479b64" class="outline-2">
<h2 id="org6479b64"><span class="section-number-2">1.</span> 使用</h2>
<div class="outline-text-2" id="text-1">
<p>
配置 <b>snippet</b> 模版,然后在 <b>org mode</b> 文件中使用 <code>tt</code> <code>tab</code> 就可展开此模版。<br />
</p>
<div class="org-src-container">
<pre class="src src-org"><span class="linenr">1: </span><span style="color: #78808f;">HTML_HEAD: <script src = "<a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js</a>"></script></span>
<span class="linenr">2: </span><span style="color: #78808f;">HTML_HEAD: <script src = "<a href="https://emacs-1308440781.cos.ap-chengdu.myqcloud.com/scroll.js">https://emacs-1308440781.cos.ap-chengdu.myqcloud.com/scroll.js</a>"></script></span>
<span class="linenr">3: </span><span style="color: #78808f;">HTML_HEAD: <link href = "<a href="https://emacs-1308440781.cos.ap-chengdu.myqcloud.com/base.css">https://emacs-1308440781.cos.ap-chengdu.myqcloud.com/base.css</a>" rel="stylesheet" type="text/css"></link></span>
<span class="linenr">4: </span><span style="color: #78808f;">OPTIONS: prop:nil timestamp:t \n:t ^:nil f:t toc:t author:t num:t H:2</span>
<span class="linenr">5: </span><span style="color: #78808f;">LATEX_COMPILER: xelatex</span>
<span class="linenr">6: </span><span style="color: #78808f;">LATEX_CLASS: elegantpaper</span>
<span class="linenr">7: </span><span style="color: #78808f;">latex:\newpage</span>
</pre>
</div>
<div class="notice-info" id="org2cf8657">
<p>
想使用在线版的静态文件,可以使用下面的配置进行替换<br />
</p>
</div>
<div class="org-src-container">
<pre class="src src-org"><span style="color: #78808f;">HTML_HEAD: <link href="<a href="https://emacs-1308440781.cos.ap-chengdu.myqcloud.com/org_css.css">https://emacs-1308440781.cos.ap-chengdu.myqcloud.com/org_css.css</a>" rel="stylesheet"></link></span>
<span style="color: #78808f;">HTML_HEAD: <script src="<a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js</a>"></script></span>
<span style="color: #78808f;">HTML_HEAD: <script src="<a href="https://emacs-1308440781.cos.ap-chengdu.myqcloud.com/scroll.js">https://emacs-1308440781.cos.ap-chengdu.myqcloud.com/scroll.js</a>"></script></span>
</pre>
</div>
</div>
</div>
<div id="outline-container-orgb2697cd" class="outline-2">
<h2 id="orgb2697cd"><span class="section-number-2">2.</span> 字体样式</h2>
<div class="outline-text-2" id="text-2">
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<caption class="t-bottom"><span class="table-number">Table 1:</span> 字体样式说明</caption>
<colgroup>
<col class="org-left" />
<col class="org-left" />
</colgroup>
<tbody>
<tr>
<td class="org-left">粗体</td>
<td class="org-left"><b>bold</b></td>
</tr>
<tr>
<td class="org-left">斜体</td>
<td class="org-left"><i>italic</i></td>
</tr>
<tr>
<td class="org-left">下划线</td>
<td class="org-left"><span class="underline">underlined</span></td>
</tr>
<tr>
<td class="org-left">中横线</td>
<td class="org-left"><del>strike-through</del></td>
</tr>
<tr>
<td class="org-left">代码,按键</td>
<td class="org-left"><code>code</code></td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="outline-container-orga2e350a" class="outline-2">
<h2 id="orga2e350a"><span class="section-number-2">3.</span> 特殊说明</h2>
<div class="outline-text-2" id="text-3">
</div>
<div id="outline-container-orge495598" class="outline-3">
<h3 id="orge495598"><span class="section-number-3">3.1.</span> quote 摘要、引用</h3>
<div class="outline-text-3" id="text-3-1">
<p>
可使用`quote`来进行代码块补全,表示摘要,引用<br />
</p>
<blockquote>
<p>
TECO - Tape [later text] Editor/COrrector<br />
A combination text editor/really horrible ProgrammingLanguage. To quote the paper “RealProgrammers don’t use Pascal” (1983):<br />
</p>
</blockquote>
</div>
</div>
<div id="outline-container-orgf396ff6" class="outline-3">
<h3 id="orgf396ff6"><span class="section-number-3">3.2.</span> notice 注意事项、提醒</h3>
<div class="outline-text-3" id="text-3-2">
<div class="notice-info" id="orga579a82">
<p>
你有许多已标记的项目并且你可能错过一个重要的项目时,提醒可以提供帮助<br />
</p>
</div>
<div class="notice-warning" id="orgafbe5df">
<p>
Please do not file or answer Doom Emacs issues on Reddit, Twitter, or StackOverflow. Kindly refer them to this section.<br />
</p>
</div>
<div class="notice-example" id="orgd07421b">
<p>
这是 1 个例子<br />
</p>
</div>
</div>
</div>
<div id="outline-container-orgd6e1e8f" class="outline-3">
<h3 id="orgd6e1e8f"><span class="section-number-3">3.3.</span> Declare a reference</h3>
<div class="outline-text-3" id="text-3-3">
<p>
According to the documentation <a href="https://orgmode.org/manual/Internal-Links.html">Internal-Links</a> we know there have two ways to sign a particular tag.<br />
</p>
<ol class="org-ol">
<li>the outline of org mode is an natural linkable tag.<br /></li>
<li>use <a id="org7056e0c"></a> to declare a linkable tag.<br /></li>
</ol>
</div>
</div>
</div>
<div id="outline-container-orgc026b80" class="outline-2">
<h2 id="orgc026b80"><span class="section-number-2">4.</span> 段落及高亮</h2>
<div class="outline-text-2" id="text-4">
<p>
Example of an comment.<br />
</p>
<p>
原文:<a href="https://iuap.yonyoucloud.com/doc/yonbuilder.html#/md-build/yonbuilder/articles/yonbuilder/1-/notes.md?key=%E5%8F%91%E7%89%88%E8%AF%B4%E6%98%8E">用友 bip 产品功能说明</a> ,在说明文档<br />
</p>
<p>
大数据中 <b>最宝贵</b> 、最难以代替的就是数据,一切都围绕数据。<br />
</p>
<p>
HDFS 是最早的大数据存储系统,存储着宝贵的数据资产,各种新算法、框架要想得到广泛使用,必须支持 HDFS,才能获取已存储在里面的数据。所以大数据技术越发展,新技术越多,HDFS 得到的支持越多,越离不开 HDFS。HDFS 也许不是最好的大数据存储技术,但依然是最重要的大数据存储技术。<br />
</p>
<p>
HDFS 是如何实现大数据高速、可靠的存储和访问的呢?<br />
</p>
<ul class="org-ul">
<li>Hadoop 分布式文件系统 HDFS 的设计目标是管理数以千计的服务器、数以万计的磁盘,将大规模的服务器计算资源当作一个单一存储系统进行管理,对应用程序提供数以 PB 计的存储容量,让应用程序像使用普通文件系统一样存储大规模的文件数据。<br /></li>
</ul>
</div>
</div>
<div id="outline-container-orgdfaf60d" class="outline-2">
<h2 id="orgdfaf60d"><span class="section-number-2">5.</span> 表格</h2>
<div class="outline-text-2" id="text-5">
<p>
<code>C-c ~</code> to convert to tabel.el table<br />
<code>C-c ~</code> to convert to org table<br />
org table <code>M-h</code> <code>M-l</code> for move Columns left and right<br />
org table <code>M-k</code> <code>M-j</code> for move Rows up and down<br />
</p>
<div class="org-src-container">
<pre class="src src-txt"># table.el for merge Columns or Rows
</pre>
</div>
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<caption class="t-bottom"><span class="table-number">Table 2:</span> square</caption>
<colgroup>
<col class="org-right" />
</colgroup>
<colgroup>
<col class="org-right" />
<col class="org-right" />
<col class="org-right" />
</colgroup>
<colgroup>
<col class="org-right" />
<col class="org-right" />
</colgroup>
<thead>
<tr>
<th scope="col" class="org-right">N</th>
<th scope="col" class="org-right">N^2</th>
<th scope="col" class="org-right">N^3</th>
<th scope="col" class="org-right">N^4</th>
<th scope="col" class="org-right">sqrt(n)</th>
<th scope="col" class="org-right">sqrt[4](N)</th>
</tr>
</thead>
<tbody>
<tr>
<td class="org-right">1</td>
<td class="org-right">1</td>
<td class="org-right">1</td>
<td class="org-right">1</td>
<td class="org-right">1</td>
<td class="org-right">1</td>
</tr>
<tr>
<td class="org-right">2</td>
<td class="org-right">4</td>
<td class="org-right">8</td>
<td class="org-right">16</td>
<td class="org-right">1.4142136</td>
<td class="org-right">1.1892071</td>
</tr>
<tr>
<td class="org-right">3</td>
<td class="org-right">9</td>
<td class="org-right">27</td>
<td class="org-right">81</td>
<td class="org-right">1.7320508</td>
<td class="org-right">1.3160740</td>
</tr>
</tbody>
</table>
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<caption class="t-bottom"><span class="table-number">Table 3:</span> student</caption>
<colgroup>
<col class="org-left" />
<col class="org-right" />
<col class="org-right" />
<col class="org-right" />
<col class="org-right" />
<col class="org-right" />
</colgroup>
<thead>
<tr>
<th scope="col" class="org-left">Student</th>
<th scope="col" class="org-right">Prob 1</th>
<th scope="col" class="org-right">Prob 2</th>
<th scope="col" class="org-right">Prob 3</th>
<th scope="col" class="org-right">Total</th>
<th scope="col" class="org-right">Note</th>
</tr>
</thead>
<tbody>
<tr>
<td class="org-left">Maximum</td>
<td class="org-right">10</td>
<td class="org-right">15</td>
<td class="org-right">25</td>
<td class="org-right">50</td>
<td class="org-right">10.0</td>
</tr>
</tbody>
<tbody>
<tr>
<td class="org-left">Peter</td>
<td class="org-right">10</td>
<td class="org-right">8</td>
<td class="org-right">23</td>
<td class="org-right">41</td>
<td class="org-right">8.2</td>
</tr>
<tr>
<td class="org-left">Sam</td>
<td class="org-right">2</td>
<td class="org-right">4</td>
<td class="org-right">3</td>
<td class="org-right">9</td>
<td class="org-right">1.8</td>
</tr>
</tbody>
<tbody>
<tr>
<td class="org-left">Average</td>
<td class="org-right"> </td>
<td class="org-right"> </td>
<td class="org-right"> </td>
<td class="org-right">25.0</td>
<td class="org-right"> </td>
</tr>
</tbody>
</table>
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<caption class="t-bottom"><span class="table-number">Table 4:</span> long table</caption>
<colgroup>
<col class="org-left" />
<col class="org-left" />
<col class="org-left" />
<col class="org-left" />
<col class="org-left" />
<col class="org-left" />
<col class="org-right" />
<col class="org-right" />
</colgroup>
<thead>
<tr>
<th scope="col" class="org-left">Format</th>
<th scope="col" class="org-left">Fine-grained-control</th>
<th scope="col" class="org-left">Initial Effort</th>
<th scope="col" class="org-left">Syntax simplicity</th>
<th scope="col" class="org-left">Editor Support</th>
<th scope="col" class="org-left">Integrations</th>
<th scope="col" class="org-right">Ease-of-referencing</th>
<th scope="col" class="org-right">Versatility</th>
</tr>
</thead>
<tbody>
<tr>
<td class="org-left">Word</td>
<td class="org-left">Word^2</td>
<td class="org-left">Word^3</td>
<td class="org-left">Word^4</td>
<td class="org-left">sqrt(Word)</td>
<td class="org-left">sqrt(sqrt(Word))</td>
<td class="org-right">2</td>
<td class="org-right">2</td>
</tr>
<tr>
<td class="org-left">LaTeX</td>
<td class="org-left">LaTeX^2</td>
<td class="org-left">LaTeX^3</td>
<td class="org-left">LaTeX^4</td>
<td class="org-left">sqrt(LaTeX)</td>
<td class="org-left">sqrt(sqrt(LaTeX))</td>
<td class="org-right">4</td>
<td class="org-right">3</td>
</tr>
<tr>
<td class="org-left">Org Mode</td>
<td class="org-left">Org^2 Mode^2</td>
<td class="org-left">Org^3 Mode^3</td>
<td class="org-left">Org^4 Mode^4</td>
<td class="org-left">sqrt(Org Mode)</td>
<td class="org-left">sqrt(sqrt(Org Mode))</td>
<td class="org-right">4</td>
<td class="org-right">4</td>
</tr>
<tr>
<td class="org-left">Markdown</td>
<td class="org-left">Markdown^2</td>
<td class="org-left">Markdown^3</td>
<td class="org-left">Markdown^4</td>
<td class="org-left">sqrt(Markdown)</td>
<td class="org-left">sqrt(sqrt(Markdown))</td>
<td class="org-right">3</td>
<td class="org-right">1</td>
</tr>
<tr>
<td class="org-left">Markdown + Pandoc</td>
<td class="org-left">(Markdown + Pandoc)^2</td>
<td class="org-left">(Markdown + Pandoc)^3</td>
<td class="org-left">(Markdown + Pandoc)^4</td>
<td class="org-left">sqrt(Markdown + Pandoc)</td>
<td class="org-left">sqrt(sqrt(Markdown + Pandoc))</td>
<td class="org-right">3</td>
<td class="org-right">2</td>
</tr>
</tbody>
</table>
</div>
<div id="outline-container-orgecef6cf" class="outline-3">
<h3 id="orgecef6cf"><span class="section-number-3">5.1.</span> AWK 表格</h3>
<div class="outline-text-3" id="text-5-1">
<table id="orgd426f08" border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup>
<col class="org-left" />
<col class="org-right" />
<col class="org-left" />
<col class="org-left" />
</colgroup>
<tbody>
<tr>
<td class="org-left">aardvark</td>
<td class="org-right">555-5553</td>
<td class="org-left">1200/300</td>
<td class="org-left">B</td>
</tr>
<tr>
<td class="org-left">alpo-net</td>
<td class="org-right">555-3412</td>
<td class="org-left">2400/1200/300</td>
<td class="org-left">A</td>
</tr>
<tr>
<td class="org-left">barfly</td>
<td class="org-right">555-7685</td>
<td class="org-left">1200/300</td>
<td class="org-left">A</td>
</tr>
<tr>
<td class="org-left">bites</td>
<td class="org-right">555-1675</td>
<td class="org-left">2400/1200/300</td>
<td class="org-left">A</td>
</tr>
<tr>
<td class="org-left">camelot</td>
<td class="org-right">555-0542</td>
<td class="org-left">300</td>
<td class="org-left">C</td>
</tr>
<tr>
<td class="org-left">core</td>
<td class="org-right">555-2912</td>
<td class="org-left">1200/300</td>
<td class="org-left">C</td>
</tr>
<tr>
<td class="org-left">fooey</td>
<td class="org-right">555-1234</td>
<td class="org-left">2400/1200/300</td>
<td class="org-left">B</td>
</tr>
<tr>
<td class="org-left">foot</td>
<td class="org-right">555-6699</td>
<td class="org-left">1200/300</td>
<td class="org-left">B</td>
</tr>
<tr>
<td class="org-left">macfoo</td>
<td class="org-right">555-6480</td>
<td class="org-left">1200/300</td>
<td class="org-left">A</td>
</tr>
<tr>
<td class="org-left">sdace</td>
<td class="org-right">555-3430</td>
<td class="org-left">2400/1200/300</td>
<td class="org-left">A</td>
</tr>
<tr>
<td class="org-left">sabafoo</td>
<td class="org-right">555-2127</td>
<td class="org-left">1200/300</td>
<td class="org-left">C</td>
</tr>
</tbody>
</table>
<div class="org-src-container">
<pre class="src src-awk"><span style="color: #A3BE8C;">/foo/</span> { <span style="color: #81A1C1; font-weight: bold;">print</span> $0 }
</pre>
</div>
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<caption class="t-bottom"><span class="table-number">Table 5:</span> 筛选出 foo 匹配的行</caption>
<colgroup>
<col class="org-left" />
<col class="org-right" />
<col class="org-left" />
<col class="org-left" />
</colgroup>
<tbody>
<tr>
<td class="org-left">fooey</td>
<td class="org-right">555-1234</td>
<td class="org-left">2400/1200/300</td>
<td class="org-left">B</td>
</tr>
<tr>
<td class="org-left">foot</td>
<td class="org-right">555-6699</td>
<td class="org-left">1200/300</td>
<td class="org-left">B</td>
</tr>
<tr>
<td class="org-left">macfoo</td>
<td class="org-right">555-6480</td>
<td class="org-left">1200/300</td>
<td class="org-left">A</td>
</tr>
<tr>
<td class="org-left">sabafoo</td>
<td class="org-right">555-2127</td>
<td class="org-left">1200/300</td>
<td class="org-left">C</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="outline-container-org7185bdd" class="outline-3">
<h3 id="org7185bdd"><span class="section-number-3">5.2.</span> 表格自增 ID</h3>
<div class="outline-text-3" id="text-5-2">
<p>
The target scope which at the left of equation , @ means row number and $ means column nubmer of increasing from one.<br />
The expression which at the right of equation , @# stands for the row number of increasing from zero.<br />
</p>
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup>
<col class="org-right" />
<col class="org-left" />
<col class="org-left" />
</colgroup>
<tbody>
<tr>
<td class="org-right">序号</td>
<td class="org-left">字段名</td>
<td class="org-left">名称</td>
</tr>
<tr>
<td class="org-right">1</td>
<td class="org-left">age</td>
<td class="org-left">年龄</td>
</tr>
<tr>
<td class="org-right">2</td>
<td class="org-left">bir</td>
<td class="org-left">出生年月日</td>
</tr>
</tbody>
</table>
<div class="org-src-container">
<pre class="src src-txt">#+tblfm: $1=@#-1
</pre>
</div>
<p>
<code>C-c</code> <code>C-c</code> to execute it<br />
</p>
</div>
</div>
</div>
<div id="outline-container-orgd8dff60" class="outline-2">
<h2 id="orgd8dff60"><span class="section-number-2">6.</span> LaTex 公式</h2>
<div class="outline-text-2" id="text-6">
<p>
\[\begin{aligned}
\cos 3\theta & = \cos (2 \theta + \theta) \\
& = \cos 2 \theta \cos \theta - \sin 2 \theta \sin \theta \\
& = (2 \cos ^2 \theta -1) \cos \theta - (2 \sin \theta\cos \theta ) \sin \theta \\
& = 2 \cos ^3 \theta - \cos \theta - 2 \sin ^2 \theta \cos \theta \\
& = 2 \cos ^3 \theta - \cos \theta - 2 (1 - \cos ^2 \theta )\cos \theta \\
& = 4 \cos ^3 \theta -3 \cos \theta
\end{aligned} \]<br />
</p>
</div>
</div>
<div id="outline-container-org33d9de5" class="outline-2">
<h2 id="org33d9de5"><span class="section-number-2">7.</span> Org 代码</h2>
<div class="outline-text-2" id="text-7">
<p>
代码片段开启行号,修改 `~/.emacs.d/.local/straight/repos/org/lisp/ox-html.el`<br />
</p>
<div class="org-src-container">
<pre class="src src-lisp"><span class="linenr">10: </span> (<span style="color: #81A1C1;">let*</span> ((code-lines (split-string code <span style="color: #A3BE8C;">"\n"</span>))
<span class="linenr">11: </span> (code-length (length code-lines))
<span class="linenr">12: </span> (num-fmt
<span class="linenr">13: </span> (and num-start
<span class="linenr">14: </span> (format <span style="color: #A3BE8C;">"%%%ds "</span>
<span class="linenr">15: </span> (format <span style="color: #A3BE8C;">"%(add-hook 'code-review-mode-hook</span>
<span class="linenr">16: </span><span style="color: #A3BE8C;"> (lambda ()</span>
<span class="linenr">17: </span><span style="color: #A3BE8C;"> ;; include *Code-Review* buffer into current workspace</span>
<span class="linenr">18: </span><span style="color: #A3BE8C;"> (persp-add-buffer (current-buffer))))%%ds: "</span>
</pre>
</div>
</div>
<div id="outline-container-org2f4c779" class="outline-3">
<h3 id="org2f4c779"><span class="section-number-3">7.1.</span> Java 代码</h3>
<div class="outline-text-3" id="text-7-1">
<div class="org-src-container">
<pre class="src src-java"> <span style="color: #78808f;">/**</span>
<span style="color: #78808f;"> * </span><span style="color: #81A1C1;">@param</span><span style="color: #78808f;"> request 调用的请求参数</span>
<span style="color: #78808f;"> * </span><span style="color: #81A1C1;">@param</span><span style="color: #78808f;"> needLog true 需要记录日志 false 不记录日志</span>
<span style="color: #78808f;"> * </span><span style="color: #81A1C1;">@return</span>
<span style="color: #78808f;"> */</span>
<span style="color: #81A1C1;">protected</span> <span style="color: #8FBCBB;">NcApiResponse</span> <span style="color: #88C0D0;">runApply</span><span style="color: #81A1C1;">(</span><span style="color: #8FBCBB;">NcApiRequest</span> <span style="color: #D8DEE9;">request</span>, <span style="color: #8FBCBB;">Boolean</span> <span style="color: #D8DEE9;">needLog</span><span style="color: #81A1C1;">)</span> <span style="color: #81A1C1;">{</span>
<span style="color: #8FBCBB;">NcApiResponse</span> <span style="color: #D8DEE9;">ncApiResponse</span> = <span style="color: #81A1C1;">null</span>;
<span style="color: #81A1C1;">try</span> <span style="color: #B48EAD;">{</span>
<span style="color: #81A1C1;">final</span> <span style="color: #8FBCBB;">NcApiRequest</span> <span style="color: #D8DEE9;">ncApiRequest</span> = executeBefore<span style="color: #A3BE8C;">(</span>request<span style="color: #A3BE8C;">)</span>;
ncApiResponse = executeGetRequest<span style="color: #A3BE8C;">(</span>ncApiRequest<span style="color: #A3BE8C;">)</span>;
<span style="color: #B48EAD;">}</span> <span style="color: #81A1C1;">catch</span> <span style="color: #B48EAD;">(</span>Exception e<span style="color: #B48EAD;">)</span> <span style="color: #B48EAD;">{</span>
afterExecute<span style="color: #A3BE8C;">(</span>needLog, e, request, ncApiResponse<span style="color: #A3BE8C;">)</span>;
<span style="color: #81A1C1;">if</span> <span style="color: #A3BE8C;">(</span>e <span style="color: #81A1C1;">instanceof</span> BizException<span style="color: #A3BE8C;">)</span> <span style="color: #A3BE8C;">{</span>
<span style="color: #81A1C1;">throw</span> <span style="color: #81A1C1;">new</span> <span style="color: #8FBCBB;">BizException</span><span style="color: #5D80AE;">(</span><span style="color: #A3BE8C;">"NC 提示"</span>, <span style="color: #81A1C1;">(</span><span style="color: #B48EAD;">(</span><span style="color: #8FBCBB;">BizException</span><span style="color: #B48EAD;">)</span> e<span style="color: #81A1C1;">)</span>.getErrorMsg<span style="color: #81A1C1;">()</span>, e<span style="color: #5D80AE;">)</span>;
<span style="color: #A3BE8C;">}</span> <span style="color: #81A1C1;">else</span> <span style="color: #A3BE8C;">{</span>
<span style="color: #81A1C1;">throw</span> <span style="color: #81A1C1;">new</span> <span style="color: #8FBCBB;">BizException</span><span style="color: #5D80AE;">(</span><span style="color: #A3BE8C;">"NC 异常"</span>, e.getMessage<span style="color: #81A1C1;">()</span><span style="color: #5D80AE;">)</span>;
<span style="color: #A3BE8C;">}</span>
<span style="color: #B48EAD;">}</span>
<span style="color: #81A1C1;">return</span> ncApiResponse;
<span style="color: #81A1C1;">}</span>
</pre>
</div>
</div>
</div>
<div id="outline-container-org375f825" class="outline-3">
<h3 id="org375f825"><span class="section-number-3">7.2.</span> babel java</h3>
<div class="outline-text-3" id="text-7-2">
<div class="org-src-container">
<pre class="src src-java"><span style="color: #8FBCBB;">List</span><span style="color: #81A1C1;"><</span><span style="color: #8FBCBB;">Integer</span><span style="color: #81A1C1;">></span> <span style="color: #D8DEE9;">a</span> = Arrays.asList<span style="color: #81A1C1;">(</span><span style="color: #B48EAD; font-weight: bold;">1</span>, <span style="color: #B48EAD; font-weight: bold;">2</span><span style="color: #81A1C1;">)</span>;
<span style="color: #81A1C1;">return</span> a;
</pre>
</div>
<p>
<code>C-c</code> <code>C-c</code> to execute it, but export to html will fail when the babel java result generated.<br />
</p>
</div>
</div>
</div>
<div id="outline-container-org8e73ce3" class="outline-2">
<h2 id="org8e73ce3"><span class="section-number-2">8.</span> 图片</h2>
<div class="outline-text-2" id="text-8">
</div>
<div id="outline-container-org8163b7b" class="outline-3">
<h3 id="org8163b7b"><span class="section-number-3">8.1.</span> 引用本地图片</h3>
<div class="outline-text-3" id="text-8-1">
<div id="org5b04820" class="figure">
<p><img src="data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmll
d0JveD0iMCAwIDUyNy42MTcxODc1IDE5OS4wNjgzNTkzNzUiIHdpZHRoPSI1MjcuNjE3MTg3NSIg
aGVpZ2h0PSIxOTkuMDY4MzU5Mzc1Ij4KICA8IS0tIHN2Zy1zb3VyY2U6ZXhjYWxpZHJhdyAtLT4K
ICAKICA8ZGVmcz4KICAgIDxzdHlsZSBjbGFzcz0ic3R5bGUtZm9udHMiPgogICAgICBAZm9udC1m
YWNlIHsKICAgICAgICBmb250LWZhbWlseTogIlZpcmdpbCI7CiAgICAgICAgc3JjOiB1cmwoImh0
dHBzOi8vZXhjYWxpZHJhdy5jb20vVmlyZ2lsLndvZmYyIik7CiAgICAgIH0KICAgICAgQGZvbnQt
ZmFjZSB7CiAgICAgICAgZm9udC1mYW1pbHk6ICJDYXNjYWRpYSI7CiAgICAgICAgc3JjOiB1cmwo
Imh0dHBzOi8vZXhjYWxpZHJhdy5jb20vQ2FzY2FkaWEud29mZjIiKTsKICAgICAgfQogICAgPC9z
dHlsZT4KICA8L2RlZnM+CiAgPGcgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiB0cmFuc2Zvcm09InRy
YW5zbGF0ZSgzODQuMzc1IDEwKSByb3RhdGUoMCAzNi44MDg1OTM3NSAzMy45NTg5ODQzNzUpIj48
cGF0aCBkPSJNMjguOTUgMS4zNSBDMzUuNzkgLTAuMzYsIDQ1LjkzIDAuMzksIDUyLjU5IDMuMTgg
QzU5LjI0IDUuOTcsIDY1LjM2IDEyLjMxLCA2OC44NyAxOC4wOSBDNzIuMzkgMjMuODcsIDc0LjUz
IDMxLjUzLCA3My42NiAzNy44NyBDNzIuNzkgNDQuMjEsIDY4LjQ3IDUxLjM1LCA2My42NiA1Ni4x
MSBDNTguODUgNjAuODYsIDUxLjY1IDY1LCA0NC44MSA2Ni40MiBDMzcuOTYgNjcuODQsIDI5LjI0
IDY3LjEsIDIyLjU3IDY0LjYxIEMxNS45IDYyLjEyLCA4LjU0IDU3LjI4LCA0Ljc4IDUxLjQ3IEMx
LjAyIDQ1LjY2LCAtMC42NSAzNi40MywgMC4wMiAyOS43NyBDMC42OSAyMy4xMSwgMi40OCAxNi41
NCwgOC44MiAxMS41IEMxNS4xNyA2LjQ3LCAzMS43MiAxLjAxLCAzOC4wOSAtMC40NSBDNDQuNDYg
LTEuOSwgNDcgMi4xNSwgNDcuMDUgMi43NiBNMjEuODIgMi43NiBDMjguMTMgLTAuMywgMzguNDQg
LTAuNDQsIDQ1LjU3IDAuOCBDNTIuNyAyLjA1LCA1OS45IDUuMjYsIDY0LjYgMTAuMjEgQzY5LjMx
IDE1LjE3LCA3My40MSAyMy42OCwgNzMuODEgMzAuNTMgQzc0LjIxIDM3LjM3LCA3MC42IDQ1LjMx
LCA2Ni45OSA1MS4yOSBDNjMuMzggNTcuMjYsIDU4LjUzIDYzLjY2LCA1Mi4xNCA2Ni4zNyBDNDUu
NzYgNjkuMDcsIDM2LjA1IDY5LjQzLCAyOC42OCA2Ny41MSBDMjEuMzIgNjUuNiwgMTIuNzUgNTku
OTksIDcuOTQgNTQuODcgQzMuMTMgNDkuNzUsIDAuMTYgNDMuMywgLTAuMTkgMzYuOCBDLTAuNTMg
MzAuMzEsIDIgMjEuNDIsIDUuODcgMTUuODggQzkuNzQgMTAuMzQsIDIwLjAzIDUuNDksIDIzLjAz
IDMuNTcgQzI2LjA0IDEuNjQsIDIzLjg2IDMuODEsIDIzLjkgNC4zMyIgc3Ryb2tlPSIjMDAwMDAw
IiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiPjwvcGF0aD48L2c+PGcgc3Ryb2tlLWxpbmVj
YXA9InJvdW5kIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzMzYuMTY0MDYyNSA2OC41OTU3MDMxMjUp
IHJvdGF0ZSgwIDM2LjgwODU5Mzc1IDMzLjk1ODk4NDM3NSkiPjxwYXRoIGQ9Ik0zNS45NSAtMC43
MyBDNDIuNjIgLTEuMzQsIDUxLjAyIDEuMzEsIDU3LjEyIDUuMzMgQzYzLjIyIDkuMzQsIDcwLjIx
IDE2Ljc2LCA3Mi41NSAyMy4zNiBDNzQuODggMjkuOTcsIDczLjUyIDM4LjUsIDcxLjE0IDQ0Ljk3
IEM2OC43NyA1MS40NCwgNjMuOSA1OC4zNywgNTguMzIgNjIuMTkgQzUyLjc0IDY2LCA0NC45MyA2
Ny45OCwgMzcuNjcgNjcuODUgQzMwLjQxIDY3LjcyLCAyMC43NiA2NS4xOCwgMTQuNzYgNjEuNDIg
QzguNzYgNTcuNjYsIDMuODggNTEuNjcsIDEuNjcgNDUuMjkgQy0wLjU0IDM4LjksIC0wLjU3IDI5
LjU0LCAxLjUgMjMuMTMgQzMuNTggMTYuNzIsIDcuMzUgMTAuNDksIDE0LjEgNi44MSBDMjAuODUg
My4xMywgMzYuMTkgMS44LCA0Mi4wMSAxLjA1IEM0Ny44MiAwLjMsIDQ5IDIsIDQ4Ljk4IDIuMyBN
MjYuOTUgMS42NSBDMzMuMzggLTAuNzEsIDQxLjk0IC0xLjQ3LCA0OC44MiAwLjUzIEM1NS43IDIu