blockchain-theme 1.0.5 → 1.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -1
- package/package.json +26 -2
- package/skin/skin_000001.json +4 -2
- package/skin/skin_000003.json +4 -2
- package/skin/skin_000004.json +4 -2
- package/skin/skin_000005.json +4 -2
- package/skin/skin_001712.json +4 -2
- package/skin/skin_001802.json +4 -2
- package/skin/skin_1.json +4 -2
- package/skin/skin_2.json +4 -2
- package/skin/skin_3.json +4 -2
- package/skin/skin_4.json +4 -2
- package/themeColor/skin_000001.css +2 -0
- package/themeColor/skin_000003.css +2 -0
- package/themeColor/skin_000004.css +2 -0
- package/themeColor/skin_000005.css +2 -0
- package/themeColor/skin_001712.css +2 -0
- package/themeColor/skin_001802.css +2 -0
- package/themeColorJson/skin_000001.json +2 -0
- package/themeColorJson/skin_000003.json +2 -0
- package/themeColorJson/skin_000004.json +2 -0
- package/themeColorJson/skin_000005.json +2 -0
- package/themeColorJson/skin_001712.json +2 -0
- package/themeColorJson/skin_001802.json +2 -0
- package/themeImgJson/imgMap_1.json +36 -6
- package/themeImgJson/imgMap_2.json +36 -6
- package/themeImgJson/imgMap_3.json +35 -6
- package/themeImgJson/imgMap_4.json +36 -6
package/README.md
CHANGED
|
@@ -1 +1,17 @@
|
|
|
1
|
-
#
|
|
1
|
+
# 默认语言包
|
|
2
|
+
|
|
3
|
+
* 项目使用的默认语言包,商户可在商户后台下载并修改上传,修改后以商户修改后的语言包为准
|
|
4
|
+
* 添加多语言文案后按照 对应的文件夹 执行上传命令,会上传到 OSS,路径 http://fe-sources.oss-accelerate.aliyuncs.com/locales/文件夹名/语言包名.json
|
|
5
|
+
|
|
6
|
+
## 文件夹及执行命令
|
|
7
|
+
|
|
8
|
+
1. admin:商户后台 语言包 -- 上传执行 npm run uploadAdmin
|
|
9
|
+
2. app: APP 端语言包 -- 上传执行 npm run uploadApp
|
|
10
|
+
3. web:PC和H5 语言包 -- 上传执行 npm run uploadWeb
|
|
11
|
+
4. theme:主题图片 -- 上传执行 npm run uploadThemeImage(会同时上传imgMap.json)
|
|
12
|
+
5. themeColor:主题颜色 -- 上传执行 npm run uploadThemeColor(会同时上传colorMap.json)
|
|
13
|
+
6. updateThemeImage:更新主题图片 -- 上传执行 npm run updateThemeImage(上传指定的图片,用于修改图片时,修改IMG_LIST环境变量,格式为temp/theme/img,img包含后缀,并执行updateThemeImage)
|
|
14
|
+
|
|
15
|
+
## 文件信息
|
|
16
|
+
themeImg下文件名对应关系: 1:okx 2:币安-几何 3:bybit-3D橙 4:自定义-3D黑白
|
|
17
|
+
|
package/package.json
CHANGED
|
@@ -1,11 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blockchain-theme",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "chainup",
|
|
6
6
|
"main": "theme.js",
|
|
7
7
|
"license": "ISC",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@aws-sdk/client-s3": "^3.886.0",
|
|
10
|
+
"@aws-sdk/node-http-handler": "^3.374.0",
|
|
11
|
+
"ali-oss": "^6.9.1",
|
|
12
|
+
"cross-env": "^7.0.2",
|
|
13
|
+
"https-proxy-agent": "^7.0.6",
|
|
14
|
+
"mime-types": "^3.0.1",
|
|
15
|
+
"tinify": "^1.8.1",
|
|
16
|
+
"child_process": "^1.0.2"
|
|
17
|
+
},
|
|
8
18
|
"scripts": {
|
|
9
|
-
"
|
|
19
|
+
"uploadWeb": "cross-env NODE_ENV=web node ./uploadLocale.js",
|
|
20
|
+
"uploadAdmin": "cross-env NODE_ENV=admin node ./uploadLocale.js",
|
|
21
|
+
"uploadApp": "cross-env NODE_ENV=app node ./uploadLocale.js",
|
|
22
|
+
"uploadSkin": "node ./uploadSkin.js",
|
|
23
|
+
"uploadIcon": "node ./uploadIcon.js",
|
|
24
|
+
"uploadSkinImage": "node ./uploadSkinImage.js",
|
|
25
|
+
"uploadThemeColor": "node ./uploadThemeColor.js && npm run uploadColorMap",
|
|
26
|
+
"uploadColorMap": "node cssToJson.js && node ./uploadColorMap.js",
|
|
27
|
+
"uploadThemeImage": "node ./uploadThemeImage.js && npm run uploadImgMap",
|
|
28
|
+
"uploadImgMap": "node ./uploadImgMap.js",
|
|
29
|
+
"publish-package": "node ./npmPublish.js",
|
|
30
|
+
"updateThemeImage": "cross-env IMG_LIST=1/dark/toLoan_banner.webp,1/dark/toLoan_banner_h5.webp node ./uploadThemeImage.js"
|
|
31
|
+
},
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"registry": "https://nexus.dw2nn.com/repository/npm-hosted"
|
|
10
34
|
}
|
|
11
35
|
}
|
package/skin/skin_000001.json
CHANGED
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
"0, 0, 0, 1",
|
|
75
75
|
"144, 144, 144, 1",
|
|
76
76
|
"106, 106, 106, 1",
|
|
77
|
-
"47, 47, 47, 1"
|
|
77
|
+
"47, 47, 47, 1",
|
|
78
|
+
"255, 255, 255, 1"
|
|
78
79
|
]
|
|
79
80
|
},
|
|
80
81
|
{
|
|
@@ -478,7 +479,8 @@
|
|
|
478
479
|
"255, 255, 255, 1",
|
|
479
480
|
"160, 162, 170, 1",
|
|
480
481
|
"96, 98, 102, 1",
|
|
481
|
-
"247, 247, 247, 1"
|
|
482
|
+
"247, 247, 247, 1",
|
|
483
|
+
"255, 255, 255, 1"
|
|
482
484
|
]
|
|
483
485
|
},
|
|
484
486
|
{
|
package/skin/skin_000003.json
CHANGED
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
"0, 0, 0, 1",
|
|
75
75
|
"144, 144, 144, 1",
|
|
76
76
|
"106, 106, 106, 1",
|
|
77
|
-
"47, 47, 47, 1"
|
|
77
|
+
"47, 47, 47, 1",
|
|
78
|
+
"255, 255, 255, 1"
|
|
78
79
|
]
|
|
79
80
|
},
|
|
80
81
|
{
|
|
@@ -481,7 +482,8 @@
|
|
|
481
482
|
"255, 255, 255, 1",
|
|
482
483
|
"160, 162, 170, 1",
|
|
483
484
|
"96, 98, 102, 1",
|
|
484
|
-
"247, 247, 247, 1"
|
|
485
|
+
"247, 247, 247, 1",
|
|
486
|
+
"255, 255, 255, 1"
|
|
485
487
|
]
|
|
486
488
|
},
|
|
487
489
|
{
|
package/skin/skin_000004.json
CHANGED
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
"0, 0, 0, 1",
|
|
75
75
|
"144, 144, 144, 1",
|
|
76
76
|
"106, 106, 106, 1",
|
|
77
|
-
"47, 47, 47, 1"
|
|
77
|
+
"47, 47, 47, 1",
|
|
78
|
+
"255, 255, 255, 1"
|
|
78
79
|
]
|
|
79
80
|
},
|
|
80
81
|
{
|
|
@@ -481,7 +482,8 @@
|
|
|
481
482
|
"255, 255, 255, 1",
|
|
482
483
|
"160, 162, 170, 1",
|
|
483
484
|
"96, 98, 102, 1",
|
|
484
|
-
"247, 247, 247, 1"
|
|
485
|
+
"247, 247, 247, 1",
|
|
486
|
+
"255, 255, 255, 1"
|
|
485
487
|
]
|
|
486
488
|
},
|
|
487
489
|
{
|
package/skin/skin_000005.json
CHANGED
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
"0, 0, 0, 1",
|
|
75
75
|
"144, 144, 144, 1",
|
|
76
76
|
"106, 106, 106, 1",
|
|
77
|
-
"47, 47, 47, 1"
|
|
77
|
+
"47, 47, 47, 1",
|
|
78
|
+
"255, 255, 255, 1"
|
|
78
79
|
]
|
|
79
80
|
},
|
|
80
81
|
{
|
|
@@ -481,7 +482,8 @@
|
|
|
481
482
|
"255, 255, 255, 1",
|
|
482
483
|
"160, 162, 170, 1",
|
|
483
484
|
"96, 98, 102, 1",
|
|
484
|
-
"247, 247, 247, 1"
|
|
485
|
+
"247, 247, 247, 1",
|
|
486
|
+
"255, 255, 255, 1"
|
|
485
487
|
]
|
|
486
488
|
},
|
|
487
489
|
{
|
package/skin/skin_001712.json
CHANGED
|
@@ -73,7 +73,8 @@
|
|
|
73
73
|
"0, 0, 0, 1",
|
|
74
74
|
"144, 144, 144, 1",
|
|
75
75
|
"106, 106, 106, 1",
|
|
76
|
-
"47, 47, 47, 1"
|
|
76
|
+
"47, 47, 47, 1",
|
|
77
|
+
"255, 255, 255, 1"
|
|
77
78
|
]
|
|
78
79
|
},
|
|
79
80
|
{
|
|
@@ -474,7 +475,8 @@
|
|
|
474
475
|
"255, 255, 255, 1",
|
|
475
476
|
"160, 162, 170, 1",
|
|
476
477
|
"96, 98, 102, 1",
|
|
477
|
-
"247, 247, 247, 1"
|
|
478
|
+
"247, 247, 247, 1",
|
|
479
|
+
"255, 255, 255, 1"
|
|
478
480
|
]
|
|
479
481
|
},
|
|
480
482
|
{
|
package/skin/skin_001802.json
CHANGED
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
"0, 0, 0, 1",
|
|
75
75
|
"144, 144, 144, 1",
|
|
76
76
|
"106, 106, 106, 1",
|
|
77
|
-
"47, 47, 47, 1"
|
|
77
|
+
"47, 47, 47, 1",
|
|
78
|
+
"255, 255, 255, 1"
|
|
78
79
|
]
|
|
79
80
|
},
|
|
80
81
|
{
|
|
@@ -478,7 +479,8 @@
|
|
|
478
479
|
"255, 255, 255, 1",
|
|
479
480
|
"160, 162, 170, 1",
|
|
480
481
|
"96, 98, 102, 1",
|
|
481
|
-
"247, 247, 247, 1"
|
|
482
|
+
"247, 247, 247, 1",
|
|
483
|
+
"255, 255, 255, 1"
|
|
482
484
|
]
|
|
483
485
|
},
|
|
484
486
|
{
|
package/skin/skin_1.json
CHANGED
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
"0, 0, 0, 1",
|
|
75
75
|
"144, 144, 144, 1",
|
|
76
76
|
"106, 106, 106, 1",
|
|
77
|
-
"47, 47, 47, 1"
|
|
77
|
+
"47, 47, 47, 1",
|
|
78
|
+
"0, 0, 0, 1"
|
|
78
79
|
]
|
|
79
80
|
},
|
|
80
81
|
{
|
|
@@ -476,7 +477,8 @@
|
|
|
476
477
|
"255, 255, 255, 1",
|
|
477
478
|
"160, 162, 170, 1",
|
|
478
479
|
"96, 98, 102, 1",
|
|
479
|
-
"247, 247, 247, 1"
|
|
480
|
+
"247, 247, 247, 1",
|
|
481
|
+
"255, 255, 255, 1"
|
|
480
482
|
]
|
|
481
483
|
},
|
|
482
484
|
{
|
package/skin/skin_2.json
CHANGED
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
"0, 0, 0, 1",
|
|
75
75
|
"144, 144, 144, 1",
|
|
76
76
|
"106, 106, 106, 1",
|
|
77
|
-
"47, 47, 47, 1"
|
|
77
|
+
"47, 47, 47, 1",
|
|
78
|
+
"255, 255, 255, 1"
|
|
78
79
|
]
|
|
79
80
|
},
|
|
80
81
|
{
|
|
@@ -479,7 +480,8 @@
|
|
|
479
480
|
"255, 255, 255, 1",
|
|
480
481
|
"160, 162, 170, 1",
|
|
481
482
|
"96, 98, 102, 1",
|
|
482
|
-
"247, 247, 247, 1"
|
|
483
|
+
"247, 247, 247, 1",
|
|
484
|
+
"255, 255, 255, 1"
|
|
483
485
|
]
|
|
484
486
|
},
|
|
485
487
|
{
|
package/skin/skin_3.json
CHANGED
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
"0, 0, 0, 1",
|
|
75
75
|
"144, 144, 144, 1",
|
|
76
76
|
"106, 106, 106, 1",
|
|
77
|
-
"47, 47, 47, 1"
|
|
77
|
+
"47, 47, 47, 1",
|
|
78
|
+
"255, 255, 255, 1"
|
|
78
79
|
]
|
|
79
80
|
},
|
|
80
81
|
{
|
|
@@ -479,7 +480,8 @@
|
|
|
479
480
|
"255, 255, 255, 1",
|
|
480
481
|
"160, 162, 170, 1",
|
|
481
482
|
"96, 98, 102, 1",
|
|
482
|
-
"247, 247, 247, 1"
|
|
483
|
+
"247, 247, 247, 1",
|
|
484
|
+
"255, 255, 255, 1"
|
|
483
485
|
]
|
|
484
486
|
},
|
|
485
487
|
{
|
package/skin/skin_4.json
CHANGED
|
@@ -74,7 +74,8 @@
|
|
|
74
74
|
"0, 0, 0, 1",
|
|
75
75
|
"144, 144, 144, 1",
|
|
76
76
|
"106, 106, 106, 1",
|
|
77
|
-
"47, 47, 47, 1"
|
|
77
|
+
"47, 47, 47, 1",
|
|
78
|
+
"255, 255, 255, 1"
|
|
78
79
|
]
|
|
79
80
|
},
|
|
80
81
|
{
|
|
@@ -476,7 +477,8 @@
|
|
|
476
477
|
"255, 255, 255, 1",
|
|
477
478
|
"160, 162, 170, 1",
|
|
478
479
|
"96, 98, 102, 1",
|
|
479
|
-
"247, 247, 247, 1"
|
|
480
|
+
"247, 247, 247, 1",
|
|
481
|
+
"255, 255, 255, 1"
|
|
480
482
|
]
|
|
481
483
|
},
|
|
482
484
|
{
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
--special-4: rgba(144, 144, 144, 1);
|
|
39
39
|
--special-5: rgba(106, 106, 106, 1);
|
|
40
40
|
--special-6: rgba(47, 47, 47, 1);
|
|
41
|
+
--special-7: rgba(255, 255, 255, 1);
|
|
41
42
|
--opacity-1: rgba(43, 97, 255, 0.1);
|
|
42
43
|
--opacity-2: rgba(43, 97, 255, 0.2);
|
|
43
44
|
--opacity-3: rgba(43, 97, 255, 0.3);
|
|
@@ -81,6 +82,7 @@
|
|
|
81
82
|
--special-4: rgba(160, 162, 170, 1);
|
|
82
83
|
--special-5: rgba(96, 98, 102, 1);
|
|
83
84
|
--special-6: rgba(247, 247, 247, 1);
|
|
85
|
+
--special-7: rgba(255, 255, 255, 1);
|
|
84
86
|
--opacity-1: rgba(43, 97, 255, 0.1);
|
|
85
87
|
--opacity-2: rgba(43, 97, 255, 0.2);
|
|
86
88
|
--opacity-3: rgba(43, 97, 255, 0.3);
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
--special-4: rgba(144, 144, 144, 1);
|
|
38
38
|
--special-5: rgba(106, 106, 106, 1);
|
|
39
39
|
--special-6: rgba(47, 47, 47, 1);
|
|
40
|
+
--special-7: rgba(255, 255, 255, 1);
|
|
40
41
|
--opacity-1: rgba(0, 181, 149, 0.1);
|
|
41
42
|
--opacity-2: rgba(0, 181, 149, 0.2);
|
|
42
43
|
--opacity-3: rgba(0, 181, 149, 0.3);
|
|
@@ -80,6 +81,7 @@
|
|
|
80
81
|
--special-4: rgba(160, 162, 170, 1);
|
|
81
82
|
--special-5: rgba(96, 98, 102, 1);
|
|
82
83
|
--special-6: rgba(247, 247, 247, 1);
|
|
84
|
+
--special-7: rgba(255, 255, 255, 1);
|
|
83
85
|
--opacity-1: rgba(0, 181, 149, 0.1);
|
|
84
86
|
--opacity-2: rgba(0, 181, 149, 0.2);
|
|
85
87
|
--opacity-3: rgba(0, 181, 149, 0.3);
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
--special-4: rgba(144, 144, 144, 1);
|
|
38
38
|
--special-5: rgba(106, 106, 106, 1);
|
|
39
39
|
--special-6: rgba(47, 47, 47, 1);
|
|
40
|
+
--special-7: rgba(255, 255, 255, 1);
|
|
40
41
|
--opacity-1: rgba(104, 66, 255, 0.1);
|
|
41
42
|
--opacity-2: rgba(104, 66, 255, 0.2);
|
|
42
43
|
--opacity-3: rgba(104, 66, 255, 0.3);
|
|
@@ -80,6 +81,7 @@
|
|
|
80
81
|
--special-4: rgba(160, 162, 170, 1);
|
|
81
82
|
--special-5: rgba(96, 98, 102, 1);
|
|
82
83
|
--special-6: rgba(247, 247, 247, 1);
|
|
84
|
+
--special-7: rgba(255, 255, 255, 1);
|
|
83
85
|
--opacity-1: rgba(104, 66, 255, 0.1);
|
|
84
86
|
--opacity-2: rgba(104, 66, 255, 0.2);
|
|
85
87
|
--opacity-3: rgba(104, 66, 255, 0.3);
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
--special-4: rgba(144, 144, 144, 1);
|
|
38
38
|
--special-5: rgba(106, 106, 106, 1);
|
|
39
39
|
--special-6: rgba(47, 47, 47, 1);
|
|
40
|
+
--special-7: rgba(255, 255, 255, 1);
|
|
40
41
|
--opacity-1: rgba(255, 213, 50, 0.1);
|
|
41
42
|
--opacity-2: rgba(255, 213, 50, 0.2);
|
|
42
43
|
--opacity-3: rgba(255, 213, 50, 0.3);
|
|
@@ -80,6 +81,7 @@
|
|
|
80
81
|
--special-4: rgba(160, 162, 170, 1);
|
|
81
82
|
--special-5: rgba(96, 98, 102, 1);
|
|
82
83
|
--special-6: rgba(247, 247, 247, 1);
|
|
84
|
+
--special-7: rgba(255, 255, 255, 1);
|
|
83
85
|
--opacity-1: rgba(255, 213, 50, 0.1);
|
|
84
86
|
--opacity-2: rgba(255, 213, 50, 0.2);
|
|
85
87
|
--opacity-3: rgba(255, 213, 50, 0.3);
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
--special-4: rgba(144, 144, 144, 1);
|
|
38
38
|
--special-5: rgba(106, 106, 106, 1);
|
|
39
39
|
--special-6: rgba(47, 47, 47, 1);
|
|
40
|
+
--special-7: rgba(255, 255, 255, 1);
|
|
40
41
|
--opacity-1: rgba(0, 162, 255, 0.1);
|
|
41
42
|
--opacity-2: rgba(0, 162, 255, 0.2);
|
|
42
43
|
--opacity-3: rgba(0, 162, 255, 0.3);
|
|
@@ -80,6 +81,7 @@
|
|
|
80
81
|
--special-4: rgba(160, 162, 170, 1);
|
|
81
82
|
--special-5: rgba(96, 98, 102, 1);
|
|
82
83
|
--special-6: rgba(247, 247, 247, 1);
|
|
84
|
+
--special-7: rgba(255, 255, 255, 1);
|
|
83
85
|
--opacity-1: rgba(0, 162, 255, 0.1);
|
|
84
86
|
--opacity-2: rgba(0, 162, 255, 0.2);
|
|
85
87
|
--opacity-3: rgba(0, 162, 255, 0.3);
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
--special-4: rgba(144, 144, 144, 1);
|
|
38
38
|
--special-5: rgba(106, 106, 106, 1);
|
|
39
39
|
--special-6: rgba(47, 47, 47, 1);
|
|
40
|
+
--special-7: rgba(255, 255, 255, 1);
|
|
40
41
|
--opacity-1: rgba(100, 217, 250, 0.1);
|
|
41
42
|
--opacity-2: rgba(100, 217, 250, 0.2);
|
|
42
43
|
--opacity-3: rgba(100, 217, 250, 0.3);
|
|
@@ -80,6 +81,7 @@
|
|
|
80
81
|
--special-4: rgba(160, 162, 170, 1);
|
|
81
82
|
--special-5: rgba(96, 98, 102, 1);
|
|
82
83
|
--special-6: rgba(247, 247, 247, 1);
|
|
84
|
+
--special-7: rgba(255, 255, 255, 1);
|
|
83
85
|
--opacity-1: rgba(100, 217, 250, 0.1);
|
|
84
86
|
--opacity-2: rgba(100, 217, 250, 0.2);
|
|
85
87
|
--opacity-3: rgba(100, 217, 250, 0.3);
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"special-4-cl": "rgba(144, 144, 144, 1)",
|
|
39
39
|
"special-5-cl": "rgba(106, 106, 106, 1)",
|
|
40
40
|
"special-6-cl": "rgba(47, 47, 47, 1)",
|
|
41
|
+
"special-7-cl": "rgba(255, 255, 255, 1)",
|
|
41
42
|
"opacity-1-cl": "rgba(43, 97, 255, 0.1)",
|
|
42
43
|
"opacity-2-cl": "rgba(43, 97, 255, 0.2)",
|
|
43
44
|
"opacity-3-cl": "rgba(43, 97, 255, 0.3)"
|
|
@@ -81,6 +82,7 @@
|
|
|
81
82
|
"special-4-cl": "rgba(160, 162, 170, 1)",
|
|
82
83
|
"special-5-cl": "rgba(96, 98, 102, 1)",
|
|
83
84
|
"special-6-cl": "rgba(247, 247, 247, 1)",
|
|
85
|
+
"special-7-cl": "rgba(255, 255, 255, 1)",
|
|
84
86
|
"opacity-1-cl": "rgba(43, 97, 255, 0.1)",
|
|
85
87
|
"opacity-2-cl": "rgba(43, 97, 255, 0.2)",
|
|
86
88
|
"opacity-3-cl": "rgba(43, 97, 255, 0.3)"
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"special-4-cl": "rgba(144, 144, 144, 1)",
|
|
39
39
|
"special-5-cl": "rgba(106, 106, 106, 1)",
|
|
40
40
|
"special-6-cl": "rgba(47, 47, 47, 1)",
|
|
41
|
+
"special-7-cl": "rgba(255, 255, 255, 1)",
|
|
41
42
|
"opacity-1-cl": "rgba(0, 181, 149, 0.1)",
|
|
42
43
|
"opacity-2-cl": "rgba(0, 181, 149, 0.2)",
|
|
43
44
|
"opacity-3-cl": "rgba(0, 181, 149, 0.3)"
|
|
@@ -81,6 +82,7 @@
|
|
|
81
82
|
"special-4-cl": "rgba(160, 162, 170, 1)",
|
|
82
83
|
"special-5-cl": "rgba(96, 98, 102, 1)",
|
|
83
84
|
"special-6-cl": "rgba(247, 247, 247, 1)",
|
|
85
|
+
"special-7-cl": "rgba(255, 255, 255, 1)",
|
|
84
86
|
"opacity-1-cl": "rgba(0, 181, 149, 0.1)",
|
|
85
87
|
"opacity-2-cl": "rgba(0, 181, 149, 0.2)",
|
|
86
88
|
"opacity-3-cl": "rgba(0, 181, 149, 0.3)"
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"special-4-cl": "rgba(144, 144, 144, 1)",
|
|
39
39
|
"special-5-cl": "rgba(106, 106, 106, 1)",
|
|
40
40
|
"special-6-cl": "rgba(47, 47, 47, 1)",
|
|
41
|
+
"special-7-cl": "rgba(255, 255, 255, 1)",
|
|
41
42
|
"opacity-1-cl": "rgba(104, 66, 255, 0.1)",
|
|
42
43
|
"opacity-2-cl": "rgba(104, 66, 255, 0.2)",
|
|
43
44
|
"opacity-3-cl": "rgba(104, 66, 255, 0.3)"
|
|
@@ -81,6 +82,7 @@
|
|
|
81
82
|
"special-4-cl": "rgba(160, 162, 170, 1)",
|
|
82
83
|
"special-5-cl": "rgba(96, 98, 102, 1)",
|
|
83
84
|
"special-6-cl": "rgba(247, 247, 247, 1)",
|
|
85
|
+
"special-7-cl": "rgba(255, 255, 255, 1)",
|
|
84
86
|
"opacity-1-cl": "rgba(104, 66, 255, 0.1)",
|
|
85
87
|
"opacity-2-cl": "rgba(104, 66, 255, 0.2)",
|
|
86
88
|
"opacity-3-cl": "rgba(104, 66, 255, 0.3)"
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"special-4-cl": "rgba(144, 144, 144, 1)",
|
|
39
39
|
"special-5-cl": "rgba(106, 106, 106, 1)",
|
|
40
40
|
"special-6-cl": "rgba(47, 47, 47, 1)",
|
|
41
|
+
"special-7-cl": "rgba(255, 255, 255, 1)",
|
|
41
42
|
"opacity-1-cl": "rgba(255, 213, 50, 0.1)",
|
|
42
43
|
"opacity-2-cl": "rgba(255, 213, 50, 0.2)",
|
|
43
44
|
"opacity-3-cl": "rgba(255, 213, 50, 0.3)"
|
|
@@ -81,6 +82,7 @@
|
|
|
81
82
|
"special-4-cl": "rgba(160, 162, 170, 1)",
|
|
82
83
|
"special-5-cl": "rgba(96, 98, 102, 1)",
|
|
83
84
|
"special-6-cl": "rgba(247, 247, 247, 1)",
|
|
85
|
+
"special-7-cl": "rgba(255, 255, 255, 1)",
|
|
84
86
|
"opacity-1-cl": "rgba(255, 213, 50, 0.1)",
|
|
85
87
|
"opacity-2-cl": "rgba(255, 213, 50, 0.2)",
|
|
86
88
|
"opacity-3-cl": "rgba(255, 213, 50, 0.3)"
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"special-4-cl": "rgba(144, 144, 144, 1)",
|
|
39
39
|
"special-5-cl": "rgba(106, 106, 106, 1)",
|
|
40
40
|
"special-6-cl": "rgba(47, 47, 47, 1)",
|
|
41
|
+
"special-7-cl": "rgba(255, 255, 255, 1)",
|
|
41
42
|
"opacity-1-cl": "rgba(0, 162, 255, 0.1)",
|
|
42
43
|
"opacity-2-cl": "rgba(0, 162, 255, 0.2)",
|
|
43
44
|
"opacity-3-cl": "rgba(0, 162, 255, 0.3)"
|
|
@@ -81,6 +82,7 @@
|
|
|
81
82
|
"special-4-cl": "rgba(160, 162, 170, 1)",
|
|
82
83
|
"special-5-cl": "rgba(96, 98, 102, 1)",
|
|
83
84
|
"special-6-cl": "rgba(247, 247, 247, 1)",
|
|
85
|
+
"special-7-cl": "rgba(255, 255, 255, 1)",
|
|
84
86
|
"opacity-1-cl": "rgba(0, 162, 255, 0.1)",
|
|
85
87
|
"opacity-2-cl": "rgba(0, 162, 255, 0.2)",
|
|
86
88
|
"opacity-3-cl": "rgba(0, 162, 255, 0.3)"
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"special-4-cl": "rgba(144, 144, 144, 1)",
|
|
39
39
|
"special-5-cl": "rgba(106, 106, 106, 1)",
|
|
40
40
|
"special-6-cl": "rgba(47, 47, 47, 1)",
|
|
41
|
+
"special-7-cl": "rgba(255, 255, 255, 1)",
|
|
41
42
|
"opacity-1-cl": "rgba(100, 217, 250, 0.1)",
|
|
42
43
|
"opacity-2-cl": "rgba(100, 217, 250, 0.2)",
|
|
43
44
|
"opacity-3-cl": "rgba(100, 217, 250, 0.3)"
|
|
@@ -81,6 +82,7 @@
|
|
|
81
82
|
"special-4-cl": "rgba(160, 162, 170, 1)",
|
|
82
83
|
"special-5-cl": "rgba(96, 98, 102, 1)",
|
|
83
84
|
"special-6-cl": "rgba(247, 247, 247, 1)",
|
|
85
|
+
"special-7-cl": "rgba(255, 255, 255, 1)",
|
|
84
86
|
"opacity-1-cl": "rgba(100, 217, 250, 0.1)",
|
|
85
87
|
"opacity-2-cl": "rgba(100, 217, 250, 0.2)",
|
|
86
88
|
"opacity-3-cl": "rgba(100, 217, 250, 0.3)"
|
|
@@ -107,13 +107,12 @@
|
|
|
107
107
|
"taskCenter_reward_center_left": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/taskCenter_reward_center_left.webp",
|
|
108
108
|
"futures_koltrade_banner_web": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/futures_koltrade_banner_web.webp",
|
|
109
109
|
"financing_banner_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/financing_banner_3.webp",
|
|
110
|
-
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/download_bg.webp",
|
|
111
110
|
"public_system_error": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/public_system_error.webp",
|
|
112
111
|
"broker_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/broker_banner.webp",
|
|
113
112
|
"futuresbonus_banner_web": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/futuresbonus_banner_web.webp",
|
|
114
113
|
"prohibit_withdrawals": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/prohibit_withdrawals.webp",
|
|
115
114
|
"h5_unsupport": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/h5_unsupport.png",
|
|
116
|
-
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/gridStrategy_banner.
|
|
115
|
+
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/gridStrategy_banner.webp",
|
|
117
116
|
"promotion_dashboard_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/promotion_dashboard_2.webp",
|
|
118
117
|
"promotion_dashboard_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/promotion_dashboard_1.webp",
|
|
119
118
|
"broker_ranking_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/broker_ranking_1.webp",
|
|
@@ -126,7 +125,23 @@
|
|
|
126
125
|
"download_flag_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/download_flag_2.webp",
|
|
127
126
|
"download_flag_4": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/download_flag_4.webp",
|
|
128
127
|
"download_flag_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/download_flag_1.webp",
|
|
129
|
-
"
|
|
128
|
+
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/download_bg.webp",
|
|
129
|
+
"floatLayerIcon": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/floatLayerIcon.webp",
|
|
130
|
+
"futures_grid_guide-4": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/futures_grid_guide-4.webp",
|
|
131
|
+
"futures_grid_guide-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/futures_grid_guide-3.webp",
|
|
132
|
+
"futures_grid_guide-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/futures_grid_guide-2.webp",
|
|
133
|
+
"futures_grid_guide-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/futures_grid_guide-1.webp",
|
|
134
|
+
"innovation_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/innovation_banner.webp",
|
|
135
|
+
"innovation_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/innovation_banner_h5.webp",
|
|
136
|
+
"follow_risk_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/follow_risk_1.png",
|
|
137
|
+
"follow_risk_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/follow_risk_2.png",
|
|
138
|
+
"follow_risk_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/follow_risk_3.png",
|
|
139
|
+
"fridend_icon_Steps-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/fridend_icon_Steps-1.webp",
|
|
140
|
+
"fridend_icon_Steps-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/fridend_icon_Steps-3.webp",
|
|
141
|
+
"fridend_icon_Steps-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/fridend_icon_Steps-2.webp",
|
|
142
|
+
"fridend_icon_Steps_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/fridend_icon_Steps_1.webp",
|
|
143
|
+
"fridend_icon_Steps_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/fridend_icon_Steps_2.webp",
|
|
144
|
+
"fridend_icon_Steps_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/dark/fridend_icon_Steps_3.webp"
|
|
130
145
|
},
|
|
131
146
|
"light": {
|
|
132
147
|
"alertImg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/alertImg.webp",
|
|
@@ -236,13 +251,12 @@
|
|
|
236
251
|
"companyApply_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/companyApply_banner.webp",
|
|
237
252
|
"futures_koltrade_banner_web": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/futures_koltrade_banner_web.webp",
|
|
238
253
|
"financing_banner_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/financing_banner_3.webp",
|
|
239
|
-
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/download_bg.webp",
|
|
240
254
|
"public_system_error": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/public_system_error.webp",
|
|
241
255
|
"broker_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/broker_banner.webp",
|
|
242
256
|
"futuresbonus_banner_web": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/futuresbonus_banner_web.webp",
|
|
243
257
|
"prohibit_withdrawals": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/prohibit_withdrawals.webp",
|
|
244
258
|
"h5_unsupport": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/h5_unsupport.png",
|
|
245
|
-
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/gridStrategy_banner.
|
|
259
|
+
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/gridStrategy_banner.webp",
|
|
246
260
|
"promotion_dashboard_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/promotion_dashboard_2.webp",
|
|
247
261
|
"promotion_dashboard_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/promotion_dashboard_1.webp",
|
|
248
262
|
"broker_ranking_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/broker_ranking_3.webp",
|
|
@@ -255,6 +269,22 @@
|
|
|
255
269
|
"download_flag_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/download_flag_2.webp",
|
|
256
270
|
"download_flag_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/download_flag_3.webp",
|
|
257
271
|
"download_flag_4": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/download_flag_4.webp",
|
|
258
|
-
"
|
|
272
|
+
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/download_bg.webp",
|
|
273
|
+
"floatLayerIcon": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/floatLayerIcon.webp",
|
|
274
|
+
"futures_grid_guide-4": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/futures_grid_guide-4.webp",
|
|
275
|
+
"futures_grid_guide-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/futures_grid_guide-2.webp",
|
|
276
|
+
"futures_grid_guide-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/futures_grid_guide-3.webp",
|
|
277
|
+
"futures_grid_guide-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/futures_grid_guide-1.webp",
|
|
278
|
+
"innovation_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/innovation_banner_h5.webp",
|
|
279
|
+
"innovation_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/innovation_banner.webp",
|
|
280
|
+
"follow_risk_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/follow_risk_1.png",
|
|
281
|
+
"follow_risk_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/follow_risk_2.png",
|
|
282
|
+
"follow_risk_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/follow_risk_3.png",
|
|
283
|
+
"fridend_icon_Steps-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/fridend_icon_Steps-1.webp",
|
|
284
|
+
"fridend_icon_Steps-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/fridend_icon_Steps-2.webp",
|
|
285
|
+
"fridend_icon_Steps-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/fridend_icon_Steps-3.webp",
|
|
286
|
+
"fridend_icon_Steps_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/fridend_icon_Steps_2.webp",
|
|
287
|
+
"fridend_icon_Steps_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/fridend_icon_Steps_1.webp",
|
|
288
|
+
"fridend_icon_Steps_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/1/light/fridend_icon_Steps_3.webp"
|
|
259
289
|
}
|
|
260
290
|
}
|
|
@@ -104,7 +104,6 @@
|
|
|
104
104
|
"search_no_data": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/search_no_data.webp",
|
|
105
105
|
"promotion_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/promotion_banner_h5.webp",
|
|
106
106
|
"toLoan_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/toLoan_banner_h5.webp",
|
|
107
|
-
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/download_bg.webp",
|
|
108
107
|
"public_system_error": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/public_system_error.webp",
|
|
109
108
|
"broker_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/broker_banner.webp",
|
|
110
109
|
"launchpad_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/launchpad_banner.webp",
|
|
@@ -115,7 +114,7 @@
|
|
|
115
114
|
"futures_race_award_ranking_4_web": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/futures_race_award_ranking_4_web.webp",
|
|
116
115
|
"h5_unsupport": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/h5_unsupport.webp",
|
|
117
116
|
"prohibit_withdrawals": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/prohibit_withdrawals.webp",
|
|
118
|
-
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/gridStrategy_banner.
|
|
117
|
+
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/gridStrategy_banner.webp",
|
|
119
118
|
"promotion_dashboard_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/promotion_dashboard_1.webp",
|
|
120
119
|
"promotion_dashboard_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/promotion_dashboard_2.webp",
|
|
121
120
|
"broker_ranking_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/broker_ranking_2.webp",
|
|
@@ -124,7 +123,23 @@
|
|
|
124
123
|
"broker_ranking_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/broker_ranking_3.webp",
|
|
125
124
|
"trade_notopened": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/trade_notopened.webp",
|
|
126
125
|
"trade_notlogin": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/trade_notlogin.webp",
|
|
127
|
-
"
|
|
126
|
+
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/download_bg.webp",
|
|
127
|
+
"floatLayerIcon": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/floatLayerIcon.webp",
|
|
128
|
+
"futures_grid_guide-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/futures_grid_guide-3.webp",
|
|
129
|
+
"futures_grid_guide-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/futures_grid_guide-1.webp",
|
|
130
|
+
"futures_grid_guide-4": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/futures_grid_guide-4.webp",
|
|
131
|
+
"futures_grid_guide-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/futures_grid_guide-2.webp",
|
|
132
|
+
"innovation_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/innovation_banner.webp",
|
|
133
|
+
"innovation_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/innovation_banner_h5.webp",
|
|
134
|
+
"follow_risk_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/follow_risk_3.png",
|
|
135
|
+
"follow_risk_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/follow_risk_1.png",
|
|
136
|
+
"follow_risk_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/follow_risk_2.png",
|
|
137
|
+
"fridend_icon_Steps-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/fridend_icon_Steps-1.webp",
|
|
138
|
+
"fridend_icon_Steps-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/fridend_icon_Steps-3.webp",
|
|
139
|
+
"fridend_icon_Steps-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/fridend_icon_Steps-2.webp",
|
|
140
|
+
"fridend_icon_Steps_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/fridend_icon_Steps_1.webp",
|
|
141
|
+
"fridend_icon_Steps_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/fridend_icon_Steps_3.webp",
|
|
142
|
+
"fridend_icon_Steps_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/dark/fridend_icon_Steps_2.webp"
|
|
128
143
|
},
|
|
129
144
|
"light": {
|
|
130
145
|
"futuresbonus_collection_web": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/futuresbonus_collection_web.webp",
|
|
@@ -231,7 +246,6 @@
|
|
|
231
246
|
"download_phone": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/download_phone.webp",
|
|
232
247
|
"launchpad_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/launchpad_banner_h5.webp",
|
|
233
248
|
"taskCenter_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/taskCenter_banner_h5.webp",
|
|
234
|
-
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/download_bg.webp",
|
|
235
249
|
"public_system_error": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/public_system_error.webp",
|
|
236
250
|
"launchpad_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/launchpad_banner.webp",
|
|
237
251
|
"broker_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/broker_banner.webp",
|
|
@@ -242,7 +256,7 @@
|
|
|
242
256
|
"futures_race_award_ranking_3_web": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/futures_race_award_ranking_3_web.webp",
|
|
243
257
|
"h5_unsupport": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/h5_unsupport.webp",
|
|
244
258
|
"prohibit_withdrawals": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/prohibit_withdrawals.webp",
|
|
245
|
-
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/gridStrategy_banner.
|
|
259
|
+
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/gridStrategy_banner.webp",
|
|
246
260
|
"promotion_dashboard_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/promotion_dashboard_1.webp",
|
|
247
261
|
"promotion_dashboard_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/promotion_dashboard_2.webp",
|
|
248
262
|
"broker_ranking_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/broker_ranking_2.webp",
|
|
@@ -251,6 +265,22 @@
|
|
|
251
265
|
"broker_ranking_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/broker_ranking_1.webp",
|
|
252
266
|
"trade_notopened": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/trade_notopened.webp",
|
|
253
267
|
"trade_notlogin": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/trade_notlogin.webp",
|
|
254
|
-
"
|
|
268
|
+
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/download_bg.webp",
|
|
269
|
+
"floatLayerIcon": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/floatLayerIcon.webp",
|
|
270
|
+
"futures_grid_guide-4": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/futures_grid_guide-4.webp",
|
|
271
|
+
"futures_grid_guide-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/futures_grid_guide-2.webp",
|
|
272
|
+
"futures_grid_guide-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/futures_grid_guide-1.webp",
|
|
273
|
+
"futures_grid_guide-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/futures_grid_guide-3.webp",
|
|
274
|
+
"innovation_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/innovation_banner.webp",
|
|
275
|
+
"innovation_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/innovation_banner_h5.webp",
|
|
276
|
+
"follow_risk_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/follow_risk_2.png",
|
|
277
|
+
"follow_risk_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/follow_risk_1.png",
|
|
278
|
+
"follow_risk_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/follow_risk_3.png",
|
|
279
|
+
"fridend_icon_Steps-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/fridend_icon_Steps-2.webp",
|
|
280
|
+
"fridend_icon_Steps-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/fridend_icon_Steps-3.webp",
|
|
281
|
+
"fridend_icon_Steps-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/fridend_icon_Steps-1.webp",
|
|
282
|
+
"fridend_icon_Steps_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/fridend_icon_Steps_3.webp",
|
|
283
|
+
"fridend_icon_Steps_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/fridend_icon_Steps_1.webp",
|
|
284
|
+
"fridend_icon_Steps_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/2/light/fridend_icon_Steps_2.webp"
|
|
255
285
|
}
|
|
256
286
|
}
|
|
@@ -107,12 +107,11 @@
|
|
|
107
107
|
"taskCenter_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/taskCenter_banner_h5.webp",
|
|
108
108
|
"ipLimit_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/ipLimit_h5.webp",
|
|
109
109
|
"promotion_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/promotion_banner_h5.webp",
|
|
110
|
-
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/download_bg.webp",
|
|
111
110
|
"public_system_error": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/public_system_error.webp",
|
|
112
111
|
"futuresbonus_banner_web": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/futuresbonus_banner_web.webp",
|
|
113
112
|
"prohibit_withdrawals": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/prohibit_withdrawals.webp",
|
|
114
113
|
"h5_unsupport": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/h5_unsupport.webp",
|
|
115
|
-
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/gridStrategy_banner.
|
|
114
|
+
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/gridStrategy_banner.webp",
|
|
116
115
|
"promotion_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/promotion_banner.webp",
|
|
117
116
|
"broker_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/broker_banner.webp",
|
|
118
117
|
"promotion_dashboard_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/promotion_dashboard_1.webp",
|
|
@@ -124,7 +123,23 @@
|
|
|
124
123
|
"trade_notopened": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/trade_notopened.webp",
|
|
125
124
|
"trade_notlogin": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/trade_notlogin.webp",
|
|
126
125
|
"new_kyc_passport_c": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/new_kyc_passport_c.webp",
|
|
127
|
-
"
|
|
126
|
+
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/download_bg.webp",
|
|
127
|
+
"floatLayerIcon": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/floatLayerIcon.webp",
|
|
128
|
+
"futures_grid_guide-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/futures_grid_guide-2.webp",
|
|
129
|
+
"futures_grid_guide-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/futures_grid_guide-3.webp",
|
|
130
|
+
"futures_grid_guide-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/futures_grid_guide-1.webp",
|
|
131
|
+
"futures_grid_guide-4": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/futures_grid_guide-4.webp",
|
|
132
|
+
"innovation_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/innovation_banner_h5.webp",
|
|
133
|
+
"innovation_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/innovation_banner.webp",
|
|
134
|
+
"follow_risk_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/follow_risk_2.png",
|
|
135
|
+
"follow_risk_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/follow_risk_1.png",
|
|
136
|
+
"follow_risk_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/follow_risk_3.png",
|
|
137
|
+
"fridend_icon_Steps-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/fridend_icon_Steps-2.webp",
|
|
138
|
+
"fridend_icon_Steps-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/fridend_icon_Steps-3.webp",
|
|
139
|
+
"fridend_icon_Steps-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/fridend_icon_Steps-1.webp",
|
|
140
|
+
"fridend_icon_Steps_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/fridend_icon_Steps_3.webp",
|
|
141
|
+
"fridend_icon_Steps_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/fridend_icon_Steps_2.webp",
|
|
142
|
+
"fridend_icon_Steps_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/dark/fridend_icon_Steps_1.webp"
|
|
128
143
|
},
|
|
129
144
|
"light": {
|
|
130
145
|
"futures_race_people_web": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/futures_race_people_web.webp",
|
|
@@ -234,12 +249,11 @@
|
|
|
234
249
|
"promotion_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/promotion_banner_h5.webp",
|
|
235
250
|
"launchpad_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/launchpad_banner_h5.webp",
|
|
236
251
|
"search_no_data": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/search_no_data.webp",
|
|
237
|
-
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/download_bg.webp",
|
|
238
252
|
"public_system_error": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/public_system_error.webp",
|
|
239
253
|
"futuresbonus_banner_web": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/futuresbonus_banner_web.webp",
|
|
240
254
|
"h5_unsupport": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/h5_unsupport.webp",
|
|
241
255
|
"prohibit_withdrawals": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/prohibit_withdrawals.webp",
|
|
242
|
-
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/gridStrategy_banner.
|
|
256
|
+
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/gridStrategy_banner.webp",
|
|
243
257
|
"broker_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/broker_banner.webp",
|
|
244
258
|
"promotion_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/promotion_banner.webp",
|
|
245
259
|
"promotion_dashboard_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/promotion_dashboard_1.webp",
|
|
@@ -251,6 +265,21 @@
|
|
|
251
265
|
"trade_notlogin": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/trade_notlogin.webp",
|
|
252
266
|
"trade_notopened": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/trade_notopened.webp",
|
|
253
267
|
"new_kyc_passport_c": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/new_kyc_passport_c.webp",
|
|
254
|
-
"
|
|
268
|
+
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/download_bg.webp",
|
|
269
|
+
"floatLayerIcon": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/floatLayerIcon.webp",
|
|
270
|
+
"futures_grid_guide-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/futures_grid_guide-2.webp",
|
|
271
|
+
"futures_grid_guide-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/futures_grid_guide-3.webp",
|
|
272
|
+
"futures_grid_guide-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/futures_grid_guide-1.webp",
|
|
273
|
+
"futures_grid_guide-4": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/futures_grid_guide-4.webp",
|
|
274
|
+
"innovation_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/innovation_banner_h5.webp",
|
|
275
|
+
"innovation_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/innovation_banner.webp",
|
|
276
|
+
"follow_risk_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/follow_risk_2.png",
|
|
277
|
+
"follow_risk_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/follow_risk_1.png",
|
|
278
|
+
"follow_risk_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/follow_risk_3.png",
|
|
279
|
+
"fridend_icon_Steps-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/fridend_icon_Steps-1.webp",
|
|
280
|
+
"fridend_icon_Steps-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/fridend_icon_Steps-3.webp",
|
|
281
|
+
"fridend_icon_Steps-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/fridend_icon_Steps-2.webp",
|
|
282
|
+
"fridend_icon_Steps_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/fridend_icon_Steps_1.webp",
|
|
283
|
+
"fridend_icon_Steps_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/3/light/fridend_icon_Steps_3.webp"
|
|
255
284
|
}
|
|
256
285
|
}
|
|
@@ -107,12 +107,11 @@
|
|
|
107
107
|
"ipLimit_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/ipLimit_h5.webp",
|
|
108
108
|
"launchpad_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/launchpad_banner_h5.webp",
|
|
109
109
|
"promotion_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/promotion_banner_h5.webp",
|
|
110
|
-
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/download_bg.webp",
|
|
111
110
|
"public_system_error": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/public_system_error.webp",
|
|
112
111
|
"futuresbonus_banner_web": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/futuresbonus_banner_web.webp",
|
|
113
112
|
"prohibit_withdrawals": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/prohibit_withdrawals.webp",
|
|
114
113
|
"h5_unsupport": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/h5_unsupport.webp",
|
|
115
|
-
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/gridStrategy_banner.
|
|
114
|
+
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/gridStrategy_banner.webp",
|
|
116
115
|
"broker_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/broker_banner.webp",
|
|
117
116
|
"promotion_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/promotion_banner.webp",
|
|
118
117
|
"promotion_dashboard_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/promotion_dashboard_1.webp",
|
|
@@ -124,7 +123,23 @@
|
|
|
124
123
|
"trade_notlogin": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/trade_notlogin.webp",
|
|
125
124
|
"trade_notopened": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/trade_notopened.webp",
|
|
126
125
|
"new_kyc_passport_c": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/new_kyc_passport_c.webp",
|
|
127
|
-
"
|
|
126
|
+
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/download_bg.webp",
|
|
127
|
+
"floatLayerIcon": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/floatLayerIcon.webp",
|
|
128
|
+
"futures_grid_guide-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/futures_grid_guide-2.webp",
|
|
129
|
+
"futures_grid_guide-4": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/futures_grid_guide-4.webp",
|
|
130
|
+
"futures_grid_guide-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/futures_grid_guide-1.webp",
|
|
131
|
+
"futures_grid_guide-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/futures_grid_guide-3.webp",
|
|
132
|
+
"innovation_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/innovation_banner_h5.webp",
|
|
133
|
+
"innovation_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/innovation_banner.webp",
|
|
134
|
+
"follow_risk_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/follow_risk_3.png",
|
|
135
|
+
"follow_risk_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/follow_risk_2.png",
|
|
136
|
+
"follow_risk_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/follow_risk_1.png",
|
|
137
|
+
"fridend_icon_Steps-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/fridend_icon_Steps-2.webp",
|
|
138
|
+
"fridend_icon_Steps-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/fridend_icon_Steps-3.webp",
|
|
139
|
+
"fridend_icon_Steps-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/fridend_icon_Steps-1.webp",
|
|
140
|
+
"fridend_icon_Steps_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/fridend_icon_Steps_3.webp",
|
|
141
|
+
"fridend_icon_Steps_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/fridend_icon_Steps_2.webp",
|
|
142
|
+
"fridend_icon_Steps_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/dark/fridend_icon_Steps_1.webp"
|
|
128
143
|
},
|
|
129
144
|
"light": {
|
|
130
145
|
"futures_race_people_web": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/futures_race_people_web.webp",
|
|
@@ -234,12 +249,11 @@
|
|
|
234
249
|
"launchpad_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/launchpad_banner_h5.webp",
|
|
235
250
|
"promotion_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/promotion_banner_h5.webp",
|
|
236
251
|
"taskCenter_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/taskCenter_banner_h5.webp",
|
|
237
|
-
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/download_bg.webp",
|
|
238
252
|
"public_system_error": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/public_system_error.webp",
|
|
239
253
|
"futuresbonus_banner_web": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/futuresbonus_banner_web.webp",
|
|
240
254
|
"prohibit_withdrawals": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/prohibit_withdrawals.webp",
|
|
241
255
|
"h5_unsupport": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/h5_unsupport.webp",
|
|
242
|
-
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/gridStrategy_banner.
|
|
256
|
+
"gridStrategy_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/gridStrategy_banner.webp",
|
|
243
257
|
"broker_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/broker_banner.webp",
|
|
244
258
|
"promotion_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/promotion_banner.webp",
|
|
245
259
|
"promotion_dashboard_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/promotion_dashboard_1.webp",
|
|
@@ -251,6 +265,22 @@
|
|
|
251
265
|
"trade_notopened": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/trade_notopened.webp",
|
|
252
266
|
"trade_notlogin": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/trade_notlogin.webp",
|
|
253
267
|
"new_kyc_passport_c": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/new_kyc_passport_c.webp",
|
|
254
|
-
"
|
|
268
|
+
"download_bg": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/download_bg.webp",
|
|
269
|
+
"floatLayerIcon": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/floatLayerIcon.webp",
|
|
270
|
+
"futures_grid_guide-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/futures_grid_guide-1.webp",
|
|
271
|
+
"futures_grid_guide-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/futures_grid_guide-3.webp",
|
|
272
|
+
"futures_grid_guide-4": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/futures_grid_guide-4.webp",
|
|
273
|
+
"futures_grid_guide-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/futures_grid_guide-2.webp",
|
|
274
|
+
"innovation_banner_h5": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/innovation_banner_h5.webp",
|
|
275
|
+
"innovation_banner": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/innovation_banner.webp",
|
|
276
|
+
"follow_risk_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/follow_risk_1.png",
|
|
277
|
+
"follow_risk_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/follow_risk_2.png",
|
|
278
|
+
"follow_risk_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/follow_risk_3.png",
|
|
279
|
+
"fridend_icon_Steps-2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/fridend_icon_Steps-2.webp",
|
|
280
|
+
"fridend_icon_Steps-3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/fridend_icon_Steps-3.webp",
|
|
281
|
+
"fridend_icon_Steps-1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/fridend_icon_Steps-1.webp",
|
|
282
|
+
"fridend_icon_Steps_2": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/fridend_icon_Steps_2.webp",
|
|
283
|
+
"fridend_icon_Steps_1": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/fridend_icon_Steps_1.webp",
|
|
284
|
+
"fridend_icon_Steps_3": "https://d3j7ho7qyau2gq.cloudfront.net/fe-theme/img/4/light/fridend_icon_Steps_3.webp"
|
|
255
285
|
}
|
|
256
286
|
}
|