This repository has been archived by the owner on Nov 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index_kr.html
executable file
·1362 lines (1288 loc) · 84.9 KB
/
index_kr.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 class="no-js" lang="ko-KR">
<head>
<!-- DEFAULT META TAGS -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta property="og:title" content="LTO Network">
<meta property="og:description" content="Hybrid Blockchain for Decentralized Workflows">
<meta property="og:image" content="/img/meta.png">
<meta property="og:url" content="http://lto.network/index_ko.html">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lora:400italic,700italic" rel="stylesheet" type="text/css">
<!-- CSS -->
<!--<link rel="stylesheet" id="default-style-css" href="files/css/style.css" type="text/css" media="all"/>-->
<!--<link rel="stylesheet" id="fontawesome-style-css" href="files/css/font-awesome.min.css" type="text/css" media="all"/>-->
<!--link rel="stylesheet" id="ionic-icons-style-css" href="files/css/ionicons.css" type="text/css" media="all"/-->
<!--link rel="stylesheet" id="ionic-icons-style-css" href="files/css/icomoon.css" type="text/css" media="all"/-->
<!--<link rel="stylesheet" id="revolution-slider-main-css" href="files/revolution/css/settings.css" type="text/css"-->
<!--media="all"-->
<!--/>-->
<!--<link rel="stylesheet" id="revolution-slider-layer-css" href="files/revolution/css/layers.css" type="text/css"-->
<!--media="all"-->
<!--/>-->
<!--<link rel="stylesheet" id="revolution-slider-nav-css" href="files/revolution/css/navigation.css" type="text/css"-->
<!--media="all"-->
<!--/>-->
<!--<link rel="stylesheet" id="owlcarousel-css" href="files/css/owl.carousel.css" type="text/css" media="all"/>-->
<!--<link rel="stylesheet" id="lightcase-css" href="files/css/lightcase.css" type="text/css" media="all"/>-->
<!--<link rel="stylesheet" id="isotope-style-css" href="files/css/isotope.css" type="text/css" media="all"/>-->
<!--<link rel="stylesheet" id="mqueries-style-css" href="files/css/mqueries.css" type="text/css" media="all"/>-->
<!-- Step Form Wizard plugin -->
<!--<link rel="stylesheet" href="files/css/step-form-wizard-all.css" type="text/css" media="screen, projection">-->
<!-- nicer scroll in steps -->
<!--<link rel="stylesheet" href="files/css/jquery.mCustomScrollbar.min.css">-->
<link rel="stylesheet" href="files/dist/compress.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="files/css/iso_bootstrap4.0.0min.css">
<!--<link rel="stylesheet" href="files/css/style.css">-->
<!-- FAVICON -->
<link rel="shortcut icon" href="img/favicon.png" />
<!-- DOCUMENT TITLE -->
<title>LTO Network · 탈중앙화 워크플로우를 위한 하이브리드 블록체인</title>
<!-- Popup script -->
<!--script type="text/javascript" src="https://downloads.mailchimp.com/js/signup-forms/popup/embed.js" data-dojo-config="usePlainJson: true, isDebug: false"></script!-->
<!-- End popup script -->
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({'gtm.start':
new Date().getTime(), event: 'gtm.js'});
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
j.async = true;
j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-PBRZ65L');</script>
<!-- End Google Tag Manager -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-62115237-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-62115237-2');
</script>
<!-- Intercom -->
<script>
window.intercomSettings = {
app_id: "g247sp2q"
};
</script>
<script>(function(){var w=window;var ic=w.Intercom;if(typeof ic==="function"){ic('reattach_activator');ic('update',w.intercomSettings);}else{var d=document;var i=function(){i.c(arguments);};i.q=[];i.c=function(args){i.q.push(args);};w.Intercom=i;var l=function(){var s=d.createElement('script');s.type='text/javascript';s.async=true;s.src='https://widget.intercom.io/widget/g247sp2q';var x=d.getElementsByTagName('script')[0];x.parentNode.insertBefore(s,x);};if(w.attachEvent){w.attachEvent('onload',l);}else{w.addEventListener('load',l,false);}}})();</script>
</head>
<body data-gr-c-s-loaded="true" class="page-is-loaded">
<!-- PAGE CONTENT -->
<div id="page-content">
<noscript>
<div class="noscript">
<p>This site requires Javascript to work, please enable Javascript in your browser or use a browser with Javascript support.
<br> See <a href="https://www.enable-javascript.com/">here</a> for help.</p>
</div>
</noscript>
<!-- HEADER -->
<header id="header" class="header-bordered header-transparent transparent-light">
<div class="header-inner clearfix">
<!--LOGO-->
<div id="logo" class="left-float">
<a href="index.html">
<img id="scroll-logo" src="img/logo/icon-purple.png"
srcset="img/logo/icon-purple.png 1x, img/logo/icon-purple.png 2x" alt="Logo Scroll">
<img id="dark-logo" src="img/logo/icon-dark-purple.png"
srcset="img/logo/icon-dark-purple.png 1x, img/logo/icon-dark-purple.png 2x"
alt="Logo Dark">
<img id="light-logo" src="img/logo/icon-white.png"
srcset="img/logo/icon-white.png 1x, img/logo/icon-white.png 2x" alt="Logo Light">
</a>
</div>
<!-- MAIN NAVIGATION -->
<div id="menu" class="right-float clearfix">
<a href="#" class="responsive-nav-toggle">
<span class="hamburger"></span>
</a>
<!--div class="flag-section">
<a href="br"><img src="img/flags/br.png">
</a>
</div!-->
<div class="menu-inner">
<nav id="main-nav">
<ul>
<!-- <li class="">
<a href="#" target="ltodemo">Demo</a>
</li> -->
</ul>
</nav>
</div>
<!-- END .menu-inner -->
</div>
<!-- END #menu -->
</div>
<!-- END .header-inner -->
</header>
<!-- HEADER END-->
<!-- STICKY BOTTOM BAR -->
<!--
<div class="sticky-bottom">
<div class="wrapper">
<div class="socialsBlock purpleSection">
<ul class="sticky-bottom__socials socialmedia-widget size-huge">
<li class="telegram">
<a href="https://t.me/LTONetwork_KR" target="_blank"></a>
</li>
<li class="github">
<a href="https://github.com/legalthings" target="_blank"></a>
</li>
<li class="linkedin">
<a href="https://www.linkedin.com/company/9269038/" target="_blank"></a>
</li>
<li class="twitter">
<a href="https://twitter.com/livecontracts" target="_blank"></a>
</li>
</ul>
</div>
<p><span>Public Sale</span><span id="bottom_countdown"></span></p>
<a class="lto-subscribe sr-button inline button-1-ghost button-medium circled">Register now</a>
</div>
</div>
-->
<!-- STICKY BOTTOM BAR END -->
<!-- HERO -->
<section id="hero"
class="hero-full parallax-section">
<div class="hero-nav hero-nav--mobile">
<div class="hero-nav__menu">
<a href="index_kr.html" class="hero-nav__menu-list hero-nav__menu-list">홈페이지</a>
<a href="https://sale.lto.network" class="hero-nav__menu-list">Token sale</a>
<a href="index_kr.html#discover" class="hero-nav__menu-list">문서</a>
<a href="timeline.html" class="hero-nav__menu-list hero-nav__menu-list">타임라인</a>
<!--a href="clients.html" class="hero-nav__menu-list">Clients</a!-->
<a href="https://github.com/legalthings/lto" class="hero-nav__menu-list" target="_blank">설치</a>
<a href="integrators_kr.html" class="hero-nav__menu-list hero-nav__menu-list">통합자</a>
<a href="index_kr.html#meet-the-team" class="hero-nav__menu-list">팀소개</a>
</div>
<div class="hero-nav__socials">
<a href="https://medium.com/ltonetwork" class="hero-nav__socials-icon" target="_blank">
<i class="fa fa-medium"></i>
</a>
<a href="https://twitter.com/ltonetwork" class="hero-nav__socials-icon" target="_blank">
<i class="icon-twitter"></i>
</a>
<a href="https://www.youtube.com/channel/UCaHcF-xterKYTKSpY4xgKiw" class="hero-nav__socials-icon"
target="_blank">
<i class="icon-youtube-3"></i>
</a>
<a href="https://github.com/legalthings" class="hero-nav__socials-icon" target="_blank">
<i class="ion-social-github"></i>
</a>
<a href="https://t.me/LTOnetwork_KR" class="hero-nav__socials-icon"
target="_blank">
<i class="fa fa-telegram"></i>
</a>
</div>
<div class="hero-nav__socials">
<a href="index.html" class="hero-nav__socials-icon">
<img src="img/flags/en.png" class="flags">
</a>
<a href="index_ru.html" class="hero-nav__socials-icon">
<img src="img/flags/ru.png" class="flags">
</a>
<a href="index_cn.html" class="hero-nav__socials-icon">
<img src="img/flags/cn.png" class="flags">
</a>
</div>
<!--div class="flag-section">
<a href="br"><img src="img/flags/br.png">
</a>
</div!-->
</div>
<div class="hero-nav">
<div class="wrapper">
<div class="hero-nav__logo">
<a href="index_kr.html"><h1>LTO Network</h1></a>
</div>
<div class="hero-nav__menu">
<a href="index_kr.html" class="hero-nav__menu-list hero-nav__menu-list">홈페이지</a>
<a href="index_kr.html#discover" class="hero-nav__menu-list">문서</a>
<a href="timeline.html" class="hero-nav__menu-list hero-nav__menu-list">타임라인</a>
<!--a href="clients.html" class="hero-nav__menu-list">Clients</a!-->
<a href="https://github.com/legalthings/lto" class="hero-nav__menu-list" target="_blank">설치</a>
<a href="integrators_kr.html" class="hero-nav__menu-list hero-nav__menu-list">통합자</a>
<a href="index_kr.html#meet-the-team" class="hero-nav__menu-list">팀소개</a>
</div>
<div class="hero-nav__socials">
<a href="https://medium.com/ltonetwork" class="hero-nav__socials-icon" target="_blank">
<i class="fa fa-medium"></i>
</a>
<a href="https://twitter.com/ltonetwork" class="hero-nav__socials-icon" target="_blank">
<i class="icon-twitter"></i>
</a>
<a href="https://www.youtube.com/channel/UCaHcF-xterKYTKSpY4xgKiw" class="hero-nav__socials-icon"
target="_blank">
<i class="icon-youtube-3"></i>
</a>
<a href="https://github.com/legalthings" class="hero-nav__socials-icon" target="_blank">
<i class="ion-social-github"></i>
</a>
<a href="https://t.me/LTOnetwork_KR" class="hero-nav__socials-icon"
target="_blank">
<i class="fa fa-telegram"></i>
</a>
<a href="index.html" class="hero-nav__socials-icon">
<img src="img/flags/en.png" class="flags">
</a>
<a href="index_ru.html" class="hero-nav__socials-icon">
<img src="img/flags/ru.png" class="flags">
</a>
<a href="index_cn.html" class="hero-nav__socials-icon">
<img src="img/flags/cn.png" class="flags">
</a>
</div>
<div class="hero-nav__bars fa fa-bars"></div>
</div>
</div>
<div id="page-title" class="wrapper align-left">
<div class="info">
<div class="spacer-mini"></div>
<!--<h1>LegalThings One</h1>-->
<h2>
탈중앙화 워크플로우를 위한 하이브리드 블록체인
</h2>
<h3 class="subtitle-1 mobile-h3">
<p>
GDPR/데이터 개인 정보 보호 준수 아래, B2B가 신뢰가 필요없는 자동 프로세스를 사용하여 동등한 위치에서 협업할 수 있도록 지원합니다: 승인이 필요 없는 ad-hoc 개인 체인과, 승인이 필요 없는 공개 블록 체인을 결합합니다.
</p>
</h3>
<div class="hero-img-hdr"></div>
<div class="spacer-small"></div>
<p class="hero__buttons">
<a href="https://sale.lto.network" class="sr-button button-1 button-small button-small-hero circled">
Go to Token Sale
</a>
<a href="https://t.me/joinchat/AJWQTUDKtDlsuGHVFb40eQ" class="sr-button button-1 button-small button-small-hero circled join-telegram">
<img src="img/telegram-logo_purple.svg">
Telegram
</a>
</p>
<!-- <a href="https://app.livecontracts.io" target="ltodemo" class="sr-button button-1 button-medium circled">
Demo
</a> -->
<!--<h4 class="subtitle-1">-->
<!--Get an intoduction to LegalThings One - <a href="#" target="_blank">Watch video</a>-->
<!--</h4>-->
<div class="spacer-small"></div>
<div class="icon-box">
<div class="icon-box-icon">
<i class="ion ion-5x ion-ribbon-b"></i>
</div>
<div class="icon-box-content">
<h5>네덜란드 법무부</h5>
<h5>Blockathon 우승자</h5>
</div>
</div>
<div class="spacer-small"></div>
<!--div class="count-down-wrap hidden">
<h3><strong>Sale ends in</strong></h3>
<div class="count-down" data-end-date=""></div>
</div!-->
</div>
</div>
<!-- Partners & Clients !-->
<div class="hero_customers">
<div class="hero_partners align-center">
<!--<h5>Strategic partners</h5>!-->
</div>
<div class="hero_customers_container">
<div class="hero_customers_container__image">
<a href="https://medium.com/ltonetwork/compliance-matters-legalthings-one-signs-strategic-partnership-with-waves-7dc8d7fc5281" target="_blank"><img style="" src="img/customers/waves.png"/></a>
</div>
<div class="hero_customers_container__image">
<a href="https://medium.com/ltonetwork/nucypher-legalthings-one-epd-made-possible-by-live-contracts-and-re-encryption-db8cbd818ea2" target="_blank"><img style="" src="img/partners/nucypher.png"/></a>
</div>
<div class="hero_customers_container__image">
<a href="https://medium.com/ltonetwork/poa-network-x-legalthings-one-making-blockchains-gdpr-compliant-23d009f7cea1" target="_blank"><img style="" src="img/partners/logo_poa.svg"/></a>
</div>
<div class="hero_customers_container__image">
<a href="https://medium.com/ltonetwork/where-blockchain-meets-internet-of-things-lto-network-x-cpchain-on-supply-chain-and-gdpr-e249f63dcbf1" target="_blank"><img style="" src="img/partners/cpchain_logo.svg"/></a>
</div>
</div>
<div class="hero_customers_clients">
<div class="hero_customers_clients__divider"></div>
<!--<h5>CLIENTS WHO ALREADY USE THE PLATFORM</h5>!-->
<h5>Partners & Clients</h5>
</div>
<div class="hero_customers_container">
<div class="hero_customers_container__image">
<a href="https://merin.nl/en/" target="_blank">
<img src="img/customers/merin_logo_black.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.dekra.com/en-us/home/" target="_blank">
<img style="" src="img/customers/dekra_logo_2.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.cloud9music.nl/" target="_blank">
<img src="img/customers/cloud9_logo_2.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.ilent.nl/" target="_blank">
<img src="img/customers/government_of_the_netherlands_2.jpg"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.stenarealty.com" target="_blank">
<img src="img/customers/stena.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.taxtimbre.com" target="_blank">
<img src="img/customers/taxtimbre.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.cemex.com" target="_blank">
<img src="img/customers/cemex.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.generali.com" target="_blank">
<img style="" src="img/customers/generali.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://firm24.com" target="_blank">
<img src="img/customers/firm24-color.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.osrewoningdossier.nl" target="_blank">
<img src="img/customers/osre.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.ovam.be" target="_blank">
<img src="img/customers/ovam.jpg"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.avr.nl" target="_blank">
<img src="img/customers/avr.jpg"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.indaver.be/" target="_blank">
<img src="img/customers/indaver.jpg"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.ah.nl/over-ah" target="_blank">
<img style="" src="img/customers/ah.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://cms.law" target="_blank">
<img src="img/customers/cms.png"/>
</a>
</div>
<div class="hero_customers_container__image">
<a href="https://www.m7re.eu" target="_blank">
<img src="img/customers/mseven.jpg"/>
</a>
</div>
</div>
<!-- !-->
<!-- END #page-title -->
</section>
<!-- HERO -->
<!-- PAGEBODY -->
<div id="what-is-legal" class="purpleSectionBg general-advantages row-section text-light">
<div class="wrapper clearfix">
<div class="column one-half">
<h4 class="" style="font-style: italic;"><strong>"신뢰의 강도는 가장 약한 고리와 같다"</strong></h4>
<div class="spacer-small"></div>
<p>LTO 네트워크의 이야기는 2014년부터 시작됩니다. 문서 엔진으로 시작한 MVP는 점차 워크플로우 엔진으로 발전했습니다. 시간이 지나면서, 고객들은 점점 더 커지고 프로세스는 더욱 포괄적이 되었습니다. 이 과정에서 우리는 시스템의 사용자들이 신뢰할 수 있는 제3자가 되었습니다.</p>
<p>만약 저장된 데이터가 조작된 경우, 이는 조직에게 심각한 영향을 줄 수 있습니다. 우리는 신뢰에만 의지해서는 안된다는 것을 깨달았습니다. 관료주의는 때로는 도움이 되지만, 그것은 효율을 저하시킵니다.</p>
<p>블록체인 기술이 등장함으로 생산성에 영향을 주지 않고 이 모든 문제를 동시에 해결할 수 있는 잠재력을 제공할 수 있게 되었습니다.</p>
</div>
<div class="column one-third last-col">
<img src="img/about-us.png" class="about-us">
</div>
</div>
<div class="wrapper clearfix">
<blockquote class="mission round-border">우리의 임무는 관료주의, 사기, 친족징용주의에 대항하는 기술을 제공하는 것입니다.
많은 조직, 산업, 정부들을 괴롭히는 문제에 관련하여, 우리는 사생활과 투명성이 상호 배타적이지 않다는 것을 증명하려고 합니다.</blockquote>
</div>
</div>
<div class="spacer-small"></div>
<div class="row-section wrapper" id="how-workflows">
<h2 class="align-center">
<strong>분산형 워크플로우 자동화</strong>
</h2>
<div class="spacer-small"></div>
<div class="column one-half">
<img src="img/decentralized-workflow.png" class="sketch-workflows">
</div>
<div class="column one-half last-col">
<p>
모든 조직은 워크플로우의 규칙을 정의할 수 있는 수많은 비즈니스 프로세스를 실행하며, 흐름도 또는 BPMN 다이어그램으로 시각화된다. LTO를 사용하면 워크플로우가 결정론적 FSM(extended Finite State Machine)으로 표현된다.
</p>
<p>
블록체인은 조직이 분산형 방식으로 워크플로우를 실행하여, 각 당사자가 자체 노드를 사용하여 참여할 수 있도록 지원한다. 협업 당사자는 문서, 링크된 데이터 또는 (쌍방향의) 영지식증명과 같은 온체인 또는 오프체인 정보를 공유할 수 있다.
</p>
<p>
이러한 분산형 워크플로우를 라이브 계약이라고 한다. 스마트 계약과 마찬가지로, 라이브 계약은 블록체인의 로직을 정의하는 다이나믹한 방법을 제공한다. 그러나 라이브 계약의 목적은 단순히 상태를 결정하는 것이 아니라, 워크플로우의 단계에 대해 사람과 컴퓨터에 적극적으로 알리는 것이다.
</p>
</div>
</div>
<!-- Miniature private blockchain section !-->
<div id="architecture">
<div class="row-section wrapper">
<div class="clearfix">
<h2 class="align-center">
<strong>소형 개인 블록체인</strong>
</h2>
<div class="spacer-medium"></div>
<div class="column two-third">
<div class="column one-half last-col align-center">
<h5>수평 확장 가능</h5>
<p>노드는 여러 라이브 계약을 동시에 보유 및 처리할 수 있다. 모든 라이브 계약이 개인 체인을 형성하므로, 노드가 더 많은 VMs를 회전시켜 더 많은 부하를 처리할 수 있다.</p>
<!--/div!-->
<!--div class="column one-half last-col"!-->
<h5>데이터 개인 정보 및 GDPR</h5>
<p>특정 프로세스의 참가자 노드만이 특정 개인 체인에 액세스할 수 있다. 법에 따라 필요한 경우 모든 관련 데이터가 포함된 전체 워크플로우를 지울 수 있다. <br> <a href="https://medium.com/legalthingsone/legalthings-one-blockchain-gdpr-made-possible-68a5ce09e7ca" target="_blank">더 알아보기.</a></p>
</div>
<div class="column one-half next-row last-col align-center">
<img src="img/LT-2-FINAL.png" class="sketch-chains">
</div>
</div>
<div class="column one-third last-col align-center">
<h5>P2P 커뮤니케이션</h5>
<p>전체 네트워크로 이벤트를 방송하는 대신, 노드는 서로 직접 이벤트를 송신한다. 이렇게 하면 복잡성과 지연 시간이 줄어든다. 공공 허가 없는 체인은 동기화에 사용되며, 소멸되지 않는 Proof-of-Existence를 보장한다.</p>
<!--/div!-->
<!--div class="column one-half next-row last-col"!-->
<h5>이벤트 유효성 검사</h5>
<p>각 이벤트는 워크플로우에 정의된 규칙과 조건에 따라 검증된다. 허용되지 않는 조치는 다른 모든 참가자가 거부한다.</p>
</div>
</div>
<div class="spacer-medium"></div>
<!-- Inside a node section !-->
<div class="clearfix">
<h2 class="align-center">
<strong>노드 내부</strong>
</h2>
<!--h5 class="subtitle-2">A node consist of an orchestrated cluster of Docker containers, configured to scale to any size.</h5!-->
<div class="spacer-small"></div>
<div class="column one-half">
<h5>사용자 인터페이스</h5>
<p>
LTO를 사용하면 각 노드가 JSON REST API를 제공하므로, 기존 시스템과 어플리케이션을 프로세스에 손쉽게 연결할 수 있다.
</p>
<h5>이벤트 서비스</h5>
<p>
어플리케이션 계층의 핵심은 이벤트 서비스이다. 이것은 들어오는 모든 이벤트를 처리하여, 어플리케이션 서비스에 추가 처리를 위임한다.
</p>
<h5>어플리케이션 서비스</h5>
<p>
어플리케이션 층에는 특정 작업을 수행하도록 설계된 워크플로우 관리자와 같은 여러 서비스가 포함되어 있다. 어플리케이션 계층에 사용자 지정 서비스를 추가할 수 있다.
</p>
<h5>개인 블록체인에 대한 메시지 대기열</h5>
<p>디커플링은 연결이 불량하거나 부하가 높은 경우에도 안정적인 시스템을 보장한다. 메시지 대기열은 개인 체인의 통신 계층이다. 두 가지 간단한 서비스가 모든 인바운드 및 아웃바운드 사건을 관리한다.
</p>
</div>
<div class="column one-half last-col">
<img src="img/inside-node.png" class="sketch-architecture">
</div>
</div>
</div>
</div>
<!-- Anchoring Section -->
<div class="row-section wrapper">
<div class="clearfix">
<h2 class="align-center">
<strong>승인이 필요없는 공개 블록체인에 동기화</strong>
</h2>
<h5 class="subtitle-2">
대부분의 공공 블록체인 경우 주로 스마트 계약과 스크립트로 작성된 논리에 초점을 맞추고 있어 동기화와 같이 단순한 트랜잭션에 속도가 느리고, 비효율적이며, 비용이 너무 많이 든다. 우리는 비트코인의 SegWit과 유사한 논리를 따르는데, 이는 모든 데이터가 모든 노드에서 영구적으로 보관되어야 하는 것은 아니다.
</h5>
<div class="spacer-medium"></div>
<div class="column two-third">
<div class="column one-half align-center">
<h5>3초 내에 동기화됨</h5>
<p>
NG 프로토콜을 사용하여, 네트워크는 매 3초마다 트랜잭션을 사전 승인한다. 다른 동기화 솔루션에서는, 최대 20분 동안 기다렸다가 응답해야 한다.
</p>
</div>
<div class="column one-half last-col align-center">
<h5>요약 블록</h5>
<p>
다른 공용 블록체인 경우, 필요한 디스크 공간이 많은 경향이 있기 때문에 제네시스에서 동기화하면 며칠이 걸릴 수 있다. LTO를 사용하면 매일 요약 블록이 생성되며, 이후 노드가 개별 트랜잭션을 삭제할 수 있다.
</p>
</div>
</div>
<div class="column one-third last-col align-center">
<h5>단순 JSON REST API</h5>
<p>
모든 LTO 노드에는 JSON REST API가 있다. 응용프로그램에 동기화를 통합하는 것은 SHA 해시, 문서 또는 데이터를 작성하고 단일 HTTP 요청으로 게시하는 것만큼 간단하다.
</p>
</div>
</div>
<div class="align-center">
<div class="spacer-small"></div>
<a href="http://lto-anchor.eu-west-1.elasticbeanstalk.com/api-docs/" class="sr-button button-1 button-small circled">REST API 동기화 시도</a>
</div>
</div>
<!--div class="spacer-medium"></div>
<div class="wrapper" id="our-clients">
<h2 class="align-center">
<strong>Our Clients</strong>
</h2>
<blockquote class="clients align-center"><p>
LegalThings has been servicing clients from various industries since 2014.
Since 2018, we’ve been rolling out real-world decentralized workflows on blockchain to multinationals, governments and standalone projects.</p>
<div class="spacer-mini"></div><p>
LegalThings One helps your organization drive transparency, efficiency and value with blockchain technology through free DIY-solutions and Enterprise licences.</p>
<div class="spacer-mini"></div><p><strong>Want to learn how we can help you kick-start your organizational blockchain journey?
</strong>
</p></blockquote>
<div id="customer-logos"></div>
</div>
</div-->
<!--hr class="pretty-hr">
<div class="spacer-small"></div>
<div class="row-section wrapper" id="economics">
<h2 class="align-center">
<strong>Economic model</strong>
</h2>
<div class="spacer-small"></div>
<div class="column one-half align-center">
<div class="resp-container">
<iframe class="resp-iframe" src="https://docs.google.com/presentation/d/e/2PACX-1vT_dxnXk8Dgj2VHY2NKC5TqDYHSMoIH0D7T0pjAj7ygGGIxMJBQjagDOc_-adw8CW86Qp0miQ3c3blK/embed?start=false&loop=true&delayms=5000" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe>
</div>
</div>
<div class="column one-half last-col">
<div class="spacer-small"></div>
<p>
LTO's economic model allows clients and partners to run their solutions <strong>net zero</strong>, rather than constantly injecting money for services such as anchoring and paying monthly fees.
</p>
<p>
We developed a new Leased Proof of Importance consensus algorithm, a reward model derived from NEM and Waves aimed towards improved decentralization. This variation on Proof-of-Stake introduces a raffle factor that skews the probability of validator rewards, favoring active ‘important’ network users, called ‘Joint Business Builders’.
</p>
</div>
</div!-->
<!-- Whitepaper section !-->
<div class="spacer-small"></div>
<hr class="pretty-hr">
<div class="spacer-small"></div>
<div class="" id="discover">
<div class="wrapper">
<h2 class="align-center">
<strong>문서</strong>
</h2>
<div class="spacer-small"></div>
<div class="discover-block">
<div class="discover-block__element round-border">
<div class="discover-block__image">
<img src="img/technical_whitepaper.png" class="blog-media__icon" alt="Visionary whitepaper">
</div>
<div class="discover-block__info">
<div class="discover-block__title">
비전 백서
</div>
<div class="discover-block__text">
블록체인(Blockchain)의 대규모 채택은 어떤 방법이며, 우리의 플랫폼 역할은 무엇입니까?
<br>
<div class="lang">
<a href="documents/LTO%20Network%20-%20Visionary%20Paper.pdf" target="_blank"><img src="img/flags/en.png" class="flags-doc"></a>
<a href="documents/RU-LTO%20Network%20-%20Visionary%20Paper.pdf" target="_blank"><img src="img/flags/ru.png" class="flags-doc"></a>
<a href="documents/CN-LTO%20Network%20-%20Visionary%20Paper.pdf" target="_blank"><img src="img/flags/cn.png" class="flags-doc"></a>
<a href="documents/KR-LTO%20Network%20-%20Visionary%20Paper.pdf" target="_blank"><img src="img/flags/kr.png" class="flags-doc"></a>
</div>
</div>
</div>
</div>
<div class="discover-block__element round-border">
<div class="discover-block__image">
<img src="img/live_contract.png" class="blog-media__icon" alt="Technical paper">
</div>
<div class="discover-block__info">
<div class="discover-block__title">
기술 백서
</div>
<div class="discover-block__text">
라이브 계약 및 통합 알고리즘과 같은 기술 개념에 대한 자세한 설명.
<br>
<div class="lang">
<a href="documents/LTO%20Network%20-%20Technical%20Paper.pdf" target="_blank"><img src="img/flags/en.png" class="flags-doc"></a>
<a href="documents/RU-LTO%20Network%20-%20Technical%20Paper.pdf" target="_blank"><img src="img/flags/ru.png" class="flags-doc"></a>
<a href="documents/CN-LTO%20Network%20-%20Technical%20Paper.pdf" target="_blank"><img src="img/flags/cn.png" class="flags-doc"></a>
<a href="documents/KR-LTO%20Network%20-%20Technical%20Paper.pdf" target="_blank"><img src="img/flags/kr.png" class="flags-doc"></a>
</div>
</div>
</div>
</div>
<div class="discover-block__element round-border">
<div class="discover-block__image">
<img src="img/dtm.png" class="blog-media__icon" alt="Token Economy">
</div>
<div class="discover-block__info">
<div class="discover-block__title">
토큰 이코노미 백서
</div>
<div class="discover-block__text">
고유한 토큰 모델은 분산 및 플랫폼의 능동적 사용을 장려한다.
<br>
<div class="lang">
<a href="documents/LTO%20Network%20-%20Token%20Economy.pdf" target="_blank"><img src="img/flags/en.png" class="flags-doc"></a>
<a href="documents/RU-LTO%20Network%20-%20Token%20Economy.pdf" target="_blank"><img src="img/flags/ru.png" class="flags-doc"></a>
<a href="documents/CN-LTO%20Network%20-%20Token%20Economy.pdf" target="_blank"><img src="img/flags/cn.png" class="flags-doc"></a>
<a href="documents/KR-LTO%20Network%20-%20Token%20Economy.pdf" target="_blank"><img src="img/flags/kr.png" class="flags-doc"></a>
</div>
</div>
</div>
</div>
</div>
<div class="discover-bottom text-light">
<div class="discover-bottom__text">
<div class="discover-bottom__title">
좀 더 알고 싶나요?
</div>
<div class="discover-bottom__subtitle">
우리에게 연락하세요.
</div>
</div>
<div class="discover-bottom__buttons">
<a href="https://t.me/LTOnetwork_KR" class="sr-button button-1 button-medium circled join-telegram"><img src="img/telegram-logo_purple.svg">
우리 TELEGRAM에 참여하세요
</a>
</div>
</div>
</div>
</div>
<div class="row-section wrapper" id="clients">
<h2 class="align-center">
<strong>우리의 고객들</strong>
</h2>
<div class="spacer-small"></div>
<div class="column one-half">
<div id="customer-logos"></div>
</div>
<div class="column one-half last-col">
<div class="spacer-mini"></div>
<p>
LTO 네트워크는 2014년부터 다양한 업계의 고객에게 서비스를 제공하고 있습니다. 1년 이상 우리는 기업, 정부 및 독립 실행형 프로젝트를 위한 실제 분산형 워크플로우 애플리케이션에 초점을 맞춰 왔습니다.
</p>
<p>
LTO 네트워크는 조직이 투명성과 효율성을 높이는 동시에 법적 규정 준수를 유지하고 운영 비용을 절감할 수 있도록 지원합니다.
</p>
<p><strong>
귀사의 블록체인 여행을 시작하는 데 우리가 어떻게 도움이 되는지 알고 싶으십니까? <br> <a href="mailto:[email protected]" target="_blank">연락해요!</a>
</strong></p>
</div>
</div>
<hr class="pretty-hr">
<!--div class="purple-divider fullwidth-section text-light top-quotes-block parallax-section" data-parallax-image="img/quote_pic.jpg"></div!-->
<div class="row-section wrapper" id="in-the-press">
<h2 class="align-center">
<strong>언론</strong>
</h2>
<div class="spacer-mini"></div>
<div id="media-logos"></div>
<div class="media-slider"></div>
<div class="spacer-small"></div>
<!-- Medium section-->
<div class="bootstrap">
<section class="section medium" id="blog">
<div class="container">
<!---->
<div class="section-content" id="blogContent">
<div class="row" id="jsonContent"></div>
</div>
<!-- /#blogContent-->
<div class="discover-bottom__buttons align-center">
<a href="https://medium.com/legalthingsone" class="sr-button button-1 button-medium circled join-telegram">
<img src="img/medium-logo_purple.svg">
자세히 읽기
</a>
</div>
<!--div class="align-center">
<div class="button-container button-slide-vertical">
<div class="slider-vertical">
<a href="https://medium.com/legalthingsone" class="button">
<i class="fa fa-medium front"></i>
<i class="back">Read more</i>
</a>
</div>
</div>
</div!-->
<!--div class="align center text-center sr-button button-1 button-medium circled"><a class="btn btn-dark" id="loadBlogPosts" href="https://medium.com/legalthingsone">View All<span class="fa fa-angle-double-right"></span></a></div>!-->
<!-- /.container-->
</section>
</div>
<!-- Medium section-->
</div>
<!-- FIRST ROW TEAM !-->
<hr class="pretty-hr">
<div class="team-container" id="meet-the-team">
<div class="wrapper row-section team-section">
<h2 class="align-center">
<strong>팀소개</strong>
</h2>
<div class="spacer-medium"></div>
<div class="column-section clearfix founders">
<div class="column one-fourth team-member align-center">
<a href="https://www.linkedin.com/in/rschmitz/" class="team-image" target="_blank">
<img src="img/team/round_version/rick_schmitz.png" alt="Rick Schmitz - LTO Network">
<!--img class="one" src="img/team/round_version/rick_schmitz.png" alt="Rick Schmitz - LegalThings"!-->
<!--img class="two" src="img/team/round_version/rick_schmitz_b.png" alt="Rick Schmitz - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Rick Schmitz</strong>
</h5>
<h6 class="subtitle-2">CEO</h6>
<div class="team-bio">
Rick은 PwC와 Deloitte 양쪽에서 사모 주식회사/M&A 세금 변호사였다. Rick은 성공한 네덜란드 스타트업 Firm24와 LegalThings의 설립자이기도 합니다.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/rschmitz/" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="column one-fourth team-member align-center">
<a href="https://www.linkedin.com/in/arnolddaniels/" class="team-image" target="_blank">
<img src="img/team/round_version/arnold_daniels.png" alt="Arnold Daniels - LTO Network">
<!--img class="one" src="img/team/round_version/arnold_daniels.png" alt="Arnold Daniels - LegalThings"!-->
<!--img class="two" src="img/team/round_version/arnold_daniels_b.png" alt="Arnold Daniels - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Arnold Daniels</strong>
</h5>
<h6 class="subtitle-2">Lead Architect</h6>
<div class="team-bio">
ARNOLD는 20년 이상의 경험을 쌓은 소프트웨어 엔지니어이며 자격 있는 AWS 설계자입니다. Arnold는 Cloud9 IDE(2016년 Amazon에 의해 인수됨)의 소프트웨어 엔지니어였습니다.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/arnolddaniels/" target="_blank"></a>
</li>
<li class="github">
<a href="https://github.com/jasny" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="column one-fourth team-member align-center">
<a href="https://www.linkedin.com/in/migchelsen/" class="team-image" target="_blank">
<img src="img/team/round_version/martijn_migchelsen.png" alt="Martijn Migchelsen - LTO Network">
<!--img class="one" src="img/team/round_version/martijn_migchelsen.png" alt="Martijn Migchelsen - LegalThings"!-->
<!--img class="two" src="img/team/round_version/martijn_migchelsen_b.png" alt="Martijn Migchelsen - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Martijn Migchelsen</strong>
</h5>
<h6 class="subtitle-2">CFO & COO</h6>
<div class="team-bio">
Martijn은 PwC에서 기업 재무 고문으로 근무했으며 기술 팀의 일원이었습니다. 그는 또한 LegalThings 뿐만 아니라 성공한 네덜란드 스타트업 회사24의 공동 설립자입니다.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/migchelsen/" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="column one-fourth team-member align-center last-col">
<a href="https://www.linkedin.com/in/svenstam/" class="team-image" target="_blank">
<img src="img/team/round_version/sven_stam.png" alt="Sven Stam - LTO Network">
<!--img class="one" src="img/team/round_version/sven_stam.png" alt="Sven Stam - LegalThings"!-->
<!--img class="two" src="img/team/round_version/sven_stam_b.png" alt="Sven Stam - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Sven Stam</strong>
</h5>
<h6 class="subtitle-2">CTO</h6>
<div class="team-bio">
Sven은 15년 이상의 경험을 가지고 있습니다. 그는 분산 시스템 전문 인공지능학 박사 학위가 있습니다.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/svenstam/" target="_blank"></a>
</li>
<li class="github">
<a href="https://github.com/sven4ask" target="_blank"></a>
</li>
</ul>
</div>
</div>
</div>
<!-- END First Row TEAM !-->
<!-- TEAM Second Row !-->
<div class="spacer-small"></div>
<div class="column-section clearfix founders">
<div class="column one-fourth team-member align-center">
<a href="https://www.linkedin.com/in/martijnbroersma/" class="team-image" target="_blank">
<img src="img/team/round_version/martijn_broersma.png" alt="Martijn Broersma - LTO Network">
<!--img class="one" src="img/team/round_version/sven_stam.png" alt="Sven Stam - LegalThings"!-->
<!--img class="two" src="img/team/round_version/sven_stam_b.png" alt="Sven Stam - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Martijn Broersma</strong>
</h5>
<h6 class="subtitle-2">VP 운영</h6>
<div class="team-bio">
Martijn은 이전에 Firm24에서 변호사로 일했었습니다. 그는 복잡한(법적) 구조와 워크플로우를 자동화하는 데 전문적이며 LegalThings의 일상적인 운영을 감독합니다.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/martijnbroersma/" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="column one-fourth team-member align-center">
<a href="https://www.linkedin.com/in/ivangolovko/" class="team-image" target="_blank">
<!--img src="img/team/round_version/ivan.png" alt="Ivan Golovko - LegalThings"!-->
<img src="img/team/round_version/ivan.png" alt="Ivan Golovko - LTO Network">
<!--img class="one" src="img/team/round_version/ivan.png" alt="Ivan Golovko - LegalThings"!-->
<!--img class="two" src="img/team/round_version/ivan_b.png" alt="Ivan Golovko - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Ivan Golovko</strong>
</h5>
<h6 class="subtitle-2">전략 & 투자관계</h6>
<div class="team-bio">
IVAN은 Distributed Fund and Distributed Alliance 공동 설립자이자 VITE의 고문이기도 합니다. ICODrops의 전 CMO였습니다. Ivan은 제품 포지셔닝, 커뮤니티 관리 및 투자자 관계에 대한 경험을 가지고 있습니다.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/ivangolovko/" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="column one-fourth team-member align-center">
<a href="https://www.linkedin.com/in/moesjarraf/" class="team-image" target="_blank">
<img src="img/team/round_version/moesjarraf_jahangier.png" alt="Moesjarraf Jahangier - LTO Network">
<!--img class="one" src="img/team/round_version/arnold_daniels.png" alt="Arnold Daniels - LegalThings"!-->
<!--img class="two" src="img/team/round_version/arnold_daniels_b.png" alt="Arnold Daniels - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Moesjarraf Jahangier</strong>
</h5>
<h6 class="subtitle-2">선임 백엔드 개발자</h6>
<div class="team-bio">
Moesjarraf는 LegalThings 개발을 주도하는 주요 엔진 중 하나입니다. 그는 LegalThings 노드 주변 서비스의 많은 부분을 만들었습니다.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/moesjarraf/" target="_blank"></a>
</li>
<li class="github">
<a href="https://github.com/moesjarraf" target="_blank"></a>
</li>
</ul>
</div>
</div>
<div class="column one-fourth team-member align-center last-col">
<a href="https://www.linkedin.com/in/yevhen-horbachov-0b601756/" class="team-image" target="_blank">
<img src="img/team/round_version/yevhen_horbachov.png" alt="Yevhen Horbachov - LTO Network">
<!--img class="one" src="img/team/round_version/martijn_migchelsen.png" alt="Martijn Migchelsen - LegalThings"!-->
<!--img class="two" src="img/team/round_version/martijn_migchelsen_b.png" alt="Martijn Migchelsen - LegalThings"!-->
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Yevhen Horbachov</strong>
</h5>
<h6 class="subtitle-2">리드 프런트 엔드 개발자</h6>
<div class="team-bio">
YEVHEN은 유럽특허청의 프런트 엔드 팀을 이끌었던 15년 이상의 개발 경험을 가지고 있으며, 현재 그는 LegalThings 프런트엔드 개발을 담당하고 있습니다.
</div>
<ul class="socialmedia-widget hover-fade-1">
<li class="linkedin">
<a href="https://www.linkedin.com/in/yevhen-horbachov-0b601756/" target="_blank"></a>
</li>
<li class="github">
<a href="https://github.com/KillaBee1985" target="_blank"></a>
</li>
</ul>
</div>
</div>
</div>
<!-- END TEAM Second Row !-->
<!-- Rest of the Team !-->
<div class="show-more">
<!--Div to expand on click !-->
<div class="column-section clearfix">
<div class="column one-fourth team-member align-center">
<a class="team-image" href="https://www.linkedin.com/in/sarfaraaz-jahangier-442a38135/" target="_blank">
<img src="img/team/round_version/sarfaraaz_jahangier.png" alt="Sarfaraaz Jahangier - LTO Network">
</a>
<div class="team-content">
<h5 class="team-name uppercase">
<strong>Sarfaraaz Jahangier</strong>
</h5>
<h6 class="subtitle-2">Developer</h6>
<ul class="socialmedia-widget hover-fade-1">