@myun/gimi-chat 0.0.3 → 0.0.5

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.
Files changed (206) hide show
  1. package/dist/apis/fetch.d.ts +64 -0
  2. package/dist/apis/fetch.js +512 -0
  3. package/dist/apis/useApi.d.ts +57 -0
  4. package/dist/apis/useApi.js +378 -0
  5. package/dist/assets/image/Subtract.png +0 -0
  6. package/dist/assets/image/ai-logo.png +0 -0
  7. package/dist/assets/image/copyIcon.png +0 -0
  8. package/dist/assets/image/deepthinkActive.png +0 -0
  9. package/dist/assets/image/empty-img-dark.png +0 -0
  10. package/dist/assets/image/empty-img.png +0 -0
  11. package/dist/assets/image/like_active.png +0 -0
  12. package/dist/assets/image/love.png +0 -0
  13. package/dist/assets/image/retry.png +0 -0
  14. package/dist/assets/image/soundOut.png +0 -0
  15. package/dist/assets/image/unlike_active.png +0 -0
  16. package/dist/assets/image/unlove.png +0 -0
  17. package/dist/assets/lottie/ai-bg.json +1704 -0
  18. package/dist/assets/lottie/ai-loading.json +192 -0
  19. package/dist/assets/lottie/ai-output-loading.json +272 -0
  20. package/dist/assets/lottie/ai-output-normal.json +17694 -0
  21. package/dist/assets/lottie/ai-output-strengthen.json +17321 -0
  22. package/dist/assets/lottie/ai-voice-play.json +1 -0
  23. package/dist/assets/lottie/living.json +705 -0
  24. package/dist/assets/lottie/myun-living.json +726 -0
  25. package/dist/assets/lottie/myun-loading.json +530 -0
  26. package/dist/components/ai-chat-dialogue/index.d.ts +16 -0
  27. package/dist/components/ai-chat-dialogue/index.js +1056 -0
  28. package/dist/components/ai-chat-dialogue/index.module.css +230 -0
  29. package/dist/components/ai-chat-dialogue/message-parser.d.ts +36 -0
  30. package/dist/components/ai-chat-dialogue/message-parser.js +52 -0
  31. package/dist/components/ai-chat-dialogue/tlv.d.ts +7 -0
  32. package/dist/components/ai-chat-dialogue/tlv.js +32 -0
  33. package/dist/components/ai-chat-dialogue/volc-voice-call-client.d.ts +47 -0
  34. package/dist/components/ai-chat-dialogue/volc-voice-call-client.js +246 -0
  35. package/dist/components/ai-correction/index.d.ts +5 -0
  36. package/dist/components/ai-correction/index.js +45 -0
  37. package/dist/components/ai-loading/index.d.ts +3 -0
  38. package/dist/components/ai-loading/index.js +14 -0
  39. package/dist/components/ai-loading/index.module.css +11 -0
  40. package/dist/components/answer-item/index.d.ts +27 -0
  41. package/dist/components/answer-item/index.js +194 -0
  42. package/dist/components/answer-item/index.module.css +266 -0
  43. package/dist/components/ask-card/index.d.ts +10 -0
  44. package/dist/components/ask-card/index.js +76 -0
  45. package/dist/components/ask-card/index.module.css +122 -0
  46. package/dist/components/chat-input/index.d.ts +31 -0
  47. package/dist/components/chat-input/index.js +433 -0
  48. package/dist/components/chat-input/index.module.css +42 -0
  49. package/dist/components/chat-voice/VoiceCommunication.d.ts +7 -0
  50. package/dist/components/chat-voice/VoiceCommunication.js +69 -0
  51. package/dist/components/chat-voice/VoiceRecord.d.ts +7 -0
  52. package/dist/components/chat-voice/VoiceRecord.js +34 -0
  53. package/dist/components/conversation-delete/index.d.ts +5 -0
  54. package/dist/components/conversation-delete/index.js +24 -0
  55. package/dist/components/dots-loading/index.d.ts +2 -0
  56. package/dist/components/dots-loading/index.js +11 -0
  57. package/dist/components/dots-loading/index.module.css +41 -0
  58. package/dist/components/empty/index.d.ts +9 -0
  59. package/dist/components/empty/index.js +32 -0
  60. package/dist/components/empty/index.module.css +24 -0
  61. package/dist/components/excel-components/ExcelCard.d.ts +11 -0
  62. package/dist/components/excel-components/ExcelCard.js +35 -0
  63. package/dist/components/excel-components/ExcelExcuting.d.ts +10 -0
  64. package/dist/components/excel-components/ExcelExcuting.js +263 -0
  65. package/dist/components/excel-components/ExcelFailCard.d.ts +9 -0
  66. package/dist/components/excel-components/ExcelFailCard.js +20 -0
  67. package/dist/components/excel-components/ExcelSuccessCard.d.ts +5 -0
  68. package/dist/components/excel-components/ExcelSuccessCard.js +50 -0
  69. package/dist/components/excel-components/index.module.css +212 -0
  70. package/dist/components/excel-components/styles.module.css +178 -0
  71. package/dist/components/file-card/fileCardSidebar.d.ts +8 -0
  72. package/dist/components/file-card/fileCardSidebar.js +56 -0
  73. package/dist/components/file-card/index.d.ts +15 -0
  74. package/dist/components/file-card/index.js +97 -0
  75. package/dist/components/file-card/index.module.css +139 -0
  76. package/dist/components/file-preview/index.d.ts +3 -0
  77. package/dist/components/file-preview/index.js +227 -0
  78. package/dist/components/file-preview/index.module.css +83 -0
  79. package/dist/components/file-upload/index.d.ts +16 -0
  80. package/dist/components/file-upload/index.js +238 -0
  81. package/dist/components/file-upload/uploadV1.d.ts +16 -0
  82. package/dist/components/file-upload/uploadV1.js +267 -0
  83. package/dist/components/gimi-sidebar/index.d.ts +17 -0
  84. package/dist/components/gimi-sidebar/index.js +41 -0
  85. package/dist/components/gimi-sidebar/index.module.css +118 -0
  86. package/dist/components/header/index.d.ts +5 -0
  87. package/dist/components/header/index.js +20 -0
  88. package/dist/components/header/index.module.css +19 -0
  89. package/dist/components/iconfont-com/index.d.ts +11 -0
  90. package/dist/components/iconfont-com/index.js +29 -0
  91. package/dist/components/index.d.ts +1 -0
  92. package/dist/components/index.js +1 -0
  93. package/dist/components/knowledge-trace/KnowledgeIconComponent.d.ts +7 -0
  94. package/dist/components/knowledge-trace/KnowledgeIconComponent.js +101 -0
  95. package/dist/components/knowledge-trace/classList.d.ts +6 -0
  96. package/dist/components/knowledge-trace/classList.js +72 -0
  97. package/dist/components/knowledge-trace/documentList.d.ts +6 -0
  98. package/dist/components/knowledge-trace/documentList.js +75 -0
  99. package/dist/components/knowledge-trace/index.d.ts +18 -0
  100. package/dist/components/knowledge-trace/index.js +155 -0
  101. package/dist/components/knowledge-trace/index.module.css +254 -0
  102. package/dist/components/knowledge-trace/interfaces.d.ts +166 -0
  103. package/dist/components/knowledge-trace/interfaces.js +1 -0
  104. package/dist/components/knowledge-trace/videoList.d.ts +6 -0
  105. package/dist/components/knowledge-trace/videoList.js +91 -0
  106. package/dist/components/lottie-img/index.d.ts +8 -0
  107. package/dist/components/lottie-img/index.js +99 -0
  108. package/dist/components/message-actions/CopyButton.d.ts +7 -0
  109. package/dist/components/message-actions/CopyButton.js +33 -0
  110. package/dist/components/message-actions/LikeButton.d.ts +7 -0
  111. package/dist/components/message-actions/LikeButton.js +34 -0
  112. package/dist/components/message-actions/RegenerateButton.d.ts +5 -0
  113. package/dist/components/message-actions/RegenerateButton.js +27 -0
  114. package/dist/components/message-actions/UnLikeButton.d.ts +7 -0
  115. package/dist/components/message-actions/UnLikeButton.js +34 -0
  116. package/dist/components/message-actions/VoicePlay.d.ts +10 -0
  117. package/dist/components/message-actions/VoicePlay.js +74 -0
  118. package/dist/components/message-list/index.d.ts +19 -0
  119. package/dist/components/message-list/index.js +164 -0
  120. package/dist/components/message-list/index.module.css +261 -0
  121. package/dist/components/no-microphone-root/index.d.ts +6 -0
  122. package/dist/components/no-microphone-root/index.js +36 -0
  123. package/dist/components/no-microphone-root/index.module.css +48 -0
  124. package/dist/components/preset-agent-content/index.d.ts +8 -0
  125. package/dist/components/preset-agent-content/index.js +24 -0
  126. package/dist/components/preset-agent-content/index.module.css +46 -0
  127. package/dist/components/quoted-content/index.d.ts +0 -0
  128. package/dist/components/quoted-content/index.js +171 -0
  129. package/dist/components/quoted-content/index.module.css +80 -0
  130. package/dist/components/reasoning-content/index.d.ts +6 -0
  131. package/dist/components/reasoning-content/index.js +116 -0
  132. package/dist/components/reasoning-content/index.module.css +169 -0
  133. package/dist/components/reference-content/index.d.ts +28 -0
  134. package/dist/components/reference-content/index.js +125 -0
  135. package/dist/components/reference-content/index.module.css +84 -0
  136. package/dist/components/templates/CommonChat.d.ts +5 -0
  137. package/dist/components/templates/CommonChat.js +218 -0
  138. package/dist/components/templates/GimiChatComponent.d.ts +4 -0
  139. package/dist/components/templates/GimiChatComponent.js +23 -0
  140. package/dist/components/templates/demo/demo.d.ts +2 -0
  141. package/dist/components/templates/demo/demo.js +109 -0
  142. package/dist/components/templates/index.module.css +109 -0
  143. package/dist/components/upload-list/index.d.ts +15 -0
  144. package/dist/components/upload-list/index.js +90 -0
  145. package/dist/components/upload-list/index.module.css +119 -0
  146. package/dist/components/voice-bars/index.d.ts +4 -0
  147. package/dist/components/voice-bars/index.js +174 -0
  148. package/dist/components/voice-check-dialog/index.d.ts +8 -0
  149. package/dist/components/voice-check-dialog/index.js +163 -0
  150. package/dist/components/voice-check-dialog/index.module.css +9 -0
  151. package/dist/components/voice-recording/index.d.ts +9 -0
  152. package/dist/components/voice-recording/index.js +54 -0
  153. package/dist/components/voice-recording/index.module.css +41 -0
  154. package/dist/components/work-flow-content/demo.d.ts +3 -0
  155. package/dist/components/work-flow-content/demo.js +11 -0
  156. package/dist/components/work-flow-content/index.d.ts +6 -0
  157. package/dist/components/work-flow-content/index.js +55 -0
  158. package/dist/components/work-flow-content/index.module.css +24 -0
  159. package/dist/constants.d.ts +24 -0
  160. package/dist/constants.js +24 -0
  161. package/dist/hooks/useChatActions.d.ts +12 -0
  162. package/dist/hooks/useChatActions.js +207 -0
  163. package/dist/hooks/useChatHistory.d.ts +8 -0
  164. package/dist/hooks/useChatHistory.js +225 -0
  165. package/dist/hooks/useChatMessage.d.ts +49 -0
  166. package/dist/hooks/useChatMessage.js +87 -0
  167. package/dist/hooks/useChatRecommend.d.ts +8 -0
  168. package/dist/hooks/useChatRecommend.js +126 -0
  169. package/dist/hooks/useChatStream.d.ts +20 -0
  170. package/dist/hooks/useChatStream.js +244 -0
  171. package/dist/hooks/useChatUI.d.ts +32 -0
  172. package/dist/hooks/useChatUI.js +134 -0
  173. package/dist/hooks/useChatVoice.d.ts +11 -0
  174. package/dist/hooks/useChatVoice.js +379 -0
  175. package/dist/hooks/useCommonChatAPI.d.ts +27 -0
  176. package/dist/hooks/useCommonChatAPI.js +1276 -0
  177. package/dist/hooks/useFile.d.ts +13 -0
  178. package/dist/hooks/useFile.js +288 -0
  179. package/dist/hooks/useKnowledgeService.d.ts +17 -0
  180. package/dist/hooks/useKnowledgeService.js +210 -0
  181. package/dist/hooks/useLastEventId.d.ts +8 -0
  182. package/dist/hooks/useLastEventId.js +66 -0
  183. package/dist/hooks/useLongPoll.d.ts +3 -0
  184. package/dist/hooks/useLongPoll.js +111 -0
  185. package/dist/hooks/useScroll.d.ts +4 -0
  186. package/dist/hooks/useScroll.js +172 -0
  187. package/dist/index.d.ts +1 -0
  188. package/dist/index.js +1 -0
  189. package/dist/interfaces/chatMessage.d.ts +139 -0
  190. package/dist/interfaces/fileInterface.d.ts +10 -0
  191. package/dist/interfaces/fileInterface.js +11 -0
  192. package/dist/interfaces/knowledgeTrace.d.ts +177 -0
  193. package/dist/store/hooks.d.ts +4 -0
  194. package/dist/store/hooks.js +3 -0
  195. package/dist/store/index.d.ts +7 -0
  196. package/dist/store/index.js +7 -0
  197. package/dist/store/slices/gimiMenuSlice.d.ts +95 -0
  198. package/dist/store/slices/gimiMenuSlice.js +251 -0
  199. package/dist/utils/chatInputUtil.d.ts +19 -0
  200. package/dist/utils/chatInputUtil.js +45 -0
  201. package/dist/utils/tools.d.ts +50 -0
  202. package/dist/utils/tools.js +474 -0
  203. package/dist/utils/voice-stream.d.ts +119 -0
  204. package/dist/utils/voice-stream.js +1162 -0
  205. package/package.json +5 -6
  206. package/LICENSE +0 -21
@@ -0,0 +1,705 @@
1
+ {
2
+ "v": "5.9.6",
3
+ "fr": 30,
4
+ "ip": 1,
5
+ "op": 29,
6
+ "w": 50,
7
+ "h": 50,
8
+ "nm": "小直播",
9
+ "ddd": 0,
10
+ "assets": [
11
+ {
12
+ "id": "comp_0",
13
+ "nm": "形状图层 13 合成 1",
14
+ "fr": 29.9700012207031,
15
+ "layers": [
16
+ {
17
+ "ddd": 0,
18
+ "ind": 1,
19
+ "ty": 4,
20
+ "nm": "形状图层 13",
21
+ "sr": 1,
22
+ "ks": {
23
+ "o": { "a": 0, "k": 100, "ix": 11 },
24
+ "r": { "a": 0, "k": 0, "ix": 10 },
25
+ "p": {
26
+ "a": 1,
27
+ "k": [
28
+ {
29
+ "i": { "x": 0.667, "y": 1 },
30
+ "o": { "x": 0.333, "y": 0 },
31
+ "t": 0,
32
+ "s": [20.047, 68, 0],
33
+ "to": [0, -2.146, 0],
34
+ "ti": [0, 0, 0]
35
+ },
36
+ {
37
+ "i": { "x": 0.667, "y": 1 },
38
+ "o": { "x": 0.333, "y": 0 },
39
+ "t": 30.03,
40
+ "s": [20.047, 55.125, 0],
41
+ "to": [0, 0, 0],
42
+ "ti": [0, -2.146, 0]
43
+ },
44
+ { "t": 60.0600600600601, "s": [20.047, 68, 0] }
45
+ ],
46
+ "ix": 2,
47
+ "l": 2
48
+ },
49
+ "a": { "a": 0, "k": [-92.453, 19.125, 0], "ix": 1, "l": 2 },
50
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
51
+ },
52
+ "ao": 0,
53
+ "shapes": [
54
+ {
55
+ "ty": "gr",
56
+ "it": [
57
+ {
58
+ "ind": 0,
59
+ "ty": "sh",
60
+ "ix": 1,
61
+ "ks": {
62
+ "a": 1,
63
+ "k": [
64
+ {
65
+ "i": { "x": 0.667, "y": 1 },
66
+ "o": { "x": 0.333, "y": 0 },
67
+ "t": 0,
68
+ "s": [
69
+ {
70
+ "i": [
71
+ [0, -1.902],
72
+ [0, 0],
73
+ [1.902, 0],
74
+ [0, 1.902],
75
+ [0, 0],
76
+ [-1.902, 0]
77
+ ],
78
+ "o": [
79
+ [0, 0],
80
+ [0, 1.902],
81
+ [-1.902, 0],
82
+ [0, 0],
83
+ [0, -1.902],
84
+ [1.902, 0]
85
+ ],
86
+ "v": [
87
+ [3.445, -3.266],
88
+ [3.445, 3.266],
89
+ [0, 6.711],
90
+ [-3.445, 3.266],
91
+ [-3.445, -3.266],
92
+ [0, -6.711]
93
+ ],
94
+ "c": true
95
+ }
96
+ ]
97
+ },
98
+ {
99
+ "i": { "x": 0.667, "y": 1 },
100
+ "o": { "x": 0.333, "y": 0 },
101
+ "t": 30.03,
102
+ "s": [
103
+ {
104
+ "i": [
105
+ [0, -1.878],
106
+ [0, 0],
107
+ [1.878, 0],
108
+ [0, 1.878],
109
+ [0, 0],
110
+ [-1.878, 0]
111
+ ],
112
+ "o": [
113
+ [0, 0],
114
+ [0, 1.878],
115
+ [-1.878, 0],
116
+ [0, 0],
117
+ [0, -1.878],
118
+ [1.878, 0]
119
+ ],
120
+ "v": [
121
+ [3.293, -18.436],
122
+ [3.293, 16.232],
123
+ [-0.107, 19.632],
124
+ [-3.507, 16.232],
125
+ [-3.507, -18.436],
126
+ [-0.107, -21.836]
127
+ ],
128
+ "c": true
129
+ }
130
+ ]
131
+ },
132
+ {
133
+ "t": 60.0600600600601,
134
+ "s": [
135
+ {
136
+ "i": [
137
+ [0, -1.902],
138
+ [0, 0],
139
+ [1.902, 0],
140
+ [0, 1.902],
141
+ [0, 0],
142
+ [-1.902, 0]
143
+ ],
144
+ "o": [
145
+ [0, 0],
146
+ [0, 1.902],
147
+ [-1.902, 0],
148
+ [0, 0],
149
+ [0, -1.902],
150
+ [1.902, 0]
151
+ ],
152
+ "v": [
153
+ [3.445, -3.266],
154
+ [3.445, 3.266],
155
+ [0, 6.711],
156
+ [-3.445, 3.266],
157
+ [-3.445, -3.266],
158
+ [0, -6.711]
159
+ ],
160
+ "c": true
161
+ }
162
+ ]
163
+ }
164
+ ],
165
+ "ix": 2
166
+ },
167
+ "nm": "路径 1",
168
+ "mn": "ADBE Vector Shape - Group",
169
+ "hd": false
170
+ },
171
+ {
172
+ "ty": "fl",
173
+ "c": {
174
+ "a": 0,
175
+ "k": [1, 0.46274510026, 0.580392181873, 1],
176
+ "ix": 4
177
+ },
178
+ "o": { "a": 0, "k": 100, "ix": 5 },
179
+ "r": 1,
180
+ "bm": 0,
181
+ "nm": "填充 1",
182
+ "mn": "ADBE Vector Graphic - Fill",
183
+ "hd": false
184
+ },
185
+ {
186
+ "ty": "tr",
187
+ "p": { "a": 0, "k": [-92.368, -0.539], "ix": 2 },
188
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
189
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
190
+ "r": { "a": 0, "k": 0, "ix": 6 },
191
+ "o": { "a": 0, "k": 100, "ix": 7 },
192
+ "sk": { "a": 0, "k": 0, "ix": 4 },
193
+ "sa": { "a": 0, "k": 0, "ix": 5 },
194
+ "nm": "变换"
195
+ }
196
+ ],
197
+ "nm": "矩形 1",
198
+ "np": 3,
199
+ "cix": 2,
200
+ "bm": 0,
201
+ "ix": 1,
202
+ "mn": "ADBE Vector Group",
203
+ "hd": false
204
+ }
205
+ ],
206
+ "ip": 0,
207
+ "op": 60.0600600600601,
208
+ "st": 0,
209
+ "ct": 1,
210
+ "bm": 0
211
+ }
212
+ ]
213
+ },
214
+ {
215
+ "id": "comp_1",
216
+ "nm": "形状图层 13 合成 2",
217
+ "fr": 29.9700012207031,
218
+ "layers": [
219
+ {
220
+ "ddd": 0,
221
+ "ind": 1,
222
+ "ty": 4,
223
+ "nm": "形状图层 13",
224
+ "sr": 1,
225
+ "ks": {
226
+ "o": { "a": 0, "k": 100, "ix": 11 },
227
+ "r": { "a": 0, "k": 0, "ix": 10 },
228
+ "p": {
229
+ "a": 1,
230
+ "k": [
231
+ {
232
+ "i": { "x": 0.667, "y": 1 },
233
+ "o": { "x": 0.333, "y": 0 },
234
+ "t": 0,
235
+ "s": [20.047, 68, 0],
236
+ "to": [0, -2.146, 0],
237
+ "ti": [0, 0, 0]
238
+ },
239
+ {
240
+ "i": { "x": 0.667, "y": 1 },
241
+ "o": { "x": 0.333, "y": 0 },
242
+ "t": 30.03,
243
+ "s": [20.047, 55.125, 0],
244
+ "to": [0, 0, 0],
245
+ "ti": [0, -2.146, 0]
246
+ },
247
+ { "t": 60.0600600600601, "s": [20.047, 68, 0] }
248
+ ],
249
+ "ix": 2,
250
+ "l": 2
251
+ },
252
+ "a": { "a": 0, "k": [-92.453, 19.125, 0], "ix": 1, "l": 2 },
253
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
254
+ },
255
+ "ao": 0,
256
+ "shapes": [
257
+ {
258
+ "ty": "gr",
259
+ "it": [
260
+ {
261
+ "ind": 0,
262
+ "ty": "sh",
263
+ "ix": 1,
264
+ "ks": {
265
+ "a": 1,
266
+ "k": [
267
+ {
268
+ "i": { "x": 0.667, "y": 1 },
269
+ "o": { "x": 0.333, "y": 0 },
270
+ "t": 0,
271
+ "s": [
272
+ {
273
+ "i": [
274
+ [0, -1.902],
275
+ [0, 0],
276
+ [1.902, 0],
277
+ [0, 1.902],
278
+ [0, 0],
279
+ [-1.902, 0]
280
+ ],
281
+ "o": [
282
+ [0, 0],
283
+ [0, 1.902],
284
+ [-1.902, 0],
285
+ [0, 0],
286
+ [0, -1.902],
287
+ [1.902, 0]
288
+ ],
289
+ "v": [
290
+ [3.445, -3.266],
291
+ [3.445, 3.266],
292
+ [0, 6.711],
293
+ [-3.445, 3.266],
294
+ [-3.445, -3.266],
295
+ [0, -6.711]
296
+ ],
297
+ "c": true
298
+ }
299
+ ]
300
+ },
301
+ {
302
+ "i": { "x": 0.667, "y": 1 },
303
+ "o": { "x": 0.333, "y": 0 },
304
+ "t": 30.03,
305
+ "s": [
306
+ {
307
+ "i": [
308
+ [0, -1.878],
309
+ [0, 0],
310
+ [1.878, 0],
311
+ [0, 1.878],
312
+ [0, 0],
313
+ [-1.878, 0]
314
+ ],
315
+ "o": [
316
+ [0, 0],
317
+ [0, 1.878],
318
+ [-1.878, 0],
319
+ [0, 0],
320
+ [0, -1.878],
321
+ [1.878, 0]
322
+ ],
323
+ "v": [
324
+ [3.293, -18.436],
325
+ [3.293, 16.232],
326
+ [-0.107, 19.632],
327
+ [-3.507, 16.232],
328
+ [-3.507, -18.436],
329
+ [-0.107, -21.836]
330
+ ],
331
+ "c": true
332
+ }
333
+ ]
334
+ },
335
+ {
336
+ "t": 60.0600600600601,
337
+ "s": [
338
+ {
339
+ "i": [
340
+ [0, -1.902],
341
+ [0, 0],
342
+ [1.902, 0],
343
+ [0, 1.902],
344
+ [0, 0],
345
+ [-1.902, 0]
346
+ ],
347
+ "o": [
348
+ [0, 0],
349
+ [0, 1.902],
350
+ [-1.902, 0],
351
+ [0, 0],
352
+ [0, -1.902],
353
+ [1.902, 0]
354
+ ],
355
+ "v": [
356
+ [3.445, -3.266],
357
+ [3.445, 3.266],
358
+ [0, 6.711],
359
+ [-3.445, 3.266],
360
+ [-3.445, -3.266],
361
+ [0, -6.711]
362
+ ],
363
+ "c": true
364
+ }
365
+ ]
366
+ }
367
+ ],
368
+ "ix": 2
369
+ },
370
+ "nm": "路径 1",
371
+ "mn": "ADBE Vector Shape - Group",
372
+ "hd": false
373
+ },
374
+ {
375
+ "ty": "fl",
376
+ "c": {
377
+ "a": 0,
378
+ "k": [1, 0.46274510026, 0.580392181873, 1],
379
+ "ix": 4
380
+ },
381
+ "o": { "a": 0, "k": 100, "ix": 5 },
382
+ "r": 1,
383
+ "bm": 0,
384
+ "nm": "填充 1",
385
+ "mn": "ADBE Vector Graphic - Fill",
386
+ "hd": false
387
+ },
388
+ {
389
+ "ty": "tr",
390
+ "p": { "a": 0, "k": [-92.368, -0.539], "ix": 2 },
391
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
392
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
393
+ "r": { "a": 0, "k": 0, "ix": 6 },
394
+ "o": { "a": 0, "k": 100, "ix": 7 },
395
+ "sk": { "a": 0, "k": 0, "ix": 4 },
396
+ "sa": { "a": 0, "k": 0, "ix": 5 },
397
+ "nm": "变换"
398
+ }
399
+ ],
400
+ "nm": "矩形 1",
401
+ "np": 3,
402
+ "cix": 2,
403
+ "bm": 0,
404
+ "ix": 1,
405
+ "mn": "ADBE Vector Group",
406
+ "hd": false
407
+ }
408
+ ],
409
+ "ip": 0,
410
+ "op": 60.0600600600601,
411
+ "st": 0,
412
+ "ct": 1,
413
+ "bm": 0
414
+ }
415
+ ]
416
+ }
417
+ ],
418
+ "layers": [
419
+ {
420
+ "ddd": 0,
421
+ "ind": 1,
422
+ "ty": 0,
423
+ "nm": "形状图层 13 合成 1",
424
+ "refId": "comp_0",
425
+ "sr": 0.5,
426
+ "ks": {
427
+ "o": { "a": 0, "k": 100, "ix": 11 },
428
+ "r": { "a": 0, "k": 0, "ix": 10 },
429
+ "p": { "a": 0, "k": [132.5, 25, 0], "ix": 2, "l": 2 },
430
+ "a": { "a": 0, "k": [112.5, 36, 0], "ix": 1, "l": 2 },
431
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
432
+ },
433
+ "ao": 0,
434
+ "w": 225,
435
+ "h": 72,
436
+ "ip": 0.03103103103103,
437
+ "op": 14.5455455455455,
438
+ "st": -15.4844844844845,
439
+ "bm": 0
440
+ },
441
+ {
442
+ "ddd": 0,
443
+ "ind": 2,
444
+ "ty": 0,
445
+ "nm": "形状图层 13 合成 1",
446
+ "refId": "comp_0",
447
+ "sr": 0.5,
448
+ "ks": {
449
+ "o": { "a": 0, "k": 100, "ix": 11 },
450
+ "r": { "a": 0, "k": 0, "ix": 10 },
451
+ "p": { "a": 0, "k": [132.5, 25, 0], "ix": 2, "l": 2 },
452
+ "a": { "a": 0, "k": [112.5, 36, 0], "ix": 1, "l": 2 },
453
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
454
+ },
455
+ "ao": 0,
456
+ "w": 225,
457
+ "h": 72,
458
+ "ip": 14.045045045045,
459
+ "op": 29.0600600600601,
460
+ "st": 14.045045045045,
461
+ "bm": 0
462
+ },
463
+ {
464
+ "ddd": 0,
465
+ "ind": 3,
466
+ "ty": 0,
467
+ "nm": "形状图层 13 合成 2",
468
+ "refId": "comp_1",
469
+ "sr": 0.5,
470
+ "ks": {
471
+ "o": { "a": 0, "k": 100, "ix": 11 },
472
+ "r": { "a": 0, "k": 0, "ix": 10 },
473
+ "p": { "a": 0, "k": [117.375, 25, 0], "ix": 2, "l": 2 },
474
+ "a": { "a": 0, "k": [112.5, 36, 0], "ix": 1, "l": 2 },
475
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
476
+ },
477
+ "ao": 0,
478
+ "w": 225,
479
+ "h": 72,
480
+ "ip": 0.03103103103103,
481
+ "op": 22.0530530530531,
482
+ "st": -7.97697697697698,
483
+ "bm": 0
484
+ },
485
+ {
486
+ "ddd": 0,
487
+ "ind": 4,
488
+ "ty": 0,
489
+ "nm": "形状图层 13 合成 2",
490
+ "refId": "comp_1",
491
+ "sr": 0.5,
492
+ "ks": {
493
+ "o": { "a": 0, "k": 100, "ix": 11 },
494
+ "r": { "a": 0, "k": 0, "ix": 10 },
495
+ "p": { "a": 0, "k": [117.375, 25, 0], "ix": 2, "l": 2 },
496
+ "a": { "a": 0, "k": [112.5, 36, 0], "ix": 1, "l": 2 },
497
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
498
+ },
499
+ "ao": 0,
500
+ "w": 225,
501
+ "h": 72,
502
+ "ip": 22.0530530530531,
503
+ "op": 29.0600600600601,
504
+ "st": 22.0530530530531,
505
+ "bm": 0
506
+ },
507
+ {
508
+ "ddd": 0,
509
+ "ind": 5,
510
+ "ty": 4,
511
+ "nm": "形状图层 6",
512
+ "sr": 0.5,
513
+ "ks": {
514
+ "o": { "a": 0, "k": 100, "ix": 11 },
515
+ "r": { "a": 0, "k": 0, "ix": 10 },
516
+ "p": {
517
+ "a": 1,
518
+ "k": [
519
+ {
520
+ "i": { "x": 0.667, "y": 1 },
521
+ "o": { "x": 0.333, "y": 0 },
522
+ "t": 0.031,
523
+ "s": [9.047, 57, 0],
524
+ "to": [0, -2.146, 0],
525
+ "ti": [0, 0, 0]
526
+ },
527
+ {
528
+ "i": { "x": 0.667, "y": 1 },
529
+ "o": { "x": 0.333, "y": 0 },
530
+ "t": 15.046,
531
+ "s": [9.047, 44.125, 0],
532
+ "to": [0, 0, 0],
533
+ "ti": [0, -2.146, 0]
534
+ },
535
+ { "t": 30.061304468531, "s": [9.047, 57, 0] }
536
+ ],
537
+ "ix": 2,
538
+ "l": 2
539
+ },
540
+ "a": { "a": 0, "k": [-92.453, 19.125, 0], "ix": 1, "l": 2 },
541
+ "s": { "a": 0, "k": [100, 100, 100], "ix": 6, "l": 2 }
542
+ },
543
+ "ao": 0,
544
+ "shapes": [
545
+ {
546
+ "ty": "gr",
547
+ "it": [
548
+ {
549
+ "ind": 0,
550
+ "ty": "sh",
551
+ "ix": 1,
552
+ "ks": {
553
+ "a": 1,
554
+ "k": [
555
+ {
556
+ "i": { "x": 0.667, "y": 1 },
557
+ "o": { "x": 0.333, "y": 0 },
558
+ "t": 0.031,
559
+ "s": [
560
+ {
561
+ "i": [
562
+ [0, -1.902],
563
+ [0, 0],
564
+ [1.902, 0],
565
+ [0, 1.902],
566
+ [0, 0],
567
+ [-1.902, 0]
568
+ ],
569
+ "o": [
570
+ [0, 0],
571
+ [0, 1.902],
572
+ [-1.902, 0],
573
+ [0, 0],
574
+ [0, -1.902],
575
+ [1.902, 0]
576
+ ],
577
+ "v": [
578
+ [3.445, -3.266],
579
+ [3.445, 3.266],
580
+ [0, 6.711],
581
+ [-3.445, 3.266],
582
+ [-3.445, -3.266],
583
+ [0, -6.711]
584
+ ],
585
+ "c": true
586
+ }
587
+ ]
588
+ },
589
+ {
590
+ "i": { "x": 0.667, "y": 1 },
591
+ "o": { "x": 0.333, "y": 0 },
592
+ "t": 15.046,
593
+ "s": [
594
+ {
595
+ "i": [
596
+ [0, -1.878],
597
+ [0, 0],
598
+ [1.878, 0],
599
+ [0, 1.878],
600
+ [0, 0],
601
+ [-1.878, 0]
602
+ ],
603
+ "o": [
604
+ [0, 0],
605
+ [0, 1.878],
606
+ [-1.878, 0],
607
+ [0, 0],
608
+ [0, -1.878],
609
+ [1.878, 0]
610
+ ],
611
+ "v": [
612
+ [3.293, -18.436],
613
+ [3.293, 16.232],
614
+ [-0.107, 19.632],
615
+ [-3.507, 16.232],
616
+ [-3.507, -18.436],
617
+ [-0.107, -21.836]
618
+ ],
619
+ "c": true
620
+ }
621
+ ]
622
+ },
623
+ {
624
+ "t": 30.061304468531,
625
+ "s": [
626
+ {
627
+ "i": [
628
+ [0, -1.902],
629
+ [0, 0],
630
+ [1.902, 0],
631
+ [0, 1.902],
632
+ [0, 0],
633
+ [-1.902, 0]
634
+ ],
635
+ "o": [
636
+ [0, 0],
637
+ [0, 1.902],
638
+ [-1.902, 0],
639
+ [0, 0],
640
+ [0, -1.902],
641
+ [1.902, 0]
642
+ ],
643
+ "v": [
644
+ [3.445, -3.266],
645
+ [3.445, 3.266],
646
+ [0, 6.711],
647
+ [-3.445, 3.266],
648
+ [-3.445, -3.266],
649
+ [0, -6.711]
650
+ ],
651
+ "c": true
652
+ }
653
+ ]
654
+ }
655
+ ],
656
+ "ix": 2
657
+ },
658
+ "nm": "路径 1",
659
+ "mn": "ADBE Vector Shape - Group",
660
+ "hd": false
661
+ },
662
+ {
663
+ "ty": "fl",
664
+ "c": {
665
+ "a": 0,
666
+ "k": [1, 0.46274510026, 0.580392181873, 1],
667
+ "ix": 4
668
+ },
669
+ "o": { "a": 0, "k": 100, "ix": 5 },
670
+ "r": 1,
671
+ "bm": 0,
672
+ "nm": "填充 1",
673
+ "mn": "ADBE Vector Graphic - Fill",
674
+ "hd": false
675
+ },
676
+ {
677
+ "ty": "tr",
678
+ "p": { "a": 0, "k": [-92.368, -0.539], "ix": 2 },
679
+ "a": { "a": 0, "k": [0, 0], "ix": 1 },
680
+ "s": { "a": 0, "k": [100, 100], "ix": 3 },
681
+ "r": { "a": 0, "k": 0, "ix": 6 },
682
+ "o": { "a": 0, "k": 100, "ix": 7 },
683
+ "sk": { "a": 0, "k": 0, "ix": 4 },
684
+ "sa": { "a": 0, "k": 0, "ix": 5 },
685
+ "nm": "变换"
686
+ }
687
+ ],
688
+ "nm": "矩形 1",
689
+ "np": 3,
690
+ "cix": 2,
691
+ "bm": 0,
692
+ "ix": 1,
693
+ "mn": "ADBE Vector Group",
694
+ "hd": false
695
+ }
696
+ ],
697
+ "ip": 0.03103103103103,
698
+ "op": 29.0600600600601,
699
+ "st": 0.03103103103103,
700
+ "ct": 1,
701
+ "bm": 0
702
+ }
703
+ ],
704
+ "markers": []
705
+ }