-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvie.json
More file actions
1963 lines (1963 loc) · 128 KB
/
Copy pathvie.json
File metadata and controls
1963 lines (1963 loc) · 128 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"lang": "vi",
"links": {
"termsAndConditions": "Các Điều Khoản & Điều Kiện",
"privacyPolicy": "Chính Sách Quyền Riêng Tư",
"subscribe": "Subscribe",
"commitForPresale": "JOIN PRESALE",
"commitForPresaleHeader": "JOIN PRESALE WITH 30% BONUS",
"commitWith30bonus": "JOIN PRESALE WITH 30% BONUS",
"commitWith10bonus": "Join pre-ico with 10% bonus",
"commitWith7bonus": "Join pre-ico with 7% bonus",
"commitWith5bonus": "Join pre-ico with 5% bonus",
"commitWith3bonus": "Join pre-ico with 3% bonus",
"commit": "Join ico",
"tokenSale": "BÁN TOKEN",
"whitepaper": "Sách trắng",
"documents": "Các tài liệu",
"stateOfMarket": "State of market",
"howItWorks": "Phương thức hoạt động của nền tảng",
"tokenDistribution": "PHÂN PHỐI TOKEN",
"roadmap": "Lộ trình",
"media": "Media",
"ourTeam": "NHÓM",
"about": "about",
"myProfile": "My profile",
"myAccount": "My account",
"mainPage": "Main page",
"community": "Community",
"logout": "Logout",
"signin": "đăng nhập",
"cryptoKittie": "Kitty giveaway",
"signUpAndSubscribe": "Join pre-sale with 20% bonus",
"tryBeta": "Nền tảng Beta",
"tryPlatformBeta": "Thử bản beta của nền tảng",
"joinTokenSale": "Tham gia đợt bán token",
"buyTokens": "MUA TOKEN",
"shorter": "Shorter",
"whitePaper": "White paper",
"smartContract": "Smart contract",
"becomeInfluencer": "Become influencer",
"becomeAdvertiser": "Become advertiser"
},
"presaleLive": {
"headingLarge": "Presale is now live!",
"heading": "Join now and get bonus up to 30%",
"joinNow": "Join now"
},
"countdown": {
"title": "Token presale <span>KẾT THÚC TRONG</span>",
"preICO": "PRE-ICO IS LIVE!",
"preIcoStartsIn": "ICO Pre-sale starts in",
"icoStartsIn": "ICO starts <b>february 9</b>",
"icoStarted": "BÁN TOKENS LÀ MỞ!",
"tokenSaleIsOpen": "Public token sale<br> is open now!",
"days": "Ngày",
"hours": "GIỜ",
"minutes": "Phút",
"seconds": "giây",
"bonus%%%EndsIn": "Bonus %%% kết thúc trong"
},
"documents": {
"heading": "Các tài liệu",
"documents": [
{
"id": "SMM_Shorter",
"title": "Ngắn gọn hơn",
"languages": [
"eng",
"rus"
]
},
{
"id": "SMM_White-Paper",
"title": "Sách trắng",
"languages": [
"eng",
"rus"
]
},
{
"id": "SMM_Marketing-Research",
"title": "Nghiên cứu thị trường",
"languages": [
"eng"
]
},
{
"id": "SMM_SEC-Howey-Test",
"title": "Bài test Sec howey",
"languages": [
"eng"
]
}
]
},
"footer": {
"company": "Company",
"aboutUs": "About us",
"careers": "Careers",
"contactUs": "liên hệ với chúng tôi",
"solutions": "Solutions",
"resources": "Resources",
"tipsForInfluencers": "Tips for influencers",
"tipsForAdvertisers": "Tips for advertisers",
"faqAndSupport": "FAQ & Support",
"blog": "Blog",
"webinars": "Webinars",
"aboutBlockchain": "About blockchain",
"copyright": "Copyright © 2017 by SocialMedia.Market. All rights reserved."
},
"popup": {
"messages": {
"invalidEmail": "Please, make sure your email is valid",
"alreadySubscribed": "You've subscribed already. Please, check your email for confirmation.",
"fillInTheField": "Please, fill in the field",
"success": "You've successfully subscribed!",
"choosePaymentMethod": "Please, choose payment method"
},
"subscribe": {
"title": "Tham gia đợt bán token",
"description": "Please, enter your email below to receive notification about the start of the Social Media Token sale",
"email": "Email",
"name": "Name",
"receive": "Receive Push Notification about the start of the sale",
"toCalendar": "Add Event to your Google Calendar",
"thankYou": {
"title": "Thank you!",
"description": "Thank you for subscription on SocialMedia.Market news and Public Token Sale!",
"telegramChatDescription": "If you have any questions, please reach out to us on our Telegram chat:",
"joinTelegram": "Join telegram chat"
}
},
"presale": {
"title": "Join token pre-sale",
"description": "Join Token Presale with special bonuses: <br/> • contribution less than 100 ETH +20% SMT <br/> • contribution more than 100 ETH +30% SMT",
"firstName": "First name",
"lastName": "Last name",
"email": "Email",
"industry": "Industry",
"chooseField": "Choose your field",
"chooseAmount": "Choose amount",
"industryOptions": [
"Private investor",
"Fund representative",
"Brand",
"Marketing agency",
"Influencer"
],
"amountOptions": [
"less than 25 000",
"25 000 - 50 000",
"50 000 - 100 000",
"100 000 - 300 000",
"300 000+"
],
"paymentMethod": "Prefered payment method",
"estimated": "Estimated amount range (in US Dollars)",
"mandatory": "Mandatory fields",
"confirm": "Hereby I confirm that I'm not a citizen or resident of the United States of America or Singapore or acting on behalf of a resident of the United States of America or Singapore",
"receive": "Receive Push Notification about the start of the sale",
"toCalendar": "Add Event to your Google Calendar",
"join": "Join white list",
"thankYou": {
"title": "Thank you!",
"description": "Thank you for joining SocialMedia.Market token presale White List. <br/> We will send you all necessary details on your email.",
"telegramChatDescription": "If you have any questions, please reach out to us on our Telegram chat:",
"joinTelegram": "Join telegram chat"
}
}
},
"firstScreen": {
"heading": "Kiếm tiền với sự nổi tiếng của bạn",
"subheading": "Sàn thương mại quảng cáo của người có ảnh hưởng ĐƯỢC PHÂN CẤP",
"joinTokenSale": "Tham gia đợt bán token",
"projectRatings": "đánh giá dự án",
"subscribe": "Subscribe to news",
"description": "CỘNG ĐỒNG CỦA CHÚNG TÔI",
"joinPresale": "GIAI ĐOẠN TRƯỚC BÁN:",
"technicalPartner": "Technical partner",
"mediaPartner": "Media partner",
"joinBounty": "Join<br> bounty <span>campaign</span>",
"backers": "Backers",
"tokenSold": "TOKEN ĐÃ BÁN TRONG PRE-ICO",
"fundsRaised": "TIỀN THU ĐƯỢC",
"ourPartners": "CÁC ĐỐI TÁC",
"projectInfo": "THÔNG TIN DỰ ÁN",
"referralProgram": "CHƯƠNG TRÌNH GIỚI THIỆU",
"bountyCampaign": "CHƯƠNG TRÌNH SĂN THƯỞNG",
"betaProduct": "Nền tảng Beta",
"USAResidentsCannotParticipate": "Công dân Hoa Kỳ và cư dân không được phép tham gia",
"softCapReached": "GIỚI HẠN MỀM ĐÃ ĐẠT!"
},
"landing":{
"slogan":{
"header":"Choose the way to your triumph",
"body": "Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque."
},
"become":{
"inf":"Become Influencer",
"adv": "Become Advertizer"
},
"reson":{
"one":"Không có rào cản cho việc tiền tệ hóa nội dung hay cho bất cứ loại hình nhà ảnh hưởng nào",
"two":"Không có rào cản cho việc tiền tệ hóa nội dung hay cho bất cứ loại hình nhà ảnh hưởng nào",
"three":"Quyền tiếp cận không giới hạn tới các nhà ảnh hưởng trên toàn cầu cho các nhà quảng cáo"
},
"block1":{
"header": "Unlimited opportunities for your business",
"body": "SocialMedia.Market creates a global marketplace for advertisers and opinion leaders within all major social networks, providing convenient and transparent tools for interaction between participants. Unlimited opportunities to promote brands and earnings in social networks with a simple application!",
"button": "Try demo"
},
"block2":{
"header": "Security of transactions and operations",
"body": "SM.M. excludes holdings and non-payments, providing only secure transactions. The platform operates on the basis of Ethereum and uses a fail-safe escrow payment system, which automatically keeps money transfers until the terms of the smart contract are fulfilled.",
"button": "tìm hiểu thêm"
},
"block3":{
"header": "Easy to manage, simple to interact!",
"body": "The modern CRM-system of the platform contains many tips and templates that help to build effective interaction. The analytical system SM.M itself will offer you the best ways of development. The advertising campaign is created with the help of Smart Contract and greatly simplifies the cooperation.",
"button": "How to start"
},
"block4":{
"header": "Decentralized dispute solution system",
"body": "The unique arbitration system of our platform will help objectively evaluate different points of view and resolve the conflict with the maximum benefit for both sides. We offer a system of independent dispute resolution for participants in the process of the involvement of independent experts.",
"button": "tìm hiểu thêm"
},
"trusted": {
"footer": "CÁC ĐỐI TÁC"
},
"about": {
"first": {
"title": "Sàn thương mại phân cấp đầu tiên kết nối các <strong>bloggers mạng xã</strong> hội với các nhà quảng cáo",
"description": "Giải quyết các vấn đề chính về marketing sửu dụng người có tầm ảnh hưởng, SocialMedia.Market sẽ tạo ra những cơ hội mới cho việc tiền tệ hóa nội dung, gắn kết cộng đồng và tiếp cận khán giả. Một hệ sinh thái mới, vận hành bởi công nghệ chuỗi khối và Social Media Token, sẽ đơn giản hóa tương tác marrketing giữa doanh nghiệp và những người có tầm ảnh hưởng.."
},
"second": {
"title": "Tiếp thị sử dụng người ảnh hưởng là chiến lược hiệu quả về mặt chi phí nhất cho <strong>các thương hiệu</strong>",
"description": "Các nghiên cứu đã cho thấy 92% người tiêu dùng dễ tin tưởng hơn vào một thương hiệu quảng cáo sử dụng Marketing Người Ảnh Hưởng. Hơn thế nữa, phương pháp này ít tốn kém hơn quảng cáo mất phí và tạo được những lời giới thiệu thương hiệu đáng tin hơn. Vì những lý do này, có thể cho rằng Marketing Người Ảnh Hưởng đã trở thành chiến lược marketing dài hạn hiệu quả nhất."
},
"actions": {
"readShorter": "đọc ít hơn",
"checkWhitePaper": "Hãy xem sách trắng",
"joinCommunity": "Gia nhập cộng đồng"
}
},
"videos": {
"sectionTitle": "Hãy xem những video tuyệt vời về chúng tôi",
"videosList": [
{
"id": "projectReviews",
"title": "Đánh giá dự án",
"videos": [
{
"channelName": "Keith Teare",
"date": "15.02.18",
"country": "-",
"video": "https://www.youtube.com/watch?v=OrYQh_jpqt8&t=3693s",
"thumb": "https://img.youtube.com/vi/OrYQh_jpqt8/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=OrYQh_jpqt8=3693s",
"title": "Keith Teare, co-founder of Techcrunch about SocialMedia.Market",
"desc": "Influencer advertising market has a huge potential, which is halted by the issues it has yet to overcome. Nevertheless, the blockchain technology provides all the means to deal with fraud, transparency, and pricing problems in influencer advertising campaigns. That’s why SocialMedia.Market utilizes the technology to connect advertisers and publishers in a new influencer marketing ecosystem. I have always focused on the point at which change is happening. That’s why we are together in this with the SocialMedia.Market team."
},
{
"channelName": "Tatsunari Ono",
"date": "15.02.18",
"country": "-",
"video": "https://www.youtube.com/watch?v=FUUcqxpOaAA&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/FUUcqxpOaAA/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=FUUcqxpOaAA&feature=youtu.be",
"title": "Tatsunari Ono talks about SocialMedia.Market",
"desc": ""
},
{
"channelName": "Andrew Playford",
"date": "15.02.18",
"country": "-",
"video": "https://www.youtube.com/watch?v=2mJl9nt0Ny4&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/2mJl9nt0Ny4/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=2mJl9nt0Ny4&feature=youtu.be",
"title": "Influencer Marketing Comes to the Blockchain",
"desc": ""
},
{
"channelName": "Coin Bloq",
"date": "26.12.17",
"country": "-",
"video": "https://www.youtube.com/watch?v=l6zicPYDsK0&t=3693s",
"thumb": "https://img.youtube.com/vi/l6zicPYDsK0/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=l6zicPYDsK0&t=3693s",
"title": "Coin Bloq | ICO Review: Social Media.Market, Bee Token, X8, SocialX and other",
"desc": "From decentralized housing rentals on the blockchain to Ethereum-based lending platforms ICOs offer investors a high-octane strategy that has the potential to net them untold riches or mire them in loss and despair."
},
{
"channelName": "Crypto Camacho",
"date": "29.01.17",
"country": "United States",
"video": "https://www.youtube.com/watch?v=EWcd_X2esXw",
"thumb": "https://img.youtube.com/vi/EWcd_X2esXw/mqdefault.jpg",
"share": "https://www.youtube.com/watch?v=EWcd_X2esXw",
"title": "Crypto Camacho | Influencers and Advertisers On The Blockchain - Match Made in Heaven?",
"desc": "Hi! I'm Dan and I run CryptoCamacho.com - I teach people how to profitably trade Cryptocurrency like Bitcoin, Ethereum, Litecoin, etc. We are in the early days of this train and those who get on will significantly profit. Join me on this crypto journey. I hope you enjoy the videos!"
},
{
"channelName": "RICH TV LIVE",
"date": "17.01.18",
"country": "Canada",
"video": "https://www.youtube.com/watch?v=MzPDHBCdmMg&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/MzPDHBCdmMg/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=MzPDHBCdmMg&feature=youtu.be",
"title": "RICH TV LIVE | SocialMedia.Market ICO Review",
"desc": "Today i look at a social media platform that may improve the blockchain."
},
{
"channelName": "ICO Talk TV - interviews with ICO projects",
"date": "02.02.18",
"country": "United States",
"video": "https://www.youtube.com/watch?v=TiPbK4zO7uI&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/TiPbK4zO7uI/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=TiPbK4zO7uI&feature=youtu.be",
"title": "ICO Talk TV | \"SOCIALMEDIA.MARKET\" interview with Dmitry Shyshov",
"desc": "SocialMedia.Market sẽ tạo một thị trường toàn cầu cho các Nhà Quảng Cáo và Nhà Ảnh Hưởng giữa các mạng lưới xã hội lớn, cung cấp các công cụ minh bạch và tiện lợi cho việc tương tác giữa các bên liên quan. Về việc duy trì quan hệ thương mại giữa những người tham gia, SocialMedia.Market sẽ sử dụng công nghệ Chuỗi khối để đơn giản hóa tích hợp, giảm thiểu gian lận và chi phí cho tất cả những người tham gia thị trường.Token value is going to be upheld not only by transaction means within platform services, but also supported with the ability to participate in the decentralized dispute solution system gaining additional earnings for token holders. Project: SOCIALMEDIA.MARKET"
},
{
"channelName": "Crypto Hype",
"date": "11.11.17",
"country": "United Kingdom",
"video": "https://www.youtube.com/watch?v=nyJHXR4A5qk",
"thumb": "https://img.youtube.com/vi/nyJHXR4A5qk/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=nyJHXR4A5qk",
"title": "Crypto Hype | The First Blockchain Based On Influencer Marketing?",
"desc": "Please watch this video to unlock my system I use for deciding which cryptocurrencies are the best investment today and which are worth selling?"
},
{
"channelName": "CryptoCoinShow",
"date": "03.11.17",
"country": "Canada",
"video": "https://www.youtube.com/watch?v=coM7oX_tBrg",
"thumb": "https://img.youtube.com/vi/coM7oX_tBrg/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=coM7oX_tBrg",
"title": "CryptoCoinShow | SocialMedia.Market Overview",
"desc": "The tech team leading socialmedia.market, including CEO and Founder Dmitry Shyshov, who has over 15 years experience in the tech and game industry, and founded R.Games which has sold over 10 million games in the past 3 years."
},
{
"channelName": "Investor Town Hall Show",
"date": "16.11.17",
"country": "United States",
"video": "https://www.youtube.com/watch?v=Dk4vglTGu-o",
"thumb": "https://img.youtube.com/vi/Dk4vglTGu-o/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=Dk4vglTGu-o",
"title": "Investor Town Hall | First Blockchain Online Advertising Platform",
"desc": "SocialMedia.Market's Founder and CEO Dmitry Shyshov was on Investor Town Hall Show today talking about the company's ICO token sale project, the first blockchain-base online advertising platform that takes influencer marketing to the next level."
},
{
"channelName": "Сообщество Онлайн Инвесторов iTuber",
"date": "17.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=tgqOYSzmR_0",
"thumb": "https://img.youtube.com/vi/tgqOYSzmR_0/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=tgqOYSzmR_0",
"title": "iTuber | ИНТЕРВЬЮ с ОСНОВАТЕЛЕМ ДМИТРИЙ ШИШОВ",
"desc": "Все подробности о проекте в интервью с Основателем и СЕО проекта Дмитрием Шишовым."
},
{
"channelName": "Pro3xplain",
"date": "30.01.18",
"country,": "Morocco",
"video": "https://www.youtube.com/watch?v=tOHZr_xdynQ",
"thumb": "https://img.youtube.com/vi/tOHZr_xdynQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=tOHZr_xdynQ",
"title": "Pro3xplain | شرح منصة SocialMedia Market للإستفادة ماديا من مواقع التواصل الإجتماعي و الإستثمار",
"desc": "موقع محترفو الشرح هو عبار عن مدونة جديدة في عالم الانترنات العربي عامة و التونسي خاصة تحتوي على العديد من الدروس التعليمية التقتية و المعلوماتية الى جانب العديد من الاخبار التي تهم الشباب العربي ."
},
{
"channelName": "Krypto Raport",
"date": "13.11.17",
"country": "Poland",
"video": "https://www.youtube.com/watch?v=4qE27tjDlfM",
"thumb": "https://img.youtube.com/vi/4qE27tjDlfM/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=4qE27tjDlfM",
"title": "Krypto Raport| Jak zarobić na reklamach?",
"desc": "SocialMedia.Market jest to decentralizowana platforma do tworzenia, wykonywania i analizowania kampanii reklamowych za pomocą mediów społecznościowych"
},
{
"channelName": "Investupscale Академия криптовалют",
"date": "01.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=pG5Y5KdbmMQ&feature=em-share_video_user",
"thumb": "https://img.youtube.com/vi/pG5Y5KdbmMQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=pG5Y5KdbmMQ&feature=em-share_video_user",
"title": "Investupscale | Socialmedia.market ICO. Обзор проекта",
"desc": "Биткоин и криптовалюты завоевывают мир, не оставайтесь в стороне - начните инвестировать уже сейчас, станьте одними из первых на этом рынке."
},
{
"channelName": "Perfect Bitcoiner Monty",
"date": "02.11.17",
"country": "India",
"video": "https://www.youtube.com/watch?v=JW7ADM0CJKo&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/JW7ADM0CJKo/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=JW7ADM0CJKo&feature=youtu.be",
"title": "Perfect Bitcoiner Monty | Social Media ICO Review",
"desc": "The first blockchain based influencer marketing platform. Join SocialMedia.Market Token Sale."
},
{
"channelName": "CryptoView - ICO Reviews & News",
"date": "10.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=ssBqgQn4EHQ&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/ssBqgQn4EHQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=ssBqgQn4EHQ&feature=youtu.be",
"title": "CryptoView | SOCIAL MEDIA MARKET - НОВЫЙ вид РЕКЛАМЫ на БЛОКЧЕЙНЕ!",
"desc": "Присоединяйтесь к продаже токенов на SocialMedia.Market!"
},
{
"channelName": "CRYPTODEALERS",
"date": "18.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=iJnDe3EmmiY&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/iJnDe3EmmiY/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=iJnDe3EmmiY&feature=youtu.be",
"title": "CRYPTODEALERS | Обзор платформы для блогеров и рекламодателей на блокчейне.",
"desc": "Рынок Маркетинга Влияния имеет ряд существенных проблем, связанных с непрозрачностью ценообразования, хаотичностью взаимодействия между участниками, посредничеством, а также мошенничеством. https://socialmedia.market - упростит взаимодействие между участниками рынка и уменьшит их затраты, а также значительно "
},
{
"channelName": "MiningMin",
"date": "02.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=l6ZUeDOyNd4",
"thumb": "https://img.youtube.com/vi/l6ZUeDOyNd4/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=l6ZUeDOyNd4",
"title": "MiningMin | SocialMedia.Market обзор сервиса",
"desc": "SocialMedia.Market – первая децентрализованная экосистема для планирования, создания, запуска и анализа рекламных кампаний у лидеров мнений. Платформа создаст безопасные и прозрачные условия на рынке маркетинга влияния."
},
{
"channelName": "Копеечка в кошельке",
"date": "13.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=Vhg1PeVk1y8",
"thumb": "https://img.youtube.com/vi/Vhg1PeVk1y8/sddefault.jpg",
"share": "https://www.youtube.com/watch?v=Vhg1PeVk1y8",
"title": "SocialMedia.Market Новое поколение рекламы. Умная экосистема.",
"desc": "Основанная на технологии блокчейн, платформа SocialMediamarket выведет маркетинговые отношения между брендами и лидерами мнений на новый уровень взаимодействия, обеспечивая прозрачность и безопасность."
},
{
"channelName": "PRO BLOCKCHAIN",
"date": "02.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=dG1lPuFDT6o&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/dG1lPuFDT6o/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=dG1lPuFDT6o&feature=youtu.be",
"title": "PRO BLOCKCHAIN | СОЗДАЕМ НОВОЕ ПОКОЛЕНИЕ ОНЛАЙН РЕКЛАМЫ",
"desc": "Обзор SocialMedia.Market. Основанная на технологии блокчейн, платформа SocialMedia.market выведет маркетинговые отношения между брендами и лидерами мнений на новый уровень взаимодействия, обеспечивая прозрачность и безопасность."
},
{
"channelName": "420BitcoinsTV",
"date": "20.01.18",
"country": "Ukraine",
"video": "https://www.youtube.com/watch?v=rYkKSu5CUBs",
"thumb": "https://img.youtube.com/vi/rYkKSu5CUBs/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=rYkKSu5CUBs",
"title": "420BitcoinsTV | Маркетплейс для блогеров и рекламодателей",
"desc": "SocialMedia.Market – децентрализованная платформа, позволяющая создавать, запускать и анализировать рекламные кампании у блогеров. Работает на базе технологии блокчейна, что обеспечивает прозрачность и безопасность взаимоотношений блогеров и рекламодателей."
},
{
"channelName": "Sit On My Bits",
"date": "05.12.17",
"country": "-",
"video": "https://www.youtube.com/watch?v=ETRUEb6LnhI",
"thumb": "https://img.youtube.com/vi/ETRUEb6LnhI/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=ETRUEb6LnhI",
"title": "Sit On My Bits | What Is Going On With Bitcoin + Social Media Market New ICO",
"desc": "Welcome to Sit On My Bits and this is a review on an ICO called Social Media Market and also all the latest in the markets."
},
{
"channelName": "Михаил Каплунов",
"date": "29.01.18",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=CeUIzLzrSOo",
"thumb": "https://img.youtube.com/vi/CeUIzLzrSOo/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=CeUIzLzrSOo",
"title": "Skychain, Dether и SocialMedia.Market / ICO АЛЬМАНАХ №15",
"desc": "Skychain, Dether и Socialmedia.market — в этом выпуске «ICO АЛЬМАНАХ», вы узнаете о том, чем занимаются эти компании, чтобы принять верное решение об инвестировании в ICO."
},
{
"channelName": "IT FIRM BD",
"date": "29.01.18",
"country": "Bangladesh",
"video": "https://www.youtube.com/watch?v=UDijziFcqC8",
"thumb": "https://img.youtube.com/vi/UDijziFcqC8/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=UDijziFcqC8",
"title": "IT FIRM BD | ICO-New Expert Rated Legitimate ICO!",
"desc": "SocialMedia.Market has a good potentiality like any other good rated ico by ICO bench and other ICO rated sites. I hope it is our next good decision about legitimate ICO. More Legitimate ICO: https://scorumcoins.com/en-us/affilia... More help: facebook:https://www.facebook.com/itfirmbd Google plus: https://plus.google.com/1111836980418... twitter:https://twitter.com/itfirmbd Thank you to watch my video and don't miss to subscribe my channel and don't forget to like my facebook page. Thanks to all again."
},
{
"channelName": "Crypto Max",
"date": "08.01.18",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=5mxCxftWKgk",
"thumb": "https://img.youtube.com/vi/5mxCxftWKgk/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=5mxCxftWKgk",
"title": "Crypto Max | Social media market-биржа рекламы для блогеров|•|#ЧЕСТНЫЙОБЗОР ПРОЕКТА|•|",
"desc": "Сервис создаст безопасные и прозрачные условия для работы на рынке Маркетинга Влияния. Это откроет возможности для роста и развития миллионам начинающих блогеров, а также малому и среднему бизнесу по всему миру. Их платформа займет весомую долю рынка Маркетинга Влияния и онлайн рекламы в целом, благодаря высокой востребованности, удобству и постоянному развитию блокчейн технологий."
},
{
"channelName": "Крипто День",
"date": "24.01.18",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=J17rMFbShjY",
"thumb": "https://img.youtube.com/vi/J17rMFbShjY/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=J17rMFbShjY",
"title": "Ревью SocialMedia.Market от \"Крипто День\"",
"desc": ""
},
{
"channelName": "Đầu Tư 4.0",
"date": "29.01.18",
"country": "Vietnam",
"video": "https://www.youtube.com/watch?v=JIT54sbtSIc",
"thumb": "https://img.youtube.com/vi/JIT54sbtSIc/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=JIT54sbtSIc",
"title": "Review dự án Socialmedia market ico (SMT) - Đầu tư 4.0.",
"desc": "Chanel chia sẻ các thông tin về thị trường Cryptocurrency. Các cơ hội đầu tư đồng Coin tiềm năng được các chuyên gia hàng đầu kiểm duyệt."
}
]
},
{
"id": "Các blogger",
"title": "Ý kiến các blogger về dự án",
"videos": [
{
"channelName": "Brandon Kelly Crypto Trader",
"date": "05.12.17",
"country": "United States",
"video": "https://www.youtube.com/watch?v=iVoiR1Ar4hc",
"thumb": "https://img.youtube.com/vi/iVoiR1Ar4hc/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=iVoiR1Ar4hc",
"title": "Brandon Kelly | ICO Spotlight: Social Media Market (SMT)",
"desc": "Brandon Kelly is a cryptocurrency consultant and one of the industry's top crypto traders, who outpaced the market over 1000% in 2017 with his patent-pending method. He specializes in digital technology, design thinking, fintech, and business innovation."
},
{
"channelName": "Donnyboy8",
"date": "25.01.18",
"country": "United States",
"video": "https://www.youtube.com/watch?v=o5t--KMpibM&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/o5t--KMpibM/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=o5t--KMpibM&feature=youtu.be",
"title": "Donnyboy8 | SocialMedia Marketing ICO starting soon will change online advertising",
"desc": "Staying up to date with many new investment opportunities. Very interested in Bitcoin and the crypto currencies - I really think this will change the world and the future of how we use money and invest. Also continually growing my commercial cleaning company and learning any where I can."
},
{
"channelName": "Ronnie Sen",
"date": "31.01.18",
"country": "India",
"video": "https://www.youtube.com/watch?v=gbGI24QolHQ&feature=youtu.be",
"thumb": "https://img.youtube.com/vi/gbGI24QolHQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=gbGI24QolHQ&feature=youtu.be",
"title": "Ronnie Sen | SocialMedia.Market ICO Social MONETIZE YOUR INFLUENCE",
"desc": "Affiliate Marketer / Network Marketer / Crypto Currency Enthusiast. Let's Ride the Revolution To Success"
},
{
"channelName": "Bitcoin Criptomonedas",
"date": "01.02.18",
"country": "Spain",
"video": "https://www.youtube.com/watch?v=91Poh_ya83Y",
"thumb": "https://img.youtube.com/vi/91Poh_ya83Y/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=91Poh_ya83Y",
"title": "Bitcoin Criptomonedas | MONETICE SU INFLUENCIA con Socialmedia.market",
"desc": "Blockchain Based Influencer Marketing Platform entra en: https://goo.gl/8GHWqe y obten una bonificación del 3% en los tokens que compres."
},
{
"channelName": "BalkanTech",
"date": "03.11.17",
"country": "Serbia",
"video": "https://www.youtube.com/watch?v=URMPidtYx-g",
"thumb": "https://img.youtube.com/vi/URMPidtYx-g/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=URMPidtYx-g",
"title": "BalkanTech | Nova Platforma Za YouTube Zaradu",
"desc": ""
},
{
"channelName": "ЮТУБЕР",
"date": "15.11.17",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=4EvOAckr1pA&feature=youtu.be&t=3m57s",
"thumb": "https://img.youtube.com/vi/4EvOAckr1pA/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=4EvOAckr1pA&feature=youtu.be&t=3m57s",
"title": "ЮТУБЕР | ДЕВОЧКА ИЗ \"ЛАЙК ТВ ШОУ\" ОБОГНАЛА PewDiePie ПО ПОДПИСЧИКАМ",
"desc": "Когда я сел писать сценарий к этому видео, на канале Алины “ЛайкТВ шоу” было уже 400 тысяч подписчиков. Кто-то радуется за внезапный успех ребенка, кто-то недоумевает, считает, что она не заслужила эту аудиторию. Груз ответственности на ее плечи только упал, поэтому время покажет, сможет ли она справиться. А пока, я же предлагаю проанализировать, какие фундаментальные изменения произошли за последние 7 дней у неё. Потому что я уверен, это была самая насыщенная на события неделя в ее жизни."
},
{
"channelName": "Дмитрий Гриценко. Криптовалюты",
"date": "22.01.18",
"country": "Russia",
"video": "https://www.youtube.com/watch?v=aajTmO0KtHQ",
"thumb": "https://img.youtube.com/vi/aajTmO0KtHQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=aajTmO0KtHQ",
"title": "Дмитрий Гриценко | ICO Social Media Market - площадка для взаимодействия блогеров и рекламодателей",
"desc": "Меня зовут Дмитрий Гриценко, и на этом канале я рассказываю про криптовалюты и другие виды заработка в интернете."
}
]
},
{
"id": "platform",
"title": "Phương thức hoạt đông của nền tảng",
"videos": [
{
"channelName": "SocialMedia.Market",
"date": "16.11.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=k5XUH_KQEUY",
"thumb": "https://img.youtube.com/vi/k5XUH_KQEUY/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=k5XUH_KQEUY",
"title": "SocialMedia.Market - Blockchain Based Influencer Marketing Platform",
"desc": "We are building SocialMedia.market – the first decentralized ecosystem to discover, create, perform and analyze advertising campaigns with"
},
{
"channelName": "SocialMedia.Market",
"date": "25.01.18",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=AfUlYnaQMRQ",
"thumb": "https://img.youtube.com/vi/AfUlYnaQMRQ/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=AfUlYnaQMRQ",
"title": "Q&A with Founder of Socialmedia.Market — Dmitry Shyshov",
"desc": "Our founder Dmitry Shyshov will be holding a Q&A-session with our users. During the stream Dmitry will tell about the main changes in the Social Media token economy, our referral program and will answer all your questions!"
},
{
"channelName": "SocialMedia.Market",
"date": "16.11.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=o0s14UyNcig",
"thumb": "https://img.youtube.com/vi/o0s14UyNcig/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=o0s14UyNcig",
"title": "Aleksandra Morozova about Influencer Marketing. SocialMedia.Market ICO",
"desc": "Learn about the project from Co-founder and CMO - Aleksandra Morozova."
},
{
"channelName": "SocialMedia.Market",
"date": "08.12.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=JUx6XMRUVwQ",
"thumb": "https://img.youtube.com/vi/JUx6XMRUVwQ/mqdefault.jpg",
"share": "https://www.youtube.com/watch?v=JUx6XMRUVwQ",
"title": "Q&A session with SocialMedia.Market CEO - Dmitry Shyshov and BDM - Viktor Perekhod",
"desc": "Project news from founder and CEO - Dmitry Shyshov and business development manager - Viktor Perekhod"
},
{
"channelName": "SocialMedia.Market",
"date": "16.11.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=G4N-BDqYTX0",
"thumb": "https://img.youtube.com/vi/G4N-BDqYTX0/mqdefault.jpg",
"share": "https://www.youtube.com/watch?v=G4N-BDqYTX0",
"title": "SocialMedia.Market - Первая децентрализованая площадка, объединяющая блогеров и рекламодателей",
"desc": "Мы создаем первую децентрализованую площадку, которая объединит социальные медиа, блогеров и рекламодателей."
},
{
"channelName": "SocialMedia.Market",
"date": "06.12.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=EvCSiTTR1Ds",
"thumb": "https://img.youtube.com/vi/EvCSiTTR1Ds/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=EvCSiTTR1Ds",
"title": "Александра Морозова про Маркетинг Влияния. SocialMedia.Market ICO",
"desc": "Узнайте подробности о проекте от ко-фаундера и директора по маркетингу проекта - Александры Морозовой!"
},
{
"channelName": "SocialMedia.Market",
"date": "08.12.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=b71Fh3Dol0w",
"thumb": "https://img.youtube.com/vi/b71Fh3Dol0w/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=b71Fh3Dol0w",
"title": "Вебинар с основателем проекта SocialMedia.Market - Дмитрием Шишовым",
"desc": "Вебинар с основателем - Дмитрием Шишовым, и менеджером по развитию бизнеса - Виктором Переходом. Узнайте подробности об экономике проекта и итогах presale Pre-ICO."
},
{
"channelName": "SocialMedia.Market",
"date": "28.12.17",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=fe72wwhr-2E",
"thumb": "https://img.youtube.com/vi/fe72wwhr-2E/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=fe72wwhr-2E",
"title": "Q&A-сессия с основателем и руководителем отдела разработки SocialMedia.Market",
"desc": "Заработай на влиянии вместе с SocialMedia.Market - https://goo.gl/BZHbvT Facebook: https://www.facebook.com/Socialmedia...."
},
{
"channelName": "SocialMedia.Market",
"date": "25.01.18",
"country": "Kiev",
"video": "https://www.youtube.com/watch?v=5qOB1MBYd14",
"thumb": "https://img.youtube.com/vi/5qOB1MBYd14/maxresdefault.jpg",
"share": "https://www.youtube.com/watch?v=5qOB1MBYd14",
"title": "Q&A сессия с основателем Socialmedia.Market — Дмитрием Шишовым",
"desc": "Q&A сессия с основателем Socialmedia.Market Дмитрием Шишовым. Во время трансляции Дмитрий расскажет об основных изменениях в экономике Social Media токена, нашей реферальной программе и ответит на все ваши вопросы! Будем рады пообщаться!"
}
]
}
],
"share": "Share video",
"cardTitle": "The first blockchain based on influancer marketing?"
},
"partners": {
"sectionTitle": "CÁC ĐỐI TÁC CỦA CHÚNG TÔI",
"partnersList": [
{
"alt": "Civic",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/civic.jpg"
},
{
"alt": "Crypterium",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/crypterium.jpg"
},
{
"alt": "Icobox",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/icobox.jpg"
},
{
"alt": "Imh",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/imh.jpg"
},
{
"alt": "Stox",
"img": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/partner/stox.jpg"
}
]
},
"benefits": {
"sectionTitle": "<strong><span class='market'>Socialmedia.Market</span></strong> các lợi ích của",
"benefitsList": [
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit1.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit1-bg.png",
"title": "BẢO VỆ KHỎI GIAN LẬN"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit2.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit2-bg.png",
"title": "GIẢM CÁC CHI PHÍ ĐIỀU HÀNH"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit3.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit3-bg.png",
"title": "CÁC GIAO DỊCH NHANH CHÓNG VÀ AN TOÀN"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit4.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit4-bg.png",
"title": "CÁC GIẢI PHÁP MÂU THUẪN PHÂN QUYỀN"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit5.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit5-bg.png",
"title": "THANH TOÁN TOÀN CẦU ĐƠN GIẢN"
},
{
"background": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit6.png",
"image": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/benefits/benefit6-bg.png",
"title": "DỄ DÀNG GẮN KẾT"
}
],
"joinTokenSale": "Tham gia đợt bán token"
},
"experts": {
"sectionTitle": "Ý kiến của các chuyên gia về<span class='market'>Socialmedia.market</span>",
"expertsList": [
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/teary.png",
"name": "Keith Teare",
"status": "co-founder of Techcrunch.",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/teary-techcrunch.jpg",
"description": "Influencer advertising market has a huge potential, which is halted by the issues it has yet to overcome. Nevertheless, the blockchain technology provides all the means to deal with fraud, transparency, and pricing problems in influencer advertising campaigns. That’s why SocialMedia.Market utilizes the technology to connect advertisers and publishers in a new influencer marketing ecosystem. I have always focused on the point at which change is happening. That’s why we are together in this with the SocialMedia.Market team."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/david.png",
"name": "David Meerman Scott",
"status": "tác giả bán chạy nhất của cuốn \"Những Nguyên Tắc Mới Của Marketing và PR\" (\"The New Rules of Marketing and PR\")",
"company": "",
"description": "Công nghệ chuỗi khối cho thấy tiềm năng để cuối cùng chúng ta cũng có thể mang lại tính minh bạch cho các thương hiệu làm việc với những người có tầm ảnh hưởng xã hội."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/werner.png",
"name": "Werner Geyser",
"status": "Nhà sáng lập của Influencer Marketing Hub",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/imh.jpg",
"description": "Marketing sử dụng nhà ảnh hưởng đem lại một cơ hội lớn cho các thương hiệu trong việc truyền tải thông điệp của họ đến một lượng lớn khán giả. Với sự giúp đỡ của SocialMedia.Marketing, công nghệ chuỗi khối sẽ cung cấp phương tiện kiểm soát cho thị trường đang phát triển mạnh mẽ này, giúp đảm bảo tính minh bạch và an toàn cho bất cứ ai tham gia"
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/Ono.png",
"name": "Tatsunari Ono",
"status": "CEO, VALUE BRAIN CO., LTD. (JAPAN) ",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/airbnb.jpg",
"description": "Despite its exponential growth, influencer advertising market has its own set of challenges, like inefficiency in pricing and complex communications, while agency fees and fraud consume large portions of budget. SocialMedia.Market is bent to solve these issues with the blockchain technology. The social media audience in Japan alone is huge. And SocialMedia.Market will help expand influencer marketing plans and keep the community growing. That’s the reason why I’m supporting the project and will be among its early adopters."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/peter.png",
"name": "Peter Zhalov",
"status": "Cựu phó chủ tịch Tiếp thị & Quảng cáo tại Wargaming.net",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/wargaming.jpg",
"description": "Ngày nay, người tiêu dùng sử dụng các phần mềm chặn quảng cáo và phớt lờ các quảng cáo điện tử truyền thống. Marketing Nhà Ảnh Hưởng và Marketing eSports đang trở thành hai cách hiệu quả nhất để tiếp cận được với khán giả thế hệ Millenials và thế hệ Z. Social media.market có được giải pháp bằng cách tạo ra một thị trường minh bạch cho việc Marketing sử dụng người ảnh hưởng mà chúng ta đang cần."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/alex.png",
"name": "Alex Yastremski",
"status": "Giám đốc Pháp lý tại Bitfury Group Ltd",
"company": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/bitfury.jpg",
"description": "Dự án gây ấn tượng với tôi bởi những mục tiêu đầy tham vọng, có khả năng tăng giá trị cho những người tham gia thị trường và tối đa hóa doanh số cho các nhà tiếp thị. Với khả năng chuyên môn của đội ngũ, dự án này có thể trở thành một giải pháp toàn diện thành công và hiệu quả cho quảng cáo điện tử."
},
{
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/experts/slavik.png",
"name": "Slavik Nenaydokh",
"status": "Principal, Delphi Software International",
"company": "",
"description": "SocialMedia.Market đang tận dụng một cách khôn ngoan những hiểu biết của họ trong việc kích hoạt những thay đổi trong tiếp thị xã hội. Tôi cảm thấy thật nhỏ bé khi tham gia vào dự án tầm nhìn này cùng với đội ngũ SocialMedia.Market và tôi mong muốn sẽ được tiếp tục đồng hành với họ qua các giai đoạn trưởng thành của công ty."
}
]
},
"ourTeam": {
"sectionTitle": "ĐỘI NGŨ CỦA CHÚNG TÔI",
"sectionDesc": "31 thành viên hiện đang tham gia vào dự án, và chúng tôi đang thuê thêm các chuyên gia thị trường, các kỹ sư chuỗi khối nhằm mở rộng đội ngũ phát triển của mình. Chúng tôi mong muốn tăng số lượng thành viên SocialMedia.Market lên tới 70 người trong 4 tháng tới.",
"fullTeam": "đội ngũ đầy đủ",
"hideFullTeam": "Ẩn toàn bộ nhóm",
"viewVideo": "View video",
"teamList": [
{
"id": "keithTeare",
"name": "Keith Teare",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/keith-teare.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "http://linkedin.com/in/kteare/"
}
],
"jobTitle": "Adviser",
"description": "Chủ tịch điều hành công ty đầu tư mạo hiểm tại UK Accelerated Digital Ventures. Keith Teare gần đây đã cố vấn thành công cho các ICO của ICOBox (4000 BTC) và Crypterium (hơn $51 triệu). Trước đây ông từng là nhà sáng lập của TechCrunch và là Nhà Cung Cấp Dịch Vụ Internet người tiêu dùng đầu tiên tại Châu Âu - EasyNet. EasyNet và RealNames đều đạt vị trí Unicorn trong khoảng cuối những năm 90.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/teare.jpg"
}
],
"video": "https://www.youtube.com/embed/OrYQh_jpqt8"
},
{
"id": "andrewPlayford",
"name": "Andrew Playford",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/andrew-playford.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/andrewplayford/"
}
],
"jobTitle": "Adviser",
"description": "Phó Chủ tịch Điều Hành Cấp Cao tại Sonic Foundry, Inc. Trước Sonic Foundry, Andrew điều hành Think New Ideas, một công ty được công nhận bởi NASDAQ đã mua lại và tích hợp các công ty tiếp thị điện tử và phát triển web. Think New Ideas cuối cùng đã được mua lại với giá $250 mm.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/sonic.jpg"
}
],
"video": "https://www.youtube.com/embed/dX0n0k7yskg"
},
{
"id": "tatsunariOno",
"name": "Tatsunari Ono",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/tatsunari-ono.jpg",
"socialLinks": [
{
"socialIcon": "fa-facebook",
"link": "https://www.facebook.com/tatsunari.ono.1?ref=br_rs/"
}
],
"jobTitle": "Adviser",
"description": "CEO tại Value Brain Co., Ltd. (Nhật Bản). CEO tại Beducate.ltd (Hồng Kông). Tác giả cuốn \"Những Mối Lo Kiếm Ra Tiền\" (\"Worries Make Money\") Kadokawa Foresta . Một nhà kinh doanh tham gia tích cực vào các hoạt động đầu tư bất động sản, cổ phần, vận hành Airbnb cũng như tiền thuật toán. Ông tổ chức các cuộc gặp tại Tokyo giữa các công ty tiền thuật toán nổi tiếng như NEO, LISK, Quantum và Ardor.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/ono.jpg"
}
],
"video": "https://www.youtube.com/embed/FUUcqxpOaAA"
},
{
"id": "gabrielZanko",
"name": "Gabriel Zanko",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/gabriel-zanko.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://co.linkedin.com/in/gabrielzanko/"
}
],
"jobTitle": "Adviser",
"description": "Giám đốc Thuế & Cố vấn cho Nokia Canada & Hỗ Trợ cho Nokia Chile. Nhà khởi nghiệp Fintech - Cố vấn. Nhà sáng lập của MobileyourLife và tham gia vào lĩnh vực AI-Fintech giúp cung cấp các giải pháp trong môi trường B2B. Cố vấn ICO Gây Vốn và Phát Triển Kinh Doanh Quốc Tế.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/zanko.jpg"
}
],
"video": ""
},
{
"id": "dariaGeneralova",
"name": "Daria Generalova",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/daria-generalova.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/daria-generalova-842a3a85/"
}
],
"jobTitle": "Adviser",
"description": "Đồng sáng lập ICOBox. Chuyên gia về Marketing, PR & Truyền thông với hơn 10 năm kinh nghiệm. Từng tham gia ngành chuỗi khối gần 2 năm về trước và giữ vai trò cố vấn cho Argon Group cũng như hỗ trợ khởi động ICO nền tảng Cryptonomos.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/daria.jpg"
}
],
"video": ""
},
{
"id": "chafikAbdellaoui",
"name": "Chafik Abdellaoui",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/chafik-abdellaoui.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/chafikabdellaouiacbmc/"
}
],
"jobTitle": "Adviser",
"description": "Nhà khởi nghiệp, nhà sáng lập của ACBMC, Bizzant và XEDYAS IT HYBRID SOLUTIONS.. Chafic là một chuyên gia phát triển kinh doanh thành công với kinh nghiệm chuyên sâu về thương mại điện tử, gaming và thanh toán điện tử. cũng là người đóng góp vào thành công của ICO Mobile Go.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/chafic.jpg"
}
],
"video": ""
},
{
"id": "peterZhalov",
"name": "Peter Zhalov",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/peter-zhalov.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/peter-zhalov-35149225/"
}
],
"jobTitle": "Adviser",
"description": "Cựu phó chủ tịch Tiếp thị & Quảng cáo tại Wargaming.net, người say mê eSports và chuỗi khối. Giám Đốc Điều Hành nhiều kinh nghiệm, Nhà Tiếp Thị và chuyên gia Phát Triển Kinh Doanh với lịch sử làm việc huy hoàng trong ngành công nghiệp game điện tử. Có kỹ năng về eSports, Chuỗi khối và Quảng cáo.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/jalov.jpg"
}
],
"video": ""
},
{
"id": "dimaZaitsev",
"name": "Dima Zaitsev, PhD",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/dima-zaitsev.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/dima-zaitsev/"
}
],
"jobTitle": "Adviser",
"description": "Đứng đầu bộ phận Kinh doanh & PR Quốc tế Trưởng Bộ Phận Phân Tích tại ICOBox. Năm 2017, Dima bắt đầu hứng thú với chuỗi khối và tiền thuật toán và bắt đầu thực hiện các nghiên cứu thị trường phạm vi giới hạn. Ông có phần riêng của mình trong một số các đại lý truyền thông tại Hoa Kỳ bao gồm FXStreet.com, CoinSpeaker.com, và các bên khác.",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/dima.jpg"
}
],
"video": ""
},
{
"id": "alexYastremski",
"name": "Alex Yastremski",
"avatar": "//d30l7y24ijbkbs.cloudfront.net/assets/img/advisors/alex-yastremski.jpg",
"socialLinks": [
{
"socialIcon": "fa-linkedin",
"link": "https://www.linkedin.com/in/alex-yastremski-b1889514/"
}
],
"jobTitle": "Adviser",
"description": "Luật sư Pháp lý San Francisco, California Chuyên gia kiểm soát/tuân thủ chuỗi khối . Giám đốc pháp lý tại Bitfury Group Ltd <br/> Cố vấn Fintach tại Bingham McCutchen LLP",
"logos": [
{
"alt": "",
"src": "//d30l7y24ijbkbs.cloudfront.net/assets/img/landing/companies-advisor/bitfury.jpg"
}
],
"video": ""