@stigg/react-sdk 4.4.0-beta.3 → 4.4.0-beta.4

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 (59) hide show
  1. package/dist/components/checkout/Checkout.d.ts +1 -1
  2. package/dist/components/checkout/CheckoutContainer.d.ts +6 -2
  3. package/dist/components/checkout/CheckoutProvider.d.ts +3 -1
  4. package/dist/components/checkout/components/DowngradeToFreeContainer.d.ts +28 -0
  5. package/dist/components/checkout/hooks/usePaymentStepModel.d.ts +8 -2
  6. package/dist/components/checkout/hooks/useProgressBarModel.d.ts +2 -0
  7. package/dist/components/checkout/hooks/useSubscriptionModel.d.ts +2 -1
  8. package/dist/components/checkout/index.d.ts +1 -0
  9. package/dist/components/checkout/steps/payment/PaymentMethods.d.ts +3 -2
  10. package/dist/components/checkout/steps/payment/PaymentStep.d.ts +2 -1
  11. package/dist/components/checkout/steps/payment/stripe/StripePaymentForm.d.ts +2 -1
  12. package/dist/components/checkout/steps/payment/stripe/stripe.utils.d.ts +4 -0
  13. package/dist/components/checkout/steps/payment/stripe/useSubmit.d.ts +2 -1
  14. package/dist/components/checkout/steps/plan/CheckoutChargeList.d.ts +5 -1
  15. package/dist/components/checkout/summary/CheckoutSummary.d.ts +3 -1
  16. package/dist/components/checkout/summary/components/LineItems.d.ts +2 -2
  17. package/dist/components/checkout/textOverrides.d.ts +4 -1
  18. package/dist/components/checkout/types.d.ts +7 -0
  19. package/dist/components/customerPortal/subscriptionOverview/subscriptionView/SubscriptionView.style.d.ts +1 -1
  20. package/dist/components/paywall/paywallTextOverrides.d.ts +4 -0
  21. package/dist/components/utils/getPaidPriceText.d.ts +3 -1
  22. package/dist/react-sdk.cjs.development.js +576 -257
  23. package/dist/react-sdk.cjs.development.js.map +1 -1
  24. package/dist/react-sdk.cjs.production.min.js +1 -1
  25. package/dist/react-sdk.cjs.production.min.js.map +1 -1
  26. package/dist/react-sdk.esm.js +588 -257
  27. package/dist/react-sdk.esm.js.map +1 -1
  28. package/package.json +2 -2
  29. package/src/assets/payment-method.svg +3 -10
  30. package/src/components/checkout/Checkout.tsx +3 -1
  31. package/src/components/checkout/CheckoutContainer.tsx +48 -22
  32. package/src/components/checkout/CheckoutProvider.tsx +8 -4
  33. package/src/components/checkout/components/DowngradeToFreeContainer.tsx +98 -0
  34. package/src/components/checkout/hooks/usePaymentStepModel.ts +22 -3
  35. package/src/components/checkout/hooks/usePlanStepModel.ts +5 -5
  36. package/src/components/checkout/hooks/usePreviewSubscription.ts +26 -3
  37. package/src/components/checkout/hooks/useProgressBarModel.ts +15 -0
  38. package/src/components/checkout/hooks/useSubscriptionModel.ts +8 -2
  39. package/src/components/checkout/hooks/useSubscriptionState.ts +2 -1
  40. package/src/components/checkout/index.ts +1 -0
  41. package/src/components/checkout/progressBar/CheckoutProgressBar.tsx +3 -2
  42. package/src/components/checkout/steps/payment/PaymentMethods.tsx +13 -6
  43. package/src/components/checkout/steps/payment/PaymentStep.tsx +3 -1
  44. package/src/components/checkout/steps/payment/stripe/StripePaymentForm.tsx +35 -4
  45. package/src/components/checkout/steps/payment/stripe/stripe.utils.ts +4 -3
  46. package/src/components/checkout/steps/payment/stripe/useSubmit.ts +54 -45
  47. package/src/components/checkout/steps/plan/CheckoutChargeList.tsx +42 -10
  48. package/src/components/checkout/summary/CheckoutSuccess.tsx +1 -1
  49. package/src/components/checkout/summary/CheckoutSummary.tsx +24 -19
  50. package/src/components/checkout/summary/components/LineItems.tsx +8 -16
  51. package/src/components/checkout/textOverrides.ts +5 -4
  52. package/src/components/checkout/types.ts +9 -0
  53. package/src/components/paywall/PlanPrice.tsx +10 -2
  54. package/src/components/paywall/paywallTextOverrides.ts +3 -0
  55. package/src/components/utils/getPaidPriceText.ts +8 -2
  56. package/src/components/utils/getPlanPrice.ts +1 -1
  57. package/dist/components/checkout/steps/surprise/SurpriseStep.d.ts +0 -2
  58. package/src/assets/nyancat.svg +0 -634
  59. package/src/components/checkout/steps/surprise/SurpriseStep.tsx +0 -27
@@ -1,634 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 180">
2
- <defs>
3
- <radialGradient id="BackgroundGradient">
4
- <stop offset="0%" stop-color="#005093" />
5
- <stop offset="100%" stop-color="#002953" />
6
- </radialGradient>
7
-
8
- <g id="sparkle" transform="scale(2)" stroke="white">
9
- <!-- <circle rx="0" ry="0" r="10" fill="" /> -->
10
- <style>
11
- .sparkle-frame6 {
12
- animation: sparkle 0.42s linear 0.35s infinite;
13
- }
14
-
15
- .sparkle-frame5 {
16
- animation: sparkle 0.42s linear 0.28s infinite;
17
- }
18
-
19
- .sparkle-frame4 {
20
- animation: sparkle 0.42s linear 0.21s infinite;
21
- }
22
-
23
- .sparkle-frame3 {
24
- animation: sparkle 0.42s linear 0.14s infinite;
25
- }
26
-
27
- .sparkle-frame2 {
28
- animation: sparkle 0.42s linear 0.07s infinite;
29
- }
30
-
31
- .sparkle-frame1 {
32
- animation: sparkle 0.42s linear 0s infinite;
33
- }
34
-
35
- @keyframes sparkle {
36
- 0% {
37
- opacity: 1;
38
- }
39
-
40
- 16.666666% {
41
- opacity: 1;
42
- }
43
-
44
- 16.6666666% {
45
- opacity: 0;
46
- }
47
-
48
- 100% {
49
- opacity: 0;
50
- }
51
- }
52
- </style>
53
- <path class="sparkle-frame1" d="M3.5 0 v2 M7 3.5 h-2 M3.5 7 v-2 M0 3.5 h2 M3 3.5 h1" />
54
- <path class="sparkle-frame2"
55
- d="M3 0.5 h1 M5 1.5 h1 M6 3.5 h1 M5 5.5 h1 M3 6.5 h1 M1 5.5 h1 M0 3.5 h1 M1 1.5 h1" />
56
- <path class="sparkle-frame3" d="M3 0.5 h1 M6 3.5 h1 M3 6.5 h1 M0 3.5 h1" />
57
- <path class="sparkle-frame4" d="M3 3.5 h1" />
58
- <path class="sparkle-frame5" d="M3 2.5 h1 M4 3.5 h1 M3 4.5 h1 M2 3.5 h1" />
59
- <path class="sparkle-frame6" d="M3.5 1 v2 M4 3.5 h2 M3.5 4 v2 M1 3.5 h2" />
60
- </g>
61
- </defs>
62
- <rect id="background" width="100%" height="100%" fill="url('#BackgroundGradient')" />
63
-
64
- <use href="#sparkle" id="sparkle1">
65
- <animateMotion dur="0.77s" repeatCount="indefinite" path="M250 10 70 10" />
66
- </use>
67
- <use href="#sparkle" id="sparkle2">
68
- <animateMotion begin="0.2566" dur="0.77s" repeatCount="indefinite" path="M255 23 65 23" />
69
- </use>
70
- <use href="#sparkle" id="sparkle3">
71
- <animateMotion begin="0.5133" dur="0.77s" repeatCount="indefinite" path="M260 36 60 36" />
72
- </use>
73
- <use href="#sparkle" id="sparkle4">
74
- <animateMotion begin="0.1283" dur="0.77s" repeatCount="indefinite" path="M260 130 60 130" />
75
- </use>
76
- <use href="#sparkle" id="sparkle5">
77
- <animateMotion begin="0.385" dur="0.77s" repeatCount="indefinite" path="M255 143 65 143" />
78
- </use>
79
- <use href="#sparkle" id="sparkle6">
80
- <animateMotion begin="0.6416" dur="0.77s" repeatCount="indefinite" path="M250 166 70 166" />
81
- </use>
82
- <use href="#sparkle" id="sparkle7">
83
- <animateMotion dur="0.84s" repeatCount="indefinite" path="M250 105 70 105" />
84
- </use>
85
- <use href="#sparkle" id="sparkle8">
86
- <animateMotion begin="0.28" dur="0.84s" repeatCount="indefinite" path="M250 73 70 73" />
87
- </use>
88
- <svg id="rainbow" y="58.5">
89
- <defs>
90
- <linearGradient id="RainbowGradient" gradientTransform="rotate(90)">
91
- <stop offset="0%" stop-color="#FD1B00" />
92
- <stop offset="16.66%" stop-color="#FD1B00" />
93
- <stop offset="16.67%" stop-color="#FD9B01" />
94
- <stop offset="33.33%" stop-color="#FD9B01" />
95
- <stop offset="33.34%" stop-color="#FDEF01" />
96
- <stop offset="49.99%" stop-color="#FDEF01" />
97
- <stop offset="50.00%" stop-color="#20DB01" />
98
- <stop offset="66.66%" stop-color="#20DB01" />
99
- <stop offset="66.67%" stop-color="#008AFC" />
100
- <stop offset="83.33%" stop-color="#008AFC" />
101
- <stop offset="83.34%" stop-color="#6D3FFC" />
102
- <stop offset="100%" stop-color="#6D3FFC" />
103
- </linearGradient>
104
- </defs>
105
- <style>
106
- .rainbow-container {
107
- animation: rainbow-leftright 0.42s linear infinite;
108
- }
109
-
110
- .rainbow-piece0 {
111
- animation: rainbow-updown 0.42s linear infinite;
112
- }
113
-
114
- .rainbow-piece1 {
115
- animation: rainbow-updown 0.42s linear -0.21s infinite;
116
- }
117
-
118
- @keyframes rainbow-updown {
119
- 0% {
120
- transform: translate(0, 0px);
121
- }
122
-
123
- 49.99% {
124
- transform: translate(0, 0px);
125
- }
126
-
127
- 50% {
128
- transform: translate(0, 4px);
129
- }
130
-
131
- 100% {
132
- transform: translate(0, 4px);
133
- }
134
- }
135
-
136
- @keyframes rainbow-leftright {
137
- 0% {
138
- transform: translate(0px, 0px);
139
- }
140
-
141
- 49.99% {
142
- transform: translate(0px, 0px);
143
- }
144
-
145
- 50% {
146
- transform: translate(-4px, 0px);
147
- }
148
-
149
- 100% {
150
- transform: translate(-4px, 0px);
151
- }
152
- }
153
- </style>
154
- <g class="rainbow-container">
155
- <rect class="rainbow-piece rainbow-piece0" width="30" height="54" fill="url('#RainbowGradient')">
156
- <!-- <animateTransform attributeName="transform" type="translate" values="0 -5; 0 -5; 0 5; 0 5" dur="0.42s" repeatCount="indefinite" /> -->
157
- </rect>
158
- <rect class="rainbow-piece rainbow-piece1" x="29.5" width="30" height="54" fill="url('#RainbowGradient')" />
159
- <rect class="rainbow-piece rainbow-piece0" x="59" width="30" height="54" fill="url('#RainbowGradient')" />
160
- <rect class="rainbow-piece rainbow-piece1" x="88.5" width="30" height="54" fill="url('#RainbowGradient')" />
161
- <rect class="rainbow-piece rainbow-piece0" x="118" width="30" height="54" fill="url('#RainbowGradient')" />
162
-
163
- </g>
164
- </svg>
165
-
166
- <svg id="cat" x="120" y="58.5" width="102" height="73" viewBox="0 0 34 21" preserveAspectRatio="xMinYMin meet">
167
- <!-- All cat-frames are adapted from https://github.com/iliana/html5nyancat . -->
168
- <style>
169
- .cat-frame {
170
- opacity: 0;
171
- }
172
-
173
- #cat-frame6 {
174
- animation: catrun 0.42s linear 0.35s infinite;
175
- }
176
-
177
- #cat-frame5 {
178
- animation: catrun 0.42s linear 0.28s infinite;
179
- }
180
-
181
- #cat-frame4 {
182
- animation: catrun 0.42s linear 0.21s infinite;
183
- }
184
-
185
- #cat-frame3 {
186
- animation: catrun 0.42s linear 0.14s infinite;
187
- }
188
-
189
- #cat-frame2 {
190
- animation: catrun 0.42s linear 0.07s infinite;
191
- }
192
-
193
- #cat-frame1 {
194
- animation: catrun 0.42s linear 0s infinite;
195
- }
196
-
197
- @keyframes catrun {
198
- 0% {
199
- opacity: 1;
200
- }
201
-
202
- 16.666666% {
203
- opacity: 1;
204
- }
205
-
206
- 16.6666666% {
207
- opacity: 0;
208
- }
209
-
210
- 100% {
211
- opacity: 0;
212
- }
213
- }
214
- </style>
215
- <g id="cat-frame1" class="cat-frame">
216
- <g transform="translate(1,0)" id="layer1" style="display:inline">
217
- <g transform="translate(4,-1032.3622)" id="g3832">
218
- <path d="m 0,50 0,-3 1,0 0,-1 4,0 0,3 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3050"
219
- style="fill:#000000;fill-opacity:1;stroke:none" />
220
- <path d="m 1,49 0,-2 3,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3830"
221
- style="fill:#999999;fill-opacity:1;stroke:none" />
222
- </g>
223
- <g transform="translate(4,-1032.3622)" id="g3841">
224
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3836"
225
- style="fill:#000000;fill-opacity:1;stroke:none" />
226
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="rect3838"
227
- style="fill:#999999;fill-opacity:1;stroke:none" />
228
- </g>
229
- <g transform="matrix(-1,0,0,1,29,-1032.3622)" id="g3935">
230
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3937"
231
- style="fill:#000000;fill-opacity:1;stroke:none" />
232
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="path3939"
233
- style="fill:#999999;fill-opacity:1;stroke:none" />
234
- </g>
235
- <g transform="translate(0,-1032.3622)" id="g3948">
236
- <path d="m 24,49 0,-1 4,0 0,1 -1,0 0,1 -2,0 0,-1 z" transform="translate(0,1002.3622)" id="path3941"
237
- style="fill:#000000;fill-opacity:1;stroke:none" />
238
- <path d="m 25,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="rect3943"
239
- style="fill:#999999;fill-opacity:1;stroke:none" />
240
- </g>
241
- <g transform="translate(0,-1032.3622)" id="layer1-0">
242
- <path d="m 7,1033.3622 19,0 0,16 -19,0 z" id="rect5270" style="fill:#ffcc99;fill-opacity:1" />
243
- <path
244
- d="m 8,1046.3622 0,-10 1,0 0,-1 1,0 0,-1 13,0 0,1 1,0 0,1 1,0 0,10 -1,0 0,1 -1,0 0,1 -13,0 0,-1 -1,0 0,-1 z"
245
- id="path5272" style="fill:#ff99ff;fill-opacity:1;stroke:none" />
246
- <path
247
- d="m 22,1037.3622 1,0 0,1 -1,0 z m -4,-2 1,0 0,1 -1,0 z m -3,0 1,0 0,1 -1,0 z m -1,4 1,0 0,1 -1,0 z m 1,3 1,0 0,1 -1,0 z m -2,3 1,0 0,1 -1,0 z m -2,-4 1,0 0,1 -1,0 z m -2,2 1,0 0,1 -1,0 z m 1,3 1,0 0,1 -1,0 z m 0,-10 1,0 0,1 -1,0 z"
248
- id="rect5030-3-6" style="fill:#ff3399;fill-opacity:1" />
249
- <path
250
- d="m 8,1049.3622 17,0 0,1 -17,0 z m 0,-17 17,0 0,1 -17,0 z m 18,16 0,-14 1,0 0,14 z m -20,0 0,-14 1,0 0,14 z m 1,0 1,0 0,1 -1,0 z m 0,-15 1,0 0,1 -1,0 z m 18,0 1,0 0,1 -1,0 z m 0,15 1,0 0,1 -1,0 z"
251
- id="path5412" style="fill:#000000;fill-opacity:1" />
252
- </g>
253
- <g transform="translate(6,0)" id="layer3">
254
- <g id="g5869">
255
- <path
256
- d="m 11,15 0,-5 1,0 0,-4 2,0 0,1 1,0 0,1 1,0 0,1 4,0 0,-1 1,0 0,-1 1,0 0,-1 2,0 0,4 1,0 0,5 -1,0 0,1 -1,0 0,1 -10,0 0,-1 -1,0 0,-1 z"
257
- id="path5777" style="fill:#999999;fill-opacity:1;stroke:none" />
258
- <path
259
- d="m 23,16 1,0 0,1 -1,0 z m 1,-1 1,0 0,1 -1,0 z m 1,-5 1,0 0,5 -1,0 z m -1,-4 1,0 0,4 -1,0 z m -2,-1 2,0 0,1 -2,0 z m -6,3 4,0 0,1 -4,0 z m -4,-3 2,0 0,1 -2,0 z m -1,1 1,0 0,4 -1,0 z m -1,4 1,0 0,5 -1,0 z m 11,-4 1,0 0,1 -1,0 z m -1,1 1,0 0,1 -1,0 z m -5,0 1,0 0,1 -1,0 z m -1,-1 1,0 0,1 -1,0 z m -1,11 10,0 0,1 -10,0 z m -1,-1 1,0 0,1 -1,0 z m -1,-1 1,0 0,1 -1,0 z"
260
- id="rect5496-38" style="fill:#000000;fill-opacity:1;stroke:none" />
261
- <path d="m 12,13 2,0 0,2 -2,0 z" id="rect5779" style="fill:#ff9999;fill-opacity:1;stroke:none" />
262
- <path d="m 23,13 2,0 0,2 -2,0 z" id="rect5781" style="fill:#ff9999;fill-opacity:1;stroke:none" />
263
- <path d="m 15,16 0,-2 1,0 0,1 2,0 0,-1 1,0 0,1 2,0 0,-1 1,0 0,2 z" id="path5785"
264
- style="fill:#000000;fill-opacity:1;stroke:none" />
265
- <path d="m 19,12 1,0 0,1 -1,0 z" id="rect5787" style="fill:#000000;fill-opacity:1;stroke:none" />
266
- <g id="g5857">
267
- <path d="m 21,13 0,-1 1,0 0,-1 1,0 0,2 z" id="path5795" style="fill:#000000;fill-opacity:1;stroke:none" />
268
- <path d="m 21,11 1,0 0,1 -1,0 z" id="path5797" style="fill:#ffffff;fill-opacity:1;stroke:none" />
269
- </g>
270
- <g transform="translate(-7,0)" id="g5861">
271
- <path d="m 21,13 0,-1 1,0 0,-1 1,0 0,2 z" id="path5863" style="fill:#000000;fill-opacity:1;stroke:none" />
272
- <path d="m 21,11 1,0 0,1 -1,0 z" id="path5865" style="fill:#ffffff;fill-opacity:1;stroke:none" />
273
- </g>
274
- </g>
275
- </g>
276
- <g id="g3486">
277
- <path d="M 0,10 0,7 4,7 4,8 5,8 5,9 6,9 6,14 5,14 5,13 3,13 3,12 2,12 2,11 1,11 1,10 z" id="path3954"
278
- style="fill:#000000;fill-opacity:1;stroke:none" />
279
- <path d="m 1,9 0,-1 2,0 0,1 1,0 0,1 1,0 0,1 1,0 0,1 -2,0 0,-1 -1,0 0,-1 -1,0 0,-1 z" id="path3956"
280
- style="fill:#999999;fill-opacity:1;stroke:none" />
281
- </g>
282
- </g>
283
- </g>
284
-
285
- <g id="cat-frame2" class="cat-frame">
286
- <g transform="translate(1,-1)" id="g4196">
287
- <g transform="translate(0,-1031.3622)" id="layer1">
288
- <g id="g3982">
289
- <path d="m 5,20 0,-3 1,0 0,-1 3,0 0,3 -1,0 0,1 z" transform="translate(0,1032.3622)" id="path3977"
290
- style="fill:#000000;fill-opacity:1;stroke:none" />
291
- <path d="m 6,17 2,0 0,2 -2,0 z" transform="translate(0,1032.3622)" id="rect3979"
292
- style="fill:#999999;fill-opacity:1;stroke:none" />
293
- </g>
294
- <g transform="matrix(-1,0,0,1,20,0)" id="g3841">
295
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3836"
296
- style="fill:#000000;fill-opacity:1;stroke:none" />
297
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="rect3838"
298
- style="fill:#999999;fill-opacity:1;stroke:none" />
299
- </g>
300
- <g transform="matrix(-1,0,0,1,30,0)" id="g3935">
301
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3937"
302
- style="fill:#000000;fill-opacity:1;stroke:none" />
303
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="path3939"
304
- style="fill:#999999;fill-opacity:1;stroke:none" />
305
- </g>
306
- <g id="layer1-0">
307
- <path d="m 7,1033.3622 19,0 0,16 -19,0 z" id="rect5270" style="fill:#ffcc99;fill-opacity:1" />
308
- <path
309
- d="m 8,1046.3622 0,-10 1,0 0,-1 1,0 0,-1 13,0 0,1 1,0 0,1 1,0 0,10 -1,0 0,1 -1,0 0,1 -13,0 0,-1 -1,0 0,-1 z"
310
- id="path5272" style="fill:#ff99ff;fill-opacity:1;stroke:none" />
311
- <path
312
- d="m 22,1037.3622 1,0 0,1 -1,0 z m -4,-2 1,0 0,1 -1,0 z m -3,0 1,0 0,1 -1,0 z m -1,4 1,0 0,1 -1,0 z m 1,3 1,0 0,1 -1,0 z m -2,3 1,0 0,1 -1,0 z m -2,-4 1,0 0,1 -1,0 z m -2,2 1,0 0,1 -1,0 z m 1,3 1,0 0,1 -1,0 z m 0,-10 1,0 0,1 -1,0 z"
313
- id="rect5030-3-6" style="fill:#ff3399;fill-opacity:1" />
314
- <path
315
- d="m 8,1049.3622 17,0 0,1 -17,0 z m 0,-17 17,0 0,1 -17,0 z m 18,16 0,-14 1,0 0,14 z m -20,0 0,-14 1,0 0,14 z m 1,0 1,0 0,1 -1,0 z m 0,-15 1,0 0,1 -1,0 z m 18,0 1,0 0,1 -1,0 z m 0,15 1,0 0,1 -1,0 z"
316
- id="path5412" style="fill:#000000;fill-opacity:1" />
317
- </g>
318
- <g transform="translate(7,1032.3622)" id="layer3">
319
- <g id="g5869">
320
- <path
321
- d="m 11,15 0,-5 1,0 0,-4 2,0 0,1 1,0 0,1 1,0 0,1 4,0 0,-1 1,0 0,-1 1,0 0,-1 2,0 0,4 1,0 0,5 -1,0 0,1 -1,0 0,1 -10,0 0,-1 -1,0 0,-1 z"
322
- id="path5777" style="fill:#999999;fill-opacity:1;stroke:none" />
323
- <path
324
- d="m 23,16 1,0 0,1 -1,0 z m 1,-1 1,0 0,1 -1,0 z m 1,-5 1,0 0,5 -1,0 z m -1,-4 1,0 0,4 -1,0 z m -2,-1 2,0 0,1 -2,0 z m -6,3 4,0 0,1 -4,0 z m -4,-3 2,0 0,1 -2,0 z m -1,1 1,0 0,4 -1,0 z m -1,4 1,0 0,5 -1,0 z m 11,-4 1,0 0,1 -1,0 z m -1,1 1,0 0,1 -1,0 z m -5,0 1,0 0,1 -1,0 z m -1,-1 1,0 0,1 -1,0 z m -1,11 10,0 0,1 -10,0 z m -1,-1 1,0 0,1 -1,0 z m -1,-1 1,0 0,1 -1,0 z"
325
- id="rect5496-38" style="fill:#000000;fill-opacity:1;stroke:none" />
326
- <path d="m 12,13 2,0 0,2 -2,0 z" id="rect5779" style="fill:#ff9999;fill-opacity:1;stroke:none" />
327
- <path d="m 23,13 2,0 0,2 -2,0 z" id="rect5781" style="fill:#ff9999;fill-opacity:1;stroke:none" />
328
- <path d="m 15,16 0,-2 1,0 0,1 2,0 0,-1 1,0 0,1 2,0 0,-1 1,0 0,2 z" id="path5785"
329
- style="fill:#000000;fill-opacity:1;stroke:none" />
330
- <path d="m 19,12 1,0 0,1 -1,0 z" id="rect5787" style="fill:#000000;fill-opacity:1;stroke:none" />
331
- <g id="g5857">
332
- <path d="m 21,13 0,-1 1,0 0,-1 1,0 0,2 z" id="path5795"
333
- style="fill:#000000;fill-opacity:1;stroke:none" />
334
- <path d="m 21,11 1,0 0,1 -1,0 z" id="path5797" style="fill:#ffffff;fill-opacity:1;stroke:none" />
335
- </g>
336
- <g transform="translate(-7,0)" id="g5861">
337
- <path d="m 21,13 0,-1 1,0 0,-1 1,0 0,2 z" id="path5863"
338
- style="fill:#000000;fill-opacity:1;stroke:none" />
339
- <path d="m 21,11 1,0 0,1 -1,0 z" id="path5865" style="fill:#ffffff;fill-opacity:1;stroke:none" />
340
- </g>
341
- </g>
342
- </g>
343
- <g transform="matrix(-1,0,0,1,35,0)" id="g3986">
344
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3988"
345
- style="fill:#000000;fill-opacity:1;stroke:none" />
346
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="path3990"
347
- style="fill:#999999;fill-opacity:1;stroke:none" />
348
- </g>
349
- <g id="g3996">
350
- <path d="m 1,12 -1,0 0,-2 1,0 0,-1 2,0 0,1 1,0 0,1 2,0 0,4 -2,0 0,-1 -2,0 0,-1 -1,0 z"
351
- transform="translate(0,1032.3622)" id="path3992" style="fill:#000000;stroke:none" />
352
- <path d="m 1,12 0,-2 2,0 0,2 3,0 0,2 -2,0 0,-1 -2,0 0,-1 z" transform="translate(0,1032.3622)" id="path3994"
353
- style="fill:#999999;fill-opacity:1;stroke:none" />
354
- </g>
355
- </g>
356
- </g>
357
- </g>
358
-
359
- <g id="cat-frame3" class="cat-frame">
360
- <g transform="translate(1,1)" id="g4137">
361
- <g id="g3806">
362
- <path d="m 6,20 0,-4 4,0 0,3 -1,0 0,1 z" id="path3977" style="fill:#000000;fill-opacity:1;stroke:none" />
363
- <path d="m 7,17 2,0 0,2 -2,0 z" id="rect3979" style="fill:#999999;fill-opacity:1;stroke:none" />
364
- </g>
365
- <g transform="matrix(-1,0,0,1,21,-1032.3622)" id="g3841">
366
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3836"
367
- style="fill:#000000;fill-opacity:1;stroke:none" />
368
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="rect3838"
369
- style="fill:#999999;fill-opacity:1;stroke:none" />
370
- </g>
371
- <g transform="matrix(-1,0,0,1,31,-1032.3622)" id="g3935">
372
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3937"
373
- style="fill:#000000;fill-opacity:1;stroke:none" />
374
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="path3939"
375
- style="fill:#999999;fill-opacity:1;stroke:none" />
376
- </g>
377
- <g transform="translate(0,-1032.3622)" id="layer1-0">
378
- <path d="m 7,1033.3622 19,0 0,16 -19,0 z" id="rect5270" style="fill:#ffcc99;fill-opacity:1" />
379
- <path
380
- d="m 8,1046.3622 0,-10 1,0 0,-1 1,0 0,-1 13,0 0,1 1,0 0,1 1,0 0,10 -1,0 0,1 -1,0 0,1 -13,0 0,-1 -1,0 0,-1 z"
381
- id="path5272" style="fill:#ff99ff;fill-opacity:1;stroke:none" />
382
- <path
383
- d="m 22,1037.3622 1,0 0,1 -1,0 z m -4,-2 1,0 0,1 -1,0 z m -3,0 1,0 0,1 -1,0 z m -1,4 1,0 0,1 -1,0 z m 1,3 1,0 0,1 -1,0 z m -2,3 1,0 0,1 -1,0 z m -2,-4 1,0 0,1 -1,0 z m -2,2 1,0 0,1 -1,0 z m 1,3 1,0 0,1 -1,0 z m 0,-10 1,0 0,1 -1,0 z"
384
- id="rect5030-3-6" style="fill:#ff3399;fill-opacity:1" />
385
- <path
386
- d="m 8,1049.3622 17,0 0,1 -17,0 z m 0,-17 17,0 0,1 -17,0 z m 18,16 0,-14 1,0 0,14 z m -20,0 0,-14 1,0 0,14 z m 1,0 1,0 0,1 -1,0 z m 0,-15 1,0 0,1 -1,0 z m 18,0 1,0 0,1 -1,0 z m 0,15 1,0 0,1 -1,0 z"
387
- id="path5412" style="fill:#000000;fill-opacity:1" />
388
- </g>
389
- <g transform="translate(7,0)" id="layer3">
390
- <g id="g5869">
391
- <path
392
- d="m 11,15 0,-5 1,0 0,-4 2,0 0,1 1,0 0,1 1,0 0,1 4,0 0,-1 1,0 0,-1 1,0 0,-1 2,0 0,4 1,0 0,5 -1,0 0,1 -1,0 0,1 -10,0 0,-1 -1,0 0,-1 z"
393
- id="path5777" style="fill:#999999;fill-opacity:1;stroke:none" />
394
- <path
395
- d="m 23,16 1,0 0,1 -1,0 z m 1,-1 1,0 0,1 -1,0 z m 1,-5 1,0 0,5 -1,0 z m -1,-4 1,0 0,4 -1,0 z m -2,-1 2,0 0,1 -2,0 z m -6,3 4,0 0,1 -4,0 z m -4,-3 2,0 0,1 -2,0 z m -1,1 1,0 0,4 -1,0 z m -1,4 1,0 0,5 -1,0 z m 11,-4 1,0 0,1 -1,0 z m -1,1 1,0 0,1 -1,0 z m -5,0 1,0 0,1 -1,0 z m -1,-1 1,0 0,1 -1,0 z m -1,11 10,0 0,1 -10,0 z m -1,-1 1,0 0,1 -1,0 z m -1,-1 1,0 0,1 -1,0 z"
396
- id="rect5496-38" style="fill:#000000;fill-opacity:1;stroke:none" />
397
- <path d="m 12,13 2,0 0,2 -2,0 z" id="rect5779" style="fill:#ff9999;fill-opacity:1;stroke:none" />
398
- <path d="m 23,13 2,0 0,2 -2,0 z" id="rect5781" style="fill:#ff9999;fill-opacity:1;stroke:none" />
399
- <path d="m 15,16 0,-2 1,0 0,1 2,0 0,-1 1,0 0,1 2,0 0,-1 1,0 0,2 z" id="path5785"
400
- style="fill:#000000;fill-opacity:1;stroke:none" />
401
- <path d="m 19,12 1,0 0,1 -1,0 z" id="rect5787" style="fill:#000000;fill-opacity:1;stroke:none" />
402
- <g id="g5857">
403
- <path d="m 21,13 0,-1 1,0 0,-1 1,0 0,2 z" id="path5795" style="fill:#000000;fill-opacity:1;stroke:none" />
404
- <path d="m 21,11 1,0 0,1 -1,0 z" id="path5797" style="fill:#ffffff;fill-opacity:1;stroke:none" />
405
- </g>
406
- <g transform="translate(-7,0)" id="g5861">
407
- <path d="m 21,13 0,-1 1,0 0,-1 1,0 0,2 z" id="path5863" style="fill:#000000;fill-opacity:1;stroke:none" />
408
- <path d="m 21,11 1,0 0,1 -1,0 z" id="path5865" style="fill:#ffffff;fill-opacity:1;stroke:none" />
409
- </g>
410
- </g>
411
- </g>
412
- <g transform="matrix(-1,0,0,1,36,-1032.3622)" id="g3986">
413
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3988"
414
- style="fill:#000000;fill-opacity:1;stroke:none" />
415
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="path3990"
416
- style="fill:#999999;fill-opacity:1;stroke:none" />
417
- </g>
418
- <g id="g4584">
419
- <path d="m 0,14 0,-2 2,0 0,-1 3,0 0,-1 1,0 0,4 -1,0 0,1 -4,0 0,-1 z" id="path3812"
420
- style="fill:#000000;stroke:none" />
421
- <path d="m 1,14 0,-1 1,0 0,-1 4,0 0,1 -2,0 0,1 z" id="path3814" style="fill:#999999;stroke:none" />
422
- </g>
423
- </g>
424
- </g>
425
-
426
- <g id="cat-frame4" class="cat-frame">
427
- <g transform="translate(1,0)" id="g4082">
428
- <g transform="translate(0,-1031.3622)" id="g3982">
429
- <path d="m 5,20 0,-3 1,0 0,-1 3,0 0,3 -1,0 0,1 z" transform="translate(0,1032.3622)" id="path3977-4"
430
- style="fill:#000000;fill-opacity:1;stroke:none" />
431
- <path d="m 6,17 2,0 0,2 -2,0 z" transform="translate(0,1032.3622)" id="rect3979-3"
432
- style="fill:#999999;fill-opacity:1;stroke:none" />
433
- </g>
434
- <g transform="matrix(-1,0,0,1,20,-1031.3622)" id="g3841">
435
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3836"
436
- style="fill:#000000;fill-opacity:1;stroke:none" />
437
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="rect3838"
438
- style="fill:#999999;fill-opacity:1;stroke:none" />
439
- </g>
440
- <g transform="matrix(-1,0,0,1,30,-1031.3622)" id="g3935">
441
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3937"
442
- style="fill:#000000;fill-opacity:1;stroke:none" />
443
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="path3939"
444
- style="fill:#999999;fill-opacity:1;stroke:none" />
445
- </g>
446
- <g transform="translate(0,-1031.3622)" id="layer1-0">
447
- <path d="m 7,1033.3622 19,0 0,16 -19,0 z" id="rect5270" style="fill:#ffcc99;fill-opacity:1" />
448
- <path
449
- d="m 8,1046.3622 0,-10 1,0 0,-1 1,0 0,-1 13,0 0,1 1,0 0,1 1,0 0,10 -1,0 0,1 -1,0 0,1 -13,0 0,-1 -1,0 0,-1 z"
450
- id="path5272" style="fill:#ff99ff;fill-opacity:1;stroke:none" />
451
- <path
452
- d="m 22,1037.3622 1,0 0,1 -1,0 z m -4,-2 1,0 0,1 -1,0 z m -3,0 1,0 0,1 -1,0 z m -1,4 1,0 0,1 -1,0 z m 1,3 1,0 0,1 -1,0 z m -2,3 1,0 0,1 -1,0 z m -2,-4 1,0 0,1 -1,0 z m -2,2 1,0 0,1 -1,0 z m 1,3 1,0 0,1 -1,0 z m 0,-10 1,0 0,1 -1,0 z"
453
- id="rect5030-3-6" style="fill:#ff3399;fill-opacity:1" />
454
- <path
455
- d="m 8,1049.3622 17,0 0,1 -17,0 z m 0,-17 17,0 0,1 -17,0 z m 18,16 0,-14 1,0 0,14 z m -20,0 0,-14 1,0 0,14 z m 1,0 1,0 0,1 -1,0 z m 0,-15 1,0 0,1 -1,0 z m 18,0 1,0 0,1 -1,0 z m 0,15 1,0 0,1 -1,0 z"
456
- id="path5412" style="fill:#000000;fill-opacity:1" />
457
- </g>
458
- <g transform="translate(7,1)" id="layer3">
459
- <g id="g5869">
460
- <path
461
- d="m 11,15 0,-5 1,0 0,-4 2,0 0,1 1,0 0,1 1,0 0,1 4,0 0,-1 1,0 0,-1 1,0 0,-1 2,0 0,4 1,0 0,5 -1,0 0,1 -1,0 0,1 -10,0 0,-1 -1,0 0,-1 z"
462
- id="path5777" style="fill:#999999;fill-opacity:1;stroke:none" />
463
- <path
464
- d="m 23,16 1,0 0,1 -1,0 z m 1,-1 1,0 0,1 -1,0 z m 1,-5 1,0 0,5 -1,0 z m -1,-4 1,0 0,4 -1,0 z m -2,-1 2,0 0,1 -2,0 z m -6,3 4,0 0,1 -4,0 z m -4,-3 2,0 0,1 -2,0 z m -1,1 1,0 0,4 -1,0 z m -1,4 1,0 0,5 -1,0 z m 11,-4 1,0 0,1 -1,0 z m -1,1 1,0 0,1 -1,0 z m -5,0 1,0 0,1 -1,0 z m -1,-1 1,0 0,1 -1,0 z m -1,11 10,0 0,1 -10,0 z m -1,-1 1,0 0,1 -1,0 z m -1,-1 1,0 0,1 -1,0 z"
465
- id="rect5496-38" style="fill:#000000;fill-opacity:1;stroke:none" />
466
- <path d="m 12,13 2,0 0,2 -2,0 z" id="rect5779" style="fill:#ff9999;fill-opacity:1;stroke:none" />
467
- <path d="m 23,13 2,0 0,2 -2,0 z" id="rect5781" style="fill:#ff9999;fill-opacity:1;stroke:none" />
468
- <path d="m 15,16 0,-2 1,0 0,1 2,0 0,-1 1,0 0,1 2,0 0,-1 1,0 0,2 z" id="path5785"
469
- style="fill:#000000;fill-opacity:1;stroke:none" />
470
- <path d="m 19,12 1,0 0,1 -1,0 z" id="rect5787" style="fill:#000000;fill-opacity:1;stroke:none" />
471
- <g id="g5857">
472
- <path d="m 21,13 0,-1 1,0 0,-1 1,0 0,2 z" id="path5795" style="fill:#000000;fill-opacity:1;stroke:none" />
473
- <path d="m 21,11 1,0 0,1 -1,0 z" id="path5797" style="fill:#ffffff;fill-opacity:1;stroke:none" />
474
- </g>
475
- <g transform="translate(-7,0)" id="g5861">
476
- <path d="m 21,13 0,-1 1,0 0,-1 1,0 0,2 z" id="path5863" style="fill:#000000;fill-opacity:1;stroke:none" />
477
- <path d="m 21,11 1,0 0,1 -1,0 z" id="path5865" style="fill:#ffffff;fill-opacity:1;stroke:none" />
478
- </g>
479
- </g>
480
- </g>
481
- <g transform="matrix(-1,0,0,1,35,-1031.3622)" id="g3986">
482
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3988"
483
- style="fill:#000000;fill-opacity:1;stroke:none" />
484
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="path3990"
485
- style="fill:#999999;fill-opacity:1;stroke:none" />
486
- </g>
487
- <g transform="matrix(1,0,0,-1,0,1058.3622)" id="g4887">
488
- <path d="m 1,12 -1,0 0,-2 1,0 0,-1 2,0 0,1 1,0 0,1 2,0 0,4 -2,0 0,-1 -2,0 0,-1 -1,0 z"
489
- transform="translate(0,1032.3622)" id="path4889" style="fill:#000000;stroke:none" />
490
- <path d="m 1,12 0,-2 2,0 0,2 3,0 0,2 -2,0 0,-1 -2,0 0,-1 z" transform="translate(0,1032.3622)" id="path4891"
491
- style="fill:#999999;fill-opacity:1;stroke:none" />
492
- </g>
493
- </g>
494
- </g>
495
-
496
- <g id="cat-frame5" class="cat-frame">
497
- <g transform="translate(1,0)" id="g4025">
498
- <g transform="translate(0,1)" id="g5089">
499
- <path d="m 3,20 0,-3 1,0 0,-1 1,0 0,-1 3,0 0,3 -1,0 0,1 -1,0 0,1 z" id="path5085"
500
- style="fill:#000000;stroke:none" />
501
- <path d="m 4,19 0,-2 1,0 0,-1 2,0 0,2 -1,0 0,1 z" id="path5087" style="fill:#999999;stroke:none" />
502
- </g>
503
- <g transform="matrix(-1,0,0,1,20,-1031.3622)" id="g3841">
504
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3836"
505
- style="fill:#000000;fill-opacity:1;stroke:none" />
506
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="rect3838"
507
- style="fill:#999999;fill-opacity:1;stroke:none" />
508
- </g>
509
- <g transform="matrix(-1,0,0,1,28,-1031.3622)" id="g3935">
510
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3937"
511
- style="fill:#000000;fill-opacity:1;stroke:none" />
512
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="path3939"
513
- style="fill:#999999;fill-opacity:1;stroke:none" />
514
- </g>
515
- <g transform="translate(0,-1031.3622)" id="layer1-0">
516
- <path d="m 7,1033.3622 19,0 0,16 -19,0 z" id="rect5270" style="fill:#ffcc99;fill-opacity:1" />
517
- <path
518
- d="m 8,1046.3622 0,-10 1,0 0,-1 1,0 0,-1 13,0 0,1 1,0 0,1 1,0 0,10 -1,0 0,1 -1,0 0,1 -13,0 0,-1 -1,0 0,-1 z"
519
- id="path5272" style="fill:#ff99ff;fill-opacity:1;stroke:none" />
520
- <path
521
- d="m 22,1037.3622 1,0 0,1 -1,0 z m -4,-2 1,0 0,1 -1,0 z m -3,0 1,0 0,1 -1,0 z m -1,4 1,0 0,1 -1,0 z m 1,3 1,0 0,1 -1,0 z m -2,3 1,0 0,1 -1,0 z m -2,-4 1,0 0,1 -1,0 z m -2,2 1,0 0,1 -1,0 z m 1,3 1,0 0,1 -1,0 z m 0,-10 1,0 0,1 -1,0 z"
522
- id="rect5030-3-6" style="fill:#ff3399;fill-opacity:1" />
523
- <path
524
- d="m 8,1049.3622 17,0 0,1 -17,0 z m 0,-17 17,0 0,1 -17,0 z m 18,16 0,-14 1,0 0,14 z m -20,0 0,-14 1,0 0,14 z m 1,0 1,0 0,1 -1,0 z m 0,-15 1,0 0,1 -1,0 z m 18,0 1,0 0,1 -1,0 z m 0,15 1,0 0,1 -1,0 z"
525
- id="path5412" style="fill:#000000;fill-opacity:1" />
526
- </g>
527
- <g transform="translate(6,1)" id="layer3">
528
- <g id="g5869">
529
- <path
530
- d="m 11,15 0,-5 1,0 0,-4 2,0 0,1 1,0 0,1 1,0 0,1 4,0 0,-1 1,0 0,-1 1,0 0,-1 2,0 0,4 1,0 0,5 -1,0 0,1 -1,0 0,1 -10,0 0,-1 -1,0 0,-1 z"
531
- id="path5777" style="fill:#999999;fill-opacity:1;stroke:none" />
532
- <path
533
- d="m 23,16 1,0 0,1 -1,0 z m 1,-1 1,0 0,1 -1,0 z m 1,-5 1,0 0,5 -1,0 z m -1,-4 1,0 0,4 -1,0 z m -2,-1 2,0 0,1 -2,0 z m -6,3 4,0 0,1 -4,0 z m -4,-3 2,0 0,1 -2,0 z m -1,1 1,0 0,4 -1,0 z m -1,4 1,0 0,5 -1,0 z m 11,-4 1,0 0,1 -1,0 z m -1,1 1,0 0,1 -1,0 z m -5,0 1,0 0,1 -1,0 z m -1,-1 1,0 0,1 -1,0 z m -1,11 10,0 0,1 -10,0 z m -1,-1 1,0 0,1 -1,0 z m -1,-1 1,0 0,1 -1,0 z"
534
- id="rect5496-38" style="fill:#000000;fill-opacity:1;stroke:none" />
535
- <path d="m 12,13 2,0 0,2 -2,0 z" id="rect5779" style="fill:#ff9999;fill-opacity:1;stroke:none" />
536
- <path d="m 23,13 2,0 0,2 -2,0 z" id="rect5781" style="fill:#ff9999;fill-opacity:1;stroke:none" />
537
- <path d="m 15,16 0,-2 1,0 0,1 2,0 0,-1 1,0 0,1 2,0 0,-1 1,0 0,2 z" id="path5785"
538
- style="fill:#000000;fill-opacity:1;stroke:none" />
539
- <path d="m 19,12 1,0 0,1 -1,0 z" id="rect5787" style="fill:#000000;fill-opacity:1;stroke:none" />
540
- <g id="g5857">
541
- <path d="m 21,13 0,-1 1,0 0,-1 1,0 0,2 z" id="path5795" style="fill:#000000;fill-opacity:1;stroke:none" />
542
- <path d="m 21,11 1,0 0,1 -1,0 z" id="path5797" style="fill:#ffffff;fill-opacity:1;stroke:none" />
543
- </g>
544
- <g transform="translate(-7,0)" id="g5861">
545
- <path d="m 21,13 0,-1 1,0 0,-1 1,0 0,2 z" id="path5863" style="fill:#000000;fill-opacity:1;stroke:none" />
546
- <path d="m 21,11 1,0 0,1 -1,0 z" id="path5865" style="fill:#ffffff;fill-opacity:1;stroke:none" />
547
- </g>
548
- </g>
549
- </g>
550
- <g transform="matrix(-1,0,0,1,33,-1031.3622)" id="g3986">
551
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3988"
552
- style="fill:#000000;fill-opacity:1;stroke:none" />
553
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="path3990"
554
- style="fill:#999999;fill-opacity:1;stroke:none" />
555
- </g>
556
- <g transform="translate(0,1)" id="g5097">
557
- <path d="M -1,11 -1,9 0,9 0,8 4,8 4,9 6,9 6,13 4,13 4,12 1,12 1,11 z" id="path5093"
558
- style="fill:#000000;stroke:none" />
559
- <path d="m 0,10 0,-1 3,0 0,1 2,0 0,1 1,0 0,1 -1,0 0,-1 -4,0 0,-1 z" id="path5095"
560
- style="fill:#999999;stroke:none" />
561
- </g>
562
- </g>
563
- </g>
564
-
565
- <g id="cat-frame6" class="cat-frame">
566
- <g transform="translate(1,0)" id="g3968">
567
- <g transform="translate(0,1)" id="g5089">
568
- <path d="m 3,20 0,-3 1,0 0,-1 1,0 0,-1 3,0 0,3 -1,0 0,1 -1,0 0,1 z" id="path5085"
569
- style="fill:#000000;stroke:none" />
570
- <path d="m 4,19 0,-2 1,0 0,-1 1,0 0,1 1,0 0,1 -1,0 0,1 z" id="path5087" style="fill:#999999;stroke:none" />
571
- </g>
572
- <g transform="matrix(-1,0,0,1,32,-1031.3622)" id="g3982">
573
- <path d="m 5,20 0,-3 1,0 0,-1 3,0 0,3 -1,0 0,1 z" transform="translate(0,1032.3622)" id="path3977"
574
- style="fill:#000000;fill-opacity:1;stroke:none" />
575
- <path d="m 6,17 2,0 0,2 -2,0 z" transform="translate(0,1032.3622)" id="rect3979"
576
- style="fill:#999999;fill-opacity:1;stroke:none" />
577
- </g>
578
- <g transform="translate(3,-1031.3622)" id="g3841">
579
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3836"
580
- style="fill:#000000;fill-opacity:1;stroke:none" />
581
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="rect3838"
582
- style="fill:#999999;fill-opacity:1;stroke:none" />
583
- </g>
584
- <g transform="translate(12,-1031.3622)" id="g3935">
585
- <path d="m 6,50 0,-2 4,0 0,1 -1,0 0,1 z" transform="translate(0,1002.3622)" id="path3937"
586
- style="fill:#000000;fill-opacity:1;stroke:none" />
587
- <path d="m 7,48 2,0 0,1 -2,0 z" transform="translate(0,1002.3622)" id="path3939"
588
- style="fill:#999999;fill-opacity:1;stroke:none" />
589
- </g>
590
- <g transform="translate(0,-1031.3622)" id="layer1-0">
591
- <path d="m 7,1033.3622 19,0 0,16 -19,0 z" id="rect5270" style="fill:#ffcc99;fill-opacity:1" />
592
- <path
593
- d="m 8,1046.3622 0,-10 1,0 0,-1 1,0 0,-1 13,0 0,1 1,0 0,1 1,0 0,10 -1,0 0,1 -1,0 0,1 -13,0 0,-1 -1,0 0,-1 z"
594
- id="path5272" style="fill:#ff99ff;fill-opacity:1;stroke:none" />
595
- <path
596
- d="m 22,1037.3622 1,0 0,1 -1,0 z m -4,-2 1,0 0,1 -1,0 z m -3,0 1,0 0,1 -1,0 z m -1,4 1,0 0,1 -1,0 z m 1,3 1,0 0,1 -1,0 z m -2,3 1,0 0,1 -1,0 z m -2,-4 1,0 0,1 -1,0 z m -2,2 1,0 0,1 -1,0 z m 1,3 1,0 0,1 -1,0 z m 0,-10 1,0 0,1 -1,0 z"
597
- id="rect5030-3-6" style="fill:#ff3399;fill-opacity:1" />
598
- <path
599
- d="m 8,1049.3622 17,0 0,1 -17,0 z m 0,-17 17,0 0,1 -17,0 z m 18,16 0,-14 1,0 0,14 z m -20,0 0,-14 1,0 0,14 z m 1,0 1,0 0,1 -1,0 z m 0,-15 1,0 0,1 -1,0 z m 18,0 1,0 0,1 -1,0 z m 0,15 1,0 0,1 -1,0 z"
600
- id="path5412" style="fill:#000000;fill-opacity:1" />
601
- </g>
602
- <g transform="translate(6,0)" id="layer3">
603
- <g id="g5869">
604
- <path
605
- d="m 11,15 0,-5 1,0 0,-4 2,0 0,1 1,0 0,1 1,0 0,1 4,0 0,-1 1,0 0,-1 1,0 0,-1 2,0 0,4 1,0 0,5 -1,0 0,1 -1,0 0,1 -10,0 0,-1 -1,0 0,-1 z"
606
- id="path5777" style="fill:#999999;fill-opacity:1;stroke:none" />
607
- <path
608
- d="m 23,16 1,0 0,1 -1,0 z m 1,-1 1,0 0,1 -1,0 z m 1,-5 1,0 0,5 -1,0 z m -1,-4 1,0 0,4 -1,0 z m -2,-1 2,0 0,1 -2,0 z m -6,3 4,0 0,1 -4,0 z m -4,-3 2,0 0,1 -2,0 z m -1,1 1,0 0,4 -1,0 z m -1,4 1,0 0,5 -1,0 z m 11,-4 1,0 0,1 -1,0 z m -1,1 1,0 0,1 -1,0 z m -5,0 1,0 0,1 -1,0 z m -1,-1 1,0 0,1 -1,0 z m -1,11 10,0 0,1 -10,0 z m -1,-1 1,0 0,1 -1,0 z m -1,-1 1,0 0,1 -1,0 z"
609
- id="rect5496-38" style="fill:#000000;fill-opacity:1;stroke:none" />
610
- <path d="m 12,13 2,0 0,2 -2,0 z" id="rect5779" style="fill:#ff9999;fill-opacity:1;stroke:none" />
611
- <path d="m 23,13 2,0 0,2 -2,0 z" id="rect5781" style="fill:#ff9999;fill-opacity:1;stroke:none" />
612
- <path d="m 15,16 0,-2 1,0 0,1 2,0 0,-1 1,0 0,1 2,0 0,-1 1,0 0,2 z" id="path5785"
613
- style="fill:#000000;fill-opacity:1;stroke:none" />
614
- <path d="m 19,12 1,0 0,1 -1,0 z" id="rect5787" style="fill:#000000;fill-opacity:1;stroke:none" />
615
- <g id="g5857">
616
- <path d="m 21,13 0,-1 1,0 0,-1 1,0 0,2 z" id="path5795" style="fill:#000000;fill-opacity:1;stroke:none" />
617
- <path d="m 21,11 1,0 0,1 -1,0 z" id="path5797" style="fill:#ffffff;fill-opacity:1;stroke:none" />
618
- </g>
619
- <g transform="translate(-7,0)" id="g5861">
620
- <path d="m 21,13 0,-1 1,0 0,-1 1,0 0,2 z" id="path5863" style="fill:#000000;fill-opacity:1;stroke:none" />
621
- <path d="m 21,11 1,0 0,1 -1,0 z" id="path5865" style="fill:#ffffff;fill-opacity:1;stroke:none" />
622
- </g>
623
- </g>
624
- </g>
625
- <g transform="translate(0,-1033.3622)" id="g3996">
626
- <path d="m 1,12 -1,0 0,-2 1,0 0,-1 2,0 0,1 1,0 0,1 2,0 0,4 -2,0 0,-1 -2,0 0,-1 -1,0 z"
627
- transform="translate(0,1032.3622)" id="path3992" style="fill:#000000;stroke:none" />
628
- <path d="m 1,12 0,-2 2,0 0,2 3,0 0,2 -2,0 0,-1 -2,0 0,-1 z" transform="translate(0,1032.3622)" id="path3994"
629
- style="fill:#999999;fill-opacity:1;stroke:none" />
630
- </g>
631
- </g>
632
- </g>
633
- </svg>
634
- </svg>