cc-core-cli 1.0.133 → 1.0.135
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/bin/index.js +4 -4
- package/package.json +1 -1
- package/template/admin_v3/src/pages/api/database/[type]/index.ts +23 -0
- package/template/admin_v3/src/pages/api/layout_chart_widget/[name]/index.ts +18 -0
- package/template/admin_v3/src/pages/api/layout_chart_widget/compare_matrix.ts +17 -0
- package/template/admin_v3/src/pages/api/redis/[type]/[connect]/index.ts +20 -0
- package/template/admin_v3/src/pages/api/redis/custom.ts +10 -0
- package/template/admin_v3/src/pages/api/setting/module/[code].ts +34 -0
- package/template/admin_v3/src/pages/api/template/[type].ts +21 -0
- package/template/admin_v3/src/pages/api/template/bulk_print/[id].ts +15 -0
- package/template/admin_v3/src/pages/api/template/print/[id]/[doc_ref].ts +11 -0
- package/template/core_v3/Dockerfile +60 -0
- package/template/core_v3/_env +12 -0
- package/template/core_v3/_gitignore +52 -0
- package/template/core_v3/_npmrc +1 -0
- package/template/core_v3/buildspec.yml +29 -0
- package/template/core_v3/docker-compose.yml +11 -0
- package/template/core_v3/jest.config.js +43 -0
- package/template/core_v3/newrelic.sh +15 -0
- package/template/core_v3/package.json +54 -0
- package/template/core_v3/post-install.js +34 -0
- package/template/core_v3/sonar-project.properties +27 -0
- package/template/core_v3/src/app.controller.ts +39 -0
- package/template/core_v3/src/app.module.ts +174 -0
- package/template/core_v3/src/app.service.ts +21 -0
- package/template/core_v3/src/app_cluster.service.ts +61 -0
- package/template/core_v3/src/core/core.controller.ts +444 -0
- package/template/core_v3/src/core/core.module.ts +90 -0
- package/template/core_v3/src/core/core.service.ts +737 -0
- package/template/core_v3/src/core/setting/_settings/about.layout.json +105 -0
- package/template/core_v3/src/core/setting/_settings/cache.layout.json +309 -0
- package/template/core_v3/src/core/setting/_settings/global_login.json +299 -0
- package/template/core_v3/src/core/setting/_settings/header_footer.json +83 -0
- package/template/core_v3/src/core/setting/_settings/import_export.layout.json +69 -0
- package/template/core_v3/src/core/setting/_settings/list_detail.json +685 -0
- package/template/core_v3/src/core/setting/_settings/logs.layout.json +39 -0
- package/template/core_v3/src/core/setting/_settings/queue.layout.json +63 -0
- package/template/core_v3/src/core/setting/_settings/schedule.layout.json +132 -0
- package/template/core_v3/src/core/setting/_settings/security.layout.json +1110 -0
- package/template/core_v3/src/core/setting/_settings/storage.layout.json +158 -0
- package/template/core_v3/src/core/setting/_settings/swagger.layout.json +128 -0
- package/template/core_v3/src/core/setting/_settings/toast.json +344 -0
- package/template/core_v3/src/main.ts +308 -0
- package/template/core_v3/src/modules/modules.ts +16 -0
- package/template/core_v3/src/private.controller.ts +18 -0
- package/template/core_v3/storage/documents/index.html +14 -0
- package/template/core_v3/storage/public/system/menu/icons/company.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/deploy.svg +2 -0
- package/template/core_v3/storage/public/system/menu/icons/entities.svg +55 -0
- package/template/core_v3/storage/public/system/menu/icons/files.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/gateway.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/import-export.svg +41 -0
- package/template/core_v3/storage/public/system/menu/icons/integration.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/master_data.svg +53 -0
- package/template/core_v3/storage/public/system/menu/icons/modules.svg +79 -0
- package/template/core_v3/storage/public/system/menu/icons/monitoring.svg +114 -0
- package/template/core_v3/storage/public/system/menu/icons/pipeline.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/provider.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/report.svg +69 -0
- package/template/core_v3/storage/public/system/menu/icons/schedule.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/security.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/storage.svg +1 -0
- package/template/core_v3/storage/public/system/menu/icons/template.svg +44 -0
- package/template/core_v3/storage/public/system/menu/icons/theme-layout.svg +1 -0
- package/template/core_v3/test/__mocks__/cc-core-lib.d.ts +161 -0
- package/template/core_v3/test/__mocks__/cc-core-lib.js +311 -0
- package/template/core_v3/test/__mocks__/pdf-img-convert.js +5 -0
- package/template/core_v3/test/jest.setup.ts +25 -0
- package/template/core_v3/tsconfig.build.json +4 -0
- package/template/core_v3/tsconfig.json +22 -0
- package/template/core_v3/tsconfig.test.json +17 -0
- package/template/core_v3/version.json +5 -0
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
import * as dotenv from "dotenv";
|
|
2
|
+
dotenv.config();
|
|
3
|
+
require("newrelic");
|
|
4
|
+
const now = require("performance-now");
|
|
5
|
+
import { Reflector } from "@nestjs/core";
|
|
6
|
+
|
|
7
|
+
import * as _ from "lodash";
|
|
8
|
+
import * as moment from "moment";
|
|
9
|
+
|
|
10
|
+
import { v4 as uuid } from "uuid";
|
|
11
|
+
import * as rTracer from "cls-rtracer";
|
|
12
|
+
import { NestFactory } from "@nestjs/core";
|
|
13
|
+
import {
|
|
14
|
+
FastifyAdapter,
|
|
15
|
+
NestFastifyApplication
|
|
16
|
+
} from "@nestjs/platform-fastify";
|
|
17
|
+
import { AppModule } from "./app.module";
|
|
18
|
+
import * as path from "path";
|
|
19
|
+
import { AppClusterService } from "./app_cluster.service";
|
|
20
|
+
import { CUSTOM_MODULES as LIB_CUSTOM_MODULES } from '@shopstack/cc-core-lib/module'
|
|
21
|
+
import { Logger, RequestMethod } from "@nestjs/common";
|
|
22
|
+
import {
|
|
23
|
+
IGNORE_ENDPOINT_PATHS,
|
|
24
|
+
CONST,
|
|
25
|
+
EntitiesService,
|
|
26
|
+
TemplateService,
|
|
27
|
+
SettingService,
|
|
28
|
+
TranslateService,
|
|
29
|
+
AllExceptionsFilter,
|
|
30
|
+
AuthService,
|
|
31
|
+
UserRolePermissonService,
|
|
32
|
+
UserRoleService,
|
|
33
|
+
UserService,
|
|
34
|
+
ActivityLogService,
|
|
35
|
+
DeployLogService,
|
|
36
|
+
ImportExportLogService,
|
|
37
|
+
LanguageService,
|
|
38
|
+
ImportExportService,
|
|
39
|
+
AttachmentService,
|
|
40
|
+
CommentDataService,
|
|
41
|
+
AddressService,
|
|
42
|
+
CurrencyService,
|
|
43
|
+
CountryService,
|
|
44
|
+
DistrictService,
|
|
45
|
+
ProvinceService,
|
|
46
|
+
SubdistrictService,
|
|
47
|
+
TimeZoneService,
|
|
48
|
+
CompanyService,
|
|
49
|
+
DeployDestinationService,
|
|
50
|
+
DeployPackageService,
|
|
51
|
+
CustomFunctionService,
|
|
52
|
+
SmsService,
|
|
53
|
+
ReasonDataService,
|
|
54
|
+
ReasonMasterService,
|
|
55
|
+
ReasonOptionService,
|
|
56
|
+
WidgetService,
|
|
57
|
+
VersionDataService,
|
|
58
|
+
ScheduleActionService,
|
|
59
|
+
ScheduleLogService,
|
|
60
|
+
MapLocationService,
|
|
61
|
+
MailSettingService,
|
|
62
|
+
MailLogService,
|
|
63
|
+
request,
|
|
64
|
+
SmsLogService,
|
|
65
|
+
ExecutionLogService,
|
|
66
|
+
initialCustomModules,
|
|
67
|
+
initialCustomProviders,
|
|
68
|
+
initialSettingLayouts,
|
|
69
|
+
NotificationSubscriptionService,
|
|
70
|
+
NotificationMessageService,
|
|
71
|
+
NotificationMessageQueueService,
|
|
72
|
+
NotificationLogService,
|
|
73
|
+
ShortlyUrlService,
|
|
74
|
+
LayoutShareWidgetService,
|
|
75
|
+
ApiKeyService,
|
|
76
|
+
JWTAuthGuard,
|
|
77
|
+
CsrfGuard,
|
|
78
|
+
CacheInterceptor,
|
|
79
|
+
FilterInterceptor,
|
|
80
|
+
AuditLogService,
|
|
81
|
+
PipelineService,
|
|
82
|
+
PipelineJobService,
|
|
83
|
+
PipelineLogService,
|
|
84
|
+
PrintLogService,
|
|
85
|
+
redisCache,
|
|
86
|
+
RewriteUrlService
|
|
87
|
+
} from '@shopstack/cc-core-lib/core'
|
|
88
|
+
|
|
89
|
+
import { CUSTOM_MODULES } from "src/modules/modules";
|
|
90
|
+
import * as packageData from "../package.json";
|
|
91
|
+
|
|
92
|
+
async function initialService(app: NestFastifyApplication, serviceClass: any) {
|
|
93
|
+
let start = now();
|
|
94
|
+
const service = await app.resolve<typeof serviceClass>(serviceClass);
|
|
95
|
+
await service.init();
|
|
96
|
+
let end = now();
|
|
97
|
+
Logger.log(
|
|
98
|
+
`${service.constructor.name} initial done (${(end - start).toFixed(3)})`,
|
|
99
|
+
"MAIN"
|
|
100
|
+
);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
async function refreshService(app: NestFastifyApplication, serviceClass: any) {
|
|
104
|
+
let start = now();
|
|
105
|
+
const service = await app.resolve<typeof serviceClass>(serviceClass);
|
|
106
|
+
await service.initRefresh();
|
|
107
|
+
let end = now();
|
|
108
|
+
Logger.log(
|
|
109
|
+
`${service.constructor.name} initial refresh done (${(end - start).toFixed(
|
|
110
|
+
3
|
|
111
|
+
)})`,
|
|
112
|
+
"MAIN"
|
|
113
|
+
);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
async function initialCustomService(app: NestFastifyApplication) {
|
|
117
|
+
const SPECIFY_CUSTOM_MODULES =
|
|
118
|
+
process.env.CUSTOM_MODULES === "" ||
|
|
119
|
+
process.env.CUSTOM_MODULES === undefined
|
|
120
|
+
? []
|
|
121
|
+
: process.env.CUSTOM_MODULES.split(",");
|
|
122
|
+
const RUN_CUSTOM_SERVICES = [];
|
|
123
|
+
SPECIFY_CUSTOM_MODULES.length === 0
|
|
124
|
+
? CUSTOM_MODULES.forEach(c => {
|
|
125
|
+
RUN_CUSTOM_SERVICES.push(...(c.services || []));
|
|
126
|
+
})
|
|
127
|
+
: CUSTOM_MODULES.filter(c =>
|
|
128
|
+
SPECIFY_CUSTOM_MODULES.includes(c.module.name)
|
|
129
|
+
).forEach(c => {
|
|
130
|
+
RUN_CUSTOM_SERVICES.push(...(c.services || []));
|
|
131
|
+
});
|
|
132
|
+
for (const customService of RUN_CUSTOM_SERVICES) {
|
|
133
|
+
await initialService(app, customService);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
async function initial(app: NestFastifyApplication) {
|
|
138
|
+
|
|
139
|
+
LIB_CUSTOM_MODULES.push(...CUSTOM_MODULES)
|
|
140
|
+
|
|
141
|
+
await initialService(app, SettingService);
|
|
142
|
+
await initialService(app, EntitiesService);
|
|
143
|
+
await initialService(app, UserRolePermissonService);
|
|
144
|
+
await initialService(app, UserRoleService);
|
|
145
|
+
await initialService(app, UserService);
|
|
146
|
+
await initialService(app, ApiKeyService);
|
|
147
|
+
await initialService(app, LanguageService);
|
|
148
|
+
await initialService(app, TranslateService);
|
|
149
|
+
await initialService(app, ActivityLogService);
|
|
150
|
+
await initialService(app, AttachmentService);
|
|
151
|
+
await initialService(app, AuditLogService);
|
|
152
|
+
|
|
153
|
+
await initialService(app, TimeZoneService);
|
|
154
|
+
await initialService(app, CountryService);
|
|
155
|
+
await initialService(app, ProvinceService);
|
|
156
|
+
await initialService(app, DistrictService);
|
|
157
|
+
await initialService(app, SubdistrictService);
|
|
158
|
+
await initialService(app, AddressService);
|
|
159
|
+
await initialService(app, CurrencyService);
|
|
160
|
+
await initialService(app, CompanyService);
|
|
161
|
+
|
|
162
|
+
await initialService(app, MailSettingService);
|
|
163
|
+
await initialService(app, MailLogService);
|
|
164
|
+
await initialService(app, SmsLogService);
|
|
165
|
+
await initialService(app, SmsService);
|
|
166
|
+
|
|
167
|
+
await initialService(app, ReasonMasterService);
|
|
168
|
+
await initialService(app, ReasonOptionService);
|
|
169
|
+
await initialService(app, ReasonDataService);
|
|
170
|
+
|
|
171
|
+
await initialService(app, WidgetService);
|
|
172
|
+
await initialService(app, MapLocationService);
|
|
173
|
+
await initialService(app, VersionDataService);
|
|
174
|
+
await initialService(app, CommentDataService);
|
|
175
|
+
|
|
176
|
+
await initialService(app, ScheduleLogService);
|
|
177
|
+
await initialService(app, ScheduleActionService);
|
|
178
|
+
|
|
179
|
+
await initialService(app, NotificationSubscriptionService);
|
|
180
|
+
await initialService(app, NotificationMessageService);
|
|
181
|
+
await initialService(app, NotificationMessageQueueService);
|
|
182
|
+
await initialService(app, NotificationLogService);
|
|
183
|
+
|
|
184
|
+
await initialService(app, ShortlyUrlService);
|
|
185
|
+
|
|
186
|
+
await initialService(app, DeployDestinationService);
|
|
187
|
+
await initialService(app, DeployPackageService);
|
|
188
|
+
await initialService(app, DeployLogService);
|
|
189
|
+
|
|
190
|
+
await initialService(app, CustomFunctionService);
|
|
191
|
+
|
|
192
|
+
await initialService(app, ExecutionLogService);
|
|
193
|
+
|
|
194
|
+
await initialService(app, LayoutShareWidgetService);
|
|
195
|
+
|
|
196
|
+
await initialCustomModules();
|
|
197
|
+
await initialCustomProviders();
|
|
198
|
+
await initialSettingLayouts();
|
|
199
|
+
|
|
200
|
+
await initialCustomService(app);
|
|
201
|
+
|
|
202
|
+
await initialService(app, AuthService);
|
|
203
|
+
|
|
204
|
+
await initialService(app, TemplateService);
|
|
205
|
+
await initialService(app, ImportExportService);
|
|
206
|
+
await initialService(app, ImportExportLogService);
|
|
207
|
+
|
|
208
|
+
await initialService(app, PrintLogService);
|
|
209
|
+
|
|
210
|
+
await initialService(app, PipelineService);
|
|
211
|
+
await initialService(app, PipelineJobService);
|
|
212
|
+
await initialService(app, PipelineLogService);
|
|
213
|
+
await initialService(app, RewriteUrlService);
|
|
214
|
+
|
|
215
|
+
await initialService(app, EntitiesService);
|
|
216
|
+
await refreshService(app, EntitiesService);
|
|
217
|
+
await refreshService(app, ScheduleActionService);
|
|
218
|
+
await refreshService(app, SettingService);
|
|
219
|
+
await refreshService(app, AttachmentService);
|
|
220
|
+
|
|
221
|
+
redisCache.set("START_TIME", moment().format("DD MMMM YYYY HH:mm"));
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
async function bootstrap() {
|
|
225
|
+
dotenv.config();
|
|
226
|
+
const fastify = new FastifyAdapter({ logger: true, bodyLimit: 104857600 });
|
|
227
|
+
|
|
228
|
+
fastify.register(require("@fastify/cors"), {
|
|
229
|
+
// put your options here
|
|
230
|
+
});
|
|
231
|
+
|
|
232
|
+
fastify.register(rTracer.fastifyPlugin, {
|
|
233
|
+
requestIdFactory: req => ({
|
|
234
|
+
request_id: uuid(),
|
|
235
|
+
user_ip: req.headers["client-ip"],
|
|
236
|
+
user_agent: req.headers["user-agent"]
|
|
237
|
+
})
|
|
238
|
+
});
|
|
239
|
+
|
|
240
|
+
// Register the multipart plugin
|
|
241
|
+
fastify.register(require("@fastify/multipart"), { attachFieldsToBody: true });
|
|
242
|
+
|
|
243
|
+
// Register the fastify-xml-body-parser plugin
|
|
244
|
+
fastify.register(require("fastify-xml-body-parser"));
|
|
245
|
+
|
|
246
|
+
const app = await NestFactory.create<NestFastifyApplication>(
|
|
247
|
+
AppModule,
|
|
248
|
+
fastify
|
|
249
|
+
);
|
|
250
|
+
|
|
251
|
+
app.useStaticAssets({
|
|
252
|
+
root: `${process.cwd()}/storage/public`,
|
|
253
|
+
prefix: `/public`
|
|
254
|
+
});
|
|
255
|
+
|
|
256
|
+
// Serve specific file for "/"
|
|
257
|
+
fastify.get("/", (request, reply) => {
|
|
258
|
+
reply
|
|
259
|
+
.type("text/html")
|
|
260
|
+
.sendFile("index.html", path.join(process.cwd(), "storage/documents"));
|
|
261
|
+
});
|
|
262
|
+
|
|
263
|
+
_.set(CONST, "app", app);
|
|
264
|
+
await initial(app);
|
|
265
|
+
|
|
266
|
+
const reflector = app.get(Reflector);
|
|
267
|
+
const auth = app.get(AuthService);
|
|
268
|
+
app.useGlobalGuards(new JWTAuthGuard(reflector, auth));
|
|
269
|
+
app.useGlobalGuards(new CsrfGuard(reflector));
|
|
270
|
+
app.setGlobalPrefix("api/v1", {
|
|
271
|
+
exclude: [{ path: "private/*", method: RequestMethod.GET }]
|
|
272
|
+
});
|
|
273
|
+
app.use(request);
|
|
274
|
+
app.useGlobalInterceptors(new FilterInterceptor(reflector));
|
|
275
|
+
app.useGlobalInterceptors(new CacheInterceptor(reflector));
|
|
276
|
+
|
|
277
|
+
// app.enableCors();
|
|
278
|
+
app.useGlobalFilters(new AllExceptionsFilter());
|
|
279
|
+
|
|
280
|
+
const routes = [];
|
|
281
|
+
const ignoreRouteRegex = new RegExp(IGNORE_ENDPOINT_PATHS.join("|"));
|
|
282
|
+
app
|
|
283
|
+
.getHttpAdapter()
|
|
284
|
+
.getInstance()
|
|
285
|
+
.addHook("onRoute", route => {
|
|
286
|
+
if (!ignoreRouteRegex.test(route.path)) {
|
|
287
|
+
routes.push({
|
|
288
|
+
path: route.path.replace("/api/v1/", ""),
|
|
289
|
+
method: route.method
|
|
290
|
+
});
|
|
291
|
+
}
|
|
292
|
+
});
|
|
293
|
+
app
|
|
294
|
+
.getHttpAdapter()
|
|
295
|
+
.getInstance()
|
|
296
|
+
.addHook("onReady", done => {
|
|
297
|
+
CONST.ENDPOINT_PATHS = routes;
|
|
298
|
+
done();
|
|
299
|
+
});
|
|
300
|
+
|
|
301
|
+
await app.listen(parseInt(process.env.PORT, 10), "0.0.0.0");
|
|
302
|
+
CONST.HEALTH_CHECK = true;
|
|
303
|
+
CONST.SYSTEM_NAME = process.env.SYSTEM_NAME || _.get(packageData, "name");
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
AppClusterService.clusterize(bootstrap);
|
|
307
|
+
// +process.env.QUEUE_CONCURRENCY > 0 || process.env.ENABLE_SCHEDULE_ACTION === "true" ? bootstrap() : AppClusterService.clusterize(bootstrap);
|
|
308
|
+
// bootstrap();
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/***
|
|
2
|
+
* This example structure when developer config custom module
|
|
3
|
+
* const CUSTOM_MODULES = [
|
|
4
|
+
* { module: CarriersModule, services: [CarrierCarrierService, CarrierLogService] },
|
|
5
|
+
* { module: CustomersModule, services: [CustomerService, AddressService] },
|
|
6
|
+
* { module: ProductsModule, services: [ProductService] },
|
|
7
|
+
* { module: OrdersModule, services: [ChannelService, OrderService, OrderItemService] }
|
|
8
|
+
* ];
|
|
9
|
+
|
|
10
|
+
export { CUSTOM_MODULES };
|
|
11
|
+
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
const CUSTOM_MODULES = [];
|
|
15
|
+
|
|
16
|
+
export { CUSTOM_MODULES };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Controller, Get, Param } from "@nestjs/common";
|
|
2
|
+
import { AttachmentService } from "@shopstack/cc-core-lib/core";
|
|
3
|
+
|
|
4
|
+
@Controller("private")
|
|
5
|
+
export class StoragePrivateController {
|
|
6
|
+
constructor(private readonly attachment: AttachmentService) {}
|
|
7
|
+
|
|
8
|
+
@Get("/*")
|
|
9
|
+
getMedia(@Param() params: any): any {
|
|
10
|
+
const filename = params["*"]
|
|
11
|
+
.split("/")
|
|
12
|
+
.slice(-1)
|
|
13
|
+
.toString();
|
|
14
|
+
const path = params["*"].replace(`/${filename}`, "");
|
|
15
|
+
|
|
16
|
+
return this.attachment.download(path, filename);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8">
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
|
+
<title>Document</title>
|
|
8
|
+
</head>
|
|
9
|
+
|
|
10
|
+
<body>
|
|
11
|
+
<h1>Welcome to Commerce Suite.</h1>
|
|
12
|
+
</body>
|
|
13
|
+
|
|
14
|
+
</html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg clip-rule="evenodd" fill-rule="evenodd" height="512" image-rendering="optimizeQuality" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" viewBox="0 0 512 512" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_x0020_1"><g id="_479232288"><g><g><path d="m75 436c-1 0-3 0-4-1-55-29-62-66-62-68v-1-72c0-2 0-4 2-5 1-2 3-2 5-2 38 4 54-10 54-10 3-3 7-3 9 0 1 0 16 14 54 10 2 0 4 0 5 2 2 1 3 3 3 5v72 1c-1 2-8 39-63 68-1 1-2 1-3 1zm-52-71c1 4 9 32 52 56 43-24 51-52 52-56v-64c-28 2-45-6-52-10-8 4-24 12-52 10z"/></g><g><path d="m61 384c-2 0-4-1-5-2l-16-16c-3-3-3-7 0-10 2-3 7-3 10 0l11 11 38-38c3-3 7-3 10 0 2 3 2 7 0 10l-43 43c-2 1-4 2-5 2z"/></g><g><path d="m496 512h-480c-4 0-7-3-7-7v-37c0-4 3-7 7-7h480c4 0 7 3 7 7v37c0 4-3 7-7 7zm-473-14h466v-23h-466z"/></g><g><path d="m472 475c-4 0-7-3-7-7v-454h-259v454c0 4-3 7-7 7s-7-3-7-7v-461c0-4 3-7 7-7h273c4 0 7 3 7 7v461c0 4-3 7-7 7z"/></g><g><path d="m408 475h-149c-4 0-7-3-7-7v-155c0-10 8-18 18-18h127c10 0 18 8 18 18v155c0 4-4 7-7 7zm-142-14h135v-148c0-2-2-4-4-4h-127c-3 0-4 2-4 4z"/></g><g><path d="m333 475c-4 0-7-3-7-7v-166c0-4 3-7 7-7s7 3 7 7v166c0 4-4 7-7 7z"/></g><g><g><path d="m278 85h-41c-4 0-7-3-7-7v-33c0-4 3-7 7-7h41c4 0 7 3 7 7v33c0 4-3 7-7 7zm-34-14h27v-19h-27z"/></g><g><path d="m356 85h-41c-4 0-7-3-7-7v-33c0-4 3-7 7-7h41c4 0 7 3 7 7v33c0 4-3 7-7 7zm-34-14h27v-19h-27z"/></g><g><path d="m434 85h-41c-4 0-7-3-7-7v-33c0-4 3-7 7-7h41c4 0 7 3 7 7v33c0 4-3 7-7 7zm-34-14h27v-19h-27z"/></g></g><g><g><path d="m278 147h-41c-4 0-7-3-7-7v-33c0-4 3-7 7-7h41c4 0 7 3 7 7v33c0 4-3 7-7 7zm-34-14h27v-19h-27z"/></g><g><path d="m356 147h-41c-4 0-7-3-7-7v-33c0-4 3-7 7-7h41c4 0 7 3 7 7v33c0 4-3 7-7 7zm-34-14h27v-19h-27z"/></g><g><path d="m434 147h-41c-4 0-7-3-7-7v-33c0-4 3-7 7-7h41c4 0 7 3 7 7v33c0 4-3 7-7 7zm-34-14h27v-19h-27z"/></g></g><g><g><path d="m278 209h-41c-4 0-7-3-7-7v-33c0-4 3-7 7-7h41c4 0 7 3 7 7v33c0 4-3 7-7 7zm-34-14h27v-19h-27z"/></g><g><path d="m356 209h-41c-4 0-7-3-7-7v-33c0-4 3-7 7-7h41c4 0 7 3 7 7v33c0 4-3 7-7 7zm-34-14h27v-19h-27z"/></g><g><path d="m434 209h-41c-4 0-7-3-7-7v-33c0-4 3-7 7-7h41c4 0 7 3 7 7v33c0 4-3 7-7 7zm-34-14h27v-19h-27z"/></g></g><g><g><path d="m278 271h-41c-4 0-7-3-7-7v-33c0-4 3-7 7-7h41c4 0 7 3 7 7v33c0 4-3 7-7 7zm-34-14h27v-19h-27z"/></g><g><path d="m356 271h-41c-4 0-7-3-7-7v-33c0-4 3-7 7-7h41c4 0 7 3 7 7v33c0 4-3 7-7 7zm-34-14h27v-19h-27z"/></g><g><path d="m434 271h-41c-4 0-7-3-7-7v-33c0-4 3-7 7-7h41c4 0 7 3 7 7v33c0 4-3 7-7 7zm-34-14h27v-19h-27z"/></g></g><g><path d="m40 475c-4 0-7-3-7-7v-63c0-4 3-7 7-7s7 3 7 7v63c0 4-3 7-7 7zm0-174c-4 0-7-3-7-7v-193c0-4 3-7 7-7h159c4 0 7 3 7 7s-3 7-7 7h-152v186c0 4-3 7-7 7z"/></g><g><path d="m167 175h-96c-4 0-7-3-7-7v-37c0-4 3-7 7-7h96c4 0 7 3 7 7v37c0 4-3 7-7 7zm-89-14h82v-23h-82z"/></g><g><path d="m167 244h-96c-4 0-7-3-7-7v-37c0-4 3-7 7-7h96c4 0 7 3 7 7v37c0 4-3 7-7 7zm-89-14h82v-23h-82z"/></g></g></g></g></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="512" height="512"><g id="Outline"><path d="M52,42a9.994,9.994,0,0,0-7.76,3.691A7.976,7.976,0,0,0,33.9,49.323a5.937,5.937,0,0,0-5.041.567,7.971,7.971,0,0,0-8.711-3.669A9.9,9.9,0,0,0,12,42a10,10,0,0,0,0,20H52a10,10,0,0,0,0-20Zm0,18H12a8,8,0,1,1,6.86-12.1l.416.7.768-.265A5.977,5.977,0,0,1,27.577,51.8l.554,1.4,1.075-1.052a3.949,3.949,0,0,1,4.723-.624l1.03.572.4-1.11a5.982,5.982,0,0,1,8.676-3.154l.81.476.525-.779A8,8,0,1,1,52,60Z"/><path d="M28,39a10.584,10.584,0,0,0,3.121,7.535l.879.879.879-.879A10.584,10.584,0,0,0,36,39a4,4,0,0,0-8,0Zm6,0a8.591,8.591,0,0,1-2,5.535A8.591,8.591,0,0,1,30,39a2,2,0,0,1,4,0Z"/><path d="M32.394,2.081,32,1.912l-.394.169A12.536,12.536,0,0,0,24,13.616V17.31a9.759,9.759,0,0,0-6,9.014V29h1v4h6V29h3v4h8V29h3v4h6V29h1V26.324a9.759,9.759,0,0,0-6-9.014V13.616A12.536,12.536,0,0,0,32.394,2.081ZM20,26.324a7.766,7.766,0,0,1,4-6.8V27H20ZM23,31H21V29h2Zm11,0H30V29h4Zm4-4H26V13.616A10.537,10.537,0,0,1,32,4.1a10.537,10.537,0,0,1,6,9.518V27Zm5,4H41V29h2Zm1-4.676V27H40V19.526A7.766,7.766,0,0,1,44,26.324Z"/><path d="M19,38a5.868,5.868,0,0,0,1.707,4.121L22,43.414l1.293-1.293A5.868,5.868,0,0,0,25,38a3,3,0,0,0-6,0Zm4,0a3.855,3.855,0,0,1-1,2.58A3.855,3.855,0,0,1,21,38a1,1,0,0,1,2,0Z"/><path d="M39,38a5.868,5.868,0,0,0,1.707,4.121L42,43.414l1.293-1.293A5.868,5.868,0,0,0,45,38a3,3,0,0,0-6,0Zm4,0a3.855,3.855,0,0,1-1,2.58A3.855,3.855,0,0,1,41,38a1,1,0,0,1,2,0Z"/><path d="M32,10a4,4,0,1,0,4,4A4,4,0,0,0,32,10Zm0,6a2,2,0,1,1,2-2A2,2,0,0,1,32,16Z"/></g></svg>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 56 56" style="enable-background:new 0 0 56 56;" xml:space="preserve">
|
|
5
|
+
<g>
|
|
6
|
+
<path d="M8,40c-4.411,0-8,3.589-8,8s3.589,8,8,8s8-3.589,8-8S12.411,40,8,40z M8,54c-3.309,0-6-2.691-6-6s2.691-6,6-6s6,2.691,6,6
|
|
7
|
+
S11.309,54,8,54z"/>
|
|
8
|
+
<path d="M28,40c-4.411,0-8,3.589-8,8s3.589,8,8,8s8-3.589,8-8S32.411,40,28,40z M28,54c-3.309,0-6-2.691-6-6s2.691-6,6-6
|
|
9
|
+
s6,2.691,6,6S31.309,54,28,54z"/>
|
|
10
|
+
<path d="M48,40c-4.411,0-8,3.589-8,8s3.589,8,8,8s8-3.589,8-8S52.411,40,48,40z M48,54c-3.309,0-6-2.691-6-6s2.691-6,6-6
|
|
11
|
+
s6,2.691,6,6S51.309,54,48,54z"/>
|
|
12
|
+
<path d="M8,20c-4.411,0-8,3.589-8,8s3.589,8,8,8s8-3.589,8-8S12.411,20,8,20z M8,34c-3.309,0-6-2.691-6-6s2.691-6,6-6s6,2.691,6,6
|
|
13
|
+
S11.309,34,8,34z"/>
|
|
14
|
+
<path d="M28,20c-4.411,0-8,3.589-8,8s3.589,8,8,8s8-3.589,8-8S32.411,20,28,20z M28,34c-3.309,0-6-2.691-6-6s2.691-6,6-6
|
|
15
|
+
s6,2.691,6,6S31.309,34,28,34z"/>
|
|
16
|
+
<path d="M48,20c-4.411,0-8,3.589-8,8s3.589,8,8,8s8-3.589,8-8S52.411,20,48,20z M48,34c-3.309,0-6-2.691-6-6s2.691-6,6-6
|
|
17
|
+
s6,2.691,6,6S51.309,34,48,34z"/>
|
|
18
|
+
<path d="M8,0C3.589,0,0,3.589,0,8s3.589,8,8,8s8-3.589,8-8S12.411,0,8,0z M8,14c-3.309,0-6-2.691-6-6s2.691-6,6-6s6,2.691,6,6
|
|
19
|
+
S11.309,14,8,14z"/>
|
|
20
|
+
<path d="M28,0c-4.411,0-8,3.589-8,8s3.589,8,8,8s8-3.589,8-8S32.411,0,28,0z M28,14c-3.309,0-6-2.691-6-6s2.691-6,6-6s6,2.691,6,6
|
|
21
|
+
S31.309,14,28,14z"/>
|
|
22
|
+
<path d="M48,16c4.411,0,8-3.589,8-8s-3.589-8-8-8s-8,3.589-8,8S43.589,16,48,16z M48,2c3.309,0,6,2.691,6,6s-2.691,6-6,6
|
|
23
|
+
s-6-2.691-6-6S44.691,2,48,2z"/>
|
|
24
|
+
</g>
|
|
25
|
+
<g>
|
|
26
|
+
</g>
|
|
27
|
+
<g>
|
|
28
|
+
</g>
|
|
29
|
+
<g>
|
|
30
|
+
</g>
|
|
31
|
+
<g>
|
|
32
|
+
</g>
|
|
33
|
+
<g>
|
|
34
|
+
</g>
|
|
35
|
+
<g>
|
|
36
|
+
</g>
|
|
37
|
+
<g>
|
|
38
|
+
</g>
|
|
39
|
+
<g>
|
|
40
|
+
</g>
|
|
41
|
+
<g>
|
|
42
|
+
</g>
|
|
43
|
+
<g>
|
|
44
|
+
</g>
|
|
45
|
+
<g>
|
|
46
|
+
</g>
|
|
47
|
+
<g>
|
|
48
|
+
</g>
|
|
49
|
+
<g>
|
|
50
|
+
</g>
|
|
51
|
+
<g>
|
|
52
|
+
</g>
|
|
53
|
+
<g>
|
|
54
|
+
</g>
|
|
55
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Layer_1" enable-background="new 0 0 523.277 523.277" height="512" viewBox="0 0 523.277 523.277" width="512" xmlns="http://www.w3.org/2000/svg"><g><path d="m489.3 135.196h-31.174l9.14-92.332c.902-9.111-5.777-17.257-14.888-18.159l-27.817-2.753c-9.652-.964-11.126 13.972-1.478 14.927l27.816 2.753c.881.087 1.526.875 1.439 1.755l-15.691 158.513h-12.376l-4.762-87.172c-.493-9.037-8.439-16.183-17.485-15.674l-42.384 2.315-5.646-40.222c-1.259-8.974-9.78-15.392-18.751-14.136l-138.99 19.51 4.819-48.682c.051-.512.521-.877 1.052-.833l179.77 17.795c9.653.962 11.126-13.972 1.478-14.927l-179.77-17.795c-8.772-.871-16.591 5.54-17.456 14.282l-5.178 52.306-93.289 13.095c-8.717 1.224-14.815 9.297-13.595 17.997l5.255 37.438h-45.362c-15.626 0-28.338 12.728-28.338 28.373v331.336c0 15.645 12.712 28.372 28.338 28.372h50.662c9.697 0 9.697-15 0-15h-50.662c-7.355 0-13.338-5.999-13.338-13.372v-331.337c0-7.374 5.983-13.373 13.338-13.373h68.513l19.164 59.503c.998 3.1 3.882 5.201 7.139 5.201h373.846v280.004c0 7.374-5.983 13.372-13.338 13.372h-360.662c-9.697 0-9.697 15 0 15h360.661c15.626 0 28.338-12.728 28.338-28.372v-331.335c0-15.645-12.712-28.373-28.338-28.373zm-86.456-23.165c.981.038 1.545.543 1.689 1.515l4.717 86.354h-252.938l-4.001-73.251c.03-.576.334-.904.913-.984zm-287.72 28.464c-.953-3.096-3.929-5.298-7.17-5.298h-13.468l-5.548-39.522c-.071-.509.299-.984.826-1.058l96.963-13.611c.118.017.233.041.353.053.251.025.5.037.748.037 1.096 0 2.143-.246 3.093-.679l146.409-20.551c.981-.045 1.585.41 1.812 1.366l5.469 38.958-192.204 10.498c-8.683.474-15.547 8.085-15.072 16.779l3.956 72.434h-7.033zm336.597 59.406 4.92-49.704h32.659c7.355 0 13.338 5.999 13.338 13.373v36.332h-50.917z"/><path d="m400.215 448.21c4.142 0 7.5-3.358 7.5-7.5v-68.483c0-4.142-3.358-7.5-7.5-7.5h-277.153c-4.142 0-7.5 3.358-7.5 7.5v68.483c0 4.142 3.358 7.5 7.5 7.5zm-269.653-68.483h262.153v53.483h-262.153z"/><path d="m353.328 398.969h-183.38c-9.697 0-9.697 15 0 15h183.38c9.698 0 9.698-15 0-15z"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg id="Capa_1" enable-background="new 0 0 512 512" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><g><path d="m351.586 165.919c0 4.142 3.358 7.5 7.5 7.5h92.737c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5h-92.737c-4.142 0-7.5 3.357-7.5 7.5zm22.443 28.425c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h62.853c4.142 0 7.5-3.358 7.5-7.5s-3.358-7.5-7.5-7.5zm98.131-74.036c-3.533-2.165-8.15-1.053-10.313 2.478-2.164 3.532-1.054 8.15 2.478 10.313 20.765 12.719 32.675 31.229 32.675 50.782 0 36.103-40.455 66.427-91.545 66.427-10.187 0-20.199-1.217-29.759-3.616-3.791-.951-7.747.107-10.577 2.833-10.14 9.769-22.01 14.353-35.774 16.139-1.624.21-2.813-1.478-2.088-2.957 5.014-10.216 7.686-22.149 8.833-28.352.695-3.759-.555-7.583-3.345-10.23-11.335-10.748-18.835-24.559-18.835-40.245 0-35.379 39.746-66.427 91.545-66.427 9.562 0 18.983 1.072 28.003 3.187 4.038.95 8.069-1.557 9.014-5.59s-1.558-8.068-5.59-9.014c-10.14-2.377-20.713-3.582-31.427-3.582-12.551 0-24.777 1.656-36.253 4.809-33.426-22.859-72.484-34.923-113.202-34.923-19.404 0-38.17 2.775-55.932 7.934-18.519-25.867-54.472-42.304-93.523-42.304-28.062 0-54.527 8.219-74.521 23.143-20.651 15.413-32.024 36.112-32.024 58.284 0 34.671 28.579 65.235 70.557 76.678-10.199 24.437-15.402 50.57-15.402 77.11 0 66.613 32.953 129.976 90.582 167.897 3.467 2.281 8.115 1.312 10.388-2.142 2.277-3.46 1.318-8.111-2.143-10.388-33.722-22.19-58.694-54.105-72.254-90.723h65.764c13.745 45.982 41.268 87.198 82.324 119.368-15.654-2.201-30.907-6.38-45.573-12.525-3.819-1.6-8.215.199-9.815 4.02-1.601 3.82.199 8.215 4.02 9.815 24.585 10.3 50.678 15.522 77.554 15.522 110.582 0 200.845-89.945 200.845-200.845 0-5.811-.26-11.705-.775-17.589 8.653-3.565 16.704-8.055 23.906-13.43 20.649-15.413 32.022-36.112 32.022-58.284 0-24.894-14.522-48.065-39.84-63.573zm-457.16-.911c0-36.628 41.067-66.427 91.545-66.427 32.36 0 62.023 12.456 78.478 32.336-8.942 3.389-17.582 7.396-25.865 11.975-1.344-2.017-3.638-3.347-6.244-3.347h-92.738c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h80.37c-8.926 6.293-17.315 13.298-25.092 20.925h-40.336c-4.142 0-7.5 3.358-7.5 7.5s3.358 7.5 7.5 7.5h26.501c-9.539 11.456-17.831 23.983-24.662 37.376-36.751-9.141-61.957-34.397-61.957-62.838zm128.539 203.432h-66.653c-4.408-15.956-6.731-32.625-6.731-49.644 0-17.188 2.356-33.834 6.743-49.644h66.641c-4.802 20.996-5.814 38.59-5.814 49.644s1.012 28.648 5.814 49.644zm-61.78-114.287c23.379-62.812 79.799-109.668 148.025-119.343-40.984 32.124-68.531 73.307-82.292 119.343zm166.741 243.888c-42.071-29.971-70.724-69.251-85.306-114.601h85.306zm0-129.601h-89.555c-5.166-21.07-6.221-38.758-6.221-49.644s1.054-28.574 6.221-49.644h89.555zm0-114.287h-85.306c14.571-45.317 43.208-84.608 85.306-114.6zm102.873-94.901c-10.098 4.542-19.246 10.378-27.105 17.408-12.074-15.343-26.178-29.356-42.153-41.888 24.516 3.435 47.967 11.707 69.258 24.48zm-87.873-19.685c19.585 13.971 36.474 30.109 50.373 48.144-9.755 12.468-14.963 26.786-14.963 41.781 0 8.415 1.731 16.734 5.009 24.66h-40.419zm0 129.586h48.856c2.539 3.498 5.4 6.865 8.605 10.05-1.159 5.747-3.41 14.847-7.17 22.508-5.968 12.163 3.99 26.196 17.484 24.441 10.497-1.362 19.768-4.169 27.989-8.474.105 16.934-2.224 34.508-6.21 50.763h-89.554zm0 114.287h85.306c-14.57 45.315-43.205 84.608-85.306 114.601zm18.716 119.343c40.983-32.124 68.531-73.307 82.292-119.343h65.733c-23.378 62.812-79.799 109.668-148.025 119.343zm152.886-134.343h-66.641c4.551-19.901 6.634-40.482 5.491-61.031.028-.025.057-.049.084-.074 21.899 5.136 45.719 4.753 67.361-1.134.286 4.219.448 8.431.448 12.595 0 17.188-2.356 33.835-6.743 49.644z"/></g></svg>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 51.4 51.4" style="enable-background:new 0 0 51.4 51.4;" xml:space="preserve">
|
|
5
|
+
<g>
|
|
6
|
+
<path d="M1.7,25.2c0.553,0,1-0.447,1-1c0-6.065,4.935-11,11-11h24v8.964L51.4,12.2L37.7,2.236V11.2h-24c-7.168,0-13,5.832-13,13
|
|
7
|
+
C0.7,24.753,1.147,25.2,1.7,25.2z M39.7,6.164L48,12.2l-8.3,6.036V6.164z"/>
|
|
8
|
+
<path d="M49.7,26.2c-0.553,0-1,0.447-1,1c0,6.065-4.935,11-11,11h-24v-8.964L0,39.2l13.7,9.964V40.2h24c7.168,0,13-5.832,13-13
|
|
9
|
+
C50.7,26.647,50.253,26.2,49.7,26.2z M11.7,45.236L3.4,39.2l8.3-6.036V45.236z"/>
|
|
10
|
+
</g>
|
|
11
|
+
<g>
|
|
12
|
+
</g>
|
|
13
|
+
<g>
|
|
14
|
+
</g>
|
|
15
|
+
<g>
|
|
16
|
+
</g>
|
|
17
|
+
<g>
|
|
18
|
+
</g>
|
|
19
|
+
<g>
|
|
20
|
+
</g>
|
|
21
|
+
<g>
|
|
22
|
+
</g>
|
|
23
|
+
<g>
|
|
24
|
+
</g>
|
|
25
|
+
<g>
|
|
26
|
+
</g>
|
|
27
|
+
<g>
|
|
28
|
+
</g>
|
|
29
|
+
<g>
|
|
30
|
+
</g>
|
|
31
|
+
<g>
|
|
32
|
+
</g>
|
|
33
|
+
<g>
|
|
34
|
+
</g>
|
|
35
|
+
<g>
|
|
36
|
+
</g>
|
|
37
|
+
<g>
|
|
38
|
+
</g>
|
|
39
|
+
<g>
|
|
40
|
+
</g>
|
|
41
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg enable-background="new 0 0 512 512" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><g id="_x34_83_x2C__Business_x2C__Distribute_x2C__Relationship_x2C__Share_x2C__Structure"><path d="m463.071 388.929c-3.906-3.904-10.236-3.904-14.143 0l-22.928 22.928-42.992-42.992c57.322-64.431 57.343-161.276 0-225.73l42.992-42.992 22.929 22.929c3.905 3.905 10.236 3.905 14.143 0l40-40c3.905-3.905 3.905-10.237 0-14.143l-60-60c-3.906-3.905-10.236-3.905-14.143 0l-40 40c-3.905 3.905-3.905 10.237 0 14.143l22.929 22.929-42.992 42.992c-64.434-57.323-161.277-57.341-225.731 0l-42.992-42.992 22.929-22.929c3.905-3.905 3.905-10.237 0-14.143l-40-40c-3.905-3.905-10.237-3.905-14.143 0l-60 60c-3.904 3.905-3.904 10.237 0 14.143l40 40c3.904 3.904 10.237 3.905 14.143 0l22.929-22.929 42.992 42.992c-57.322 64.434-57.342 161.276 0 225.73l-42.992 42.992-22.929-22.929c-3.905-3.904-10.237-3.904-14.143 0l-40 40c-3.904 3.905-3.904 10.237 0 14.143l60 60c3.906 3.905 10.237 3.904 14.143 0l40-40c3.905-3.905 3.905-10.237 0-14.143l-22.93-22.928 42.992-42.992c64.431 57.322 161.277 57.343 225.731 0l42.992 42.992-22.929 22.929c-3.905 3.905-3.905 10.237 0 14.143l40 40c3.907 3.905 10.236 3.904 14.143 0l60-60c3.905-3.905 3.905-10.237 0-14.143zm-27.071-358.786 45.857 45.858-25.857 25.857c-41.46-41.46-3.631-3.631-45.857-45.858zm-380 71.715-25.858-25.857 45.857-45.858 25.859 25.857c-5.069 5.07-40.747 40.747-45.858 45.858zm19.999 379.999-45.857-45.857 25.858-25.857c4.537 4.537 41.303 41.302 45.858 45.857zm30-225.857c0-82.71 67.29-150 150-150 82.711.001 150.001 67.29 150.001 150s-67.29 150-150.001 150c-82.709 0-150-67.29-150-150zm330.001 225.857-25.857-25.857 45.857-45.857 25.857 25.857z"/></g></svg>
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
|
4
|
+
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
5
|
+
viewBox="0 0 511 511" style="enable-background:new 0 0 511 511;" xml:space="preserve">
|
|
6
|
+
<g>
|
|
7
|
+
<path d="M503.5,272h-312c-4.142,0-7.5,3.358-7.5,7.5s3.358,7.5,7.5,7.5h312c4.142,0,7.5-3.358,7.5-7.5S507.642,272,503.5,272z"/>
|
|
8
|
+
<path d="M503.5,224h-312c-4.142,0-7.5,3.358-7.5,7.5s3.358,7.5,7.5,7.5h312c4.142,0,7.5-3.358,7.5-7.5S507.642,224,503.5,224z"/>
|
|
9
|
+
<path d="M119.5,184h-96C10.542,184,0,194.542,0,207.5v96C0,316.458,10.542,327,23.5,327h96c12.958,0,23.5-10.542,23.5-23.5v-96
|
|
10
|
+
C143,194.542,132.458,184,119.5,184z M128,303.5c0,4.687-3.813,8.5-8.5,8.5h-96c-4.687,0-8.5-3.813-8.5-8.5v-96
|
|
11
|
+
c0-4.687,3.813-8.5,8.5-8.5h96c4.687,0,8.5,3.813,8.5,8.5V303.5z"/>
|
|
12
|
+
<path d="M503.5,96h-312c-4.142,0-7.5,3.358-7.5,7.5s3.358,7.5,7.5,7.5h312c4.142,0,7.5-3.358,7.5-7.5S507.642,96,503.5,96z"/>
|
|
13
|
+
<path d="M191.5,63h312c4.142,0,7.5-3.358,7.5-7.5s-3.358-7.5-7.5-7.5h-312c-4.142,0-7.5,3.358-7.5,7.5S187.358,63,191.5,63z"/>
|
|
14
|
+
<path d="M119.5,8h-96C10.542,8,0,18.542,0,31.5v96C0,140.458,10.542,151,23.5,151h96c12.958,0,23.5-10.542,23.5-23.5v-96
|
|
15
|
+
C143,18.542,132.458,8,119.5,8z M128,127.5c0,4.687-3.813,8.5-8.5,8.5h-96c-4.687,0-8.5-3.813-8.5-8.5v-96
|
|
16
|
+
c0-4.687,3.813-8.5,8.5-8.5h96c4.687,0,8.5,3.813,8.5,8.5V127.5z"/>
|
|
17
|
+
<path d="M503.5,448h-312c-4.142,0-7.5,3.358-7.5,7.5s3.358,7.5,7.5,7.5h312c4.142,0,7.5-3.358,7.5-7.5S507.642,448,503.5,448z"/>
|
|
18
|
+
<path d="M503.5,400h-312c-4.142,0-7.5,3.358-7.5,7.5s3.358,7.5,7.5,7.5h312c4.142,0,7.5-3.358,7.5-7.5S507.642,400,503.5,400z"/>
|
|
19
|
+
<path d="M119.5,360h-96C10.542,360,0,370.542,0,383.5v96C0,492.458,10.542,503,23.5,503h96c12.958,0,23.5-10.542,23.5-23.5v-96
|
|
20
|
+
C143,370.542,132.458,360,119.5,360z M128,479.5c0,4.687-3.813,8.5-8.5,8.5h-96c-4.687,0-8.5-3.813-8.5-8.5v-96
|
|
21
|
+
c0-4.687,3.813-8.5,8.5-8.5h96c4.687,0,8.5,3.813,8.5,8.5V479.5z"/>
|
|
22
|
+
</g>
|
|
23
|
+
<g>
|
|
24
|
+
</g>
|
|
25
|
+
<g>
|
|
26
|
+
</g>
|
|
27
|
+
<g>
|
|
28
|
+
</g>
|
|
29
|
+
<g>
|
|
30
|
+
</g>
|
|
31
|
+
<g>
|
|
32
|
+
</g>
|
|
33
|
+
<g>
|
|
34
|
+
</g>
|
|
35
|
+
<g>
|
|
36
|
+
</g>
|
|
37
|
+
<g>
|
|
38
|
+
</g>
|
|
39
|
+
<g>
|
|
40
|
+
</g>
|
|
41
|
+
<g>
|
|
42
|
+
</g>
|
|
43
|
+
<g>
|
|
44
|
+
</g>
|
|
45
|
+
<g>
|
|
46
|
+
</g>
|
|
47
|
+
<g>
|
|
48
|
+
</g>
|
|
49
|
+
<g>
|
|
50
|
+
</g>
|
|
51
|
+
<g>
|
|
52
|
+
</g>
|
|
53
|
+
</svg>
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 511.998 511.998" style="enable-background:new 0 0 511.998 511.998;" xml:space="preserve">
|
|
5
|
+
<g>
|
|
6
|
+
<g>
|
|
7
|
+
<path d="M511.924,282.654c-0.016-0.113-0.043-0.222-0.063-0.333c-0.041-0.224-0.087-0.446-0.148-0.664
|
|
8
|
+
c-0.035-0.126-0.078-0.248-0.12-0.372c-0.067-0.198-0.14-0.393-0.223-0.585c-0.053-0.122-0.108-0.242-0.168-0.361
|
|
9
|
+
c-0.094-0.188-0.197-0.37-0.306-0.549c-0.066-0.109-0.13-0.218-0.201-0.323c-0.128-0.189-0.269-0.368-0.415-0.545
|
|
10
|
+
c-0.068-0.083-0.131-0.17-0.203-0.251c-0.218-0.244-0.451-0.476-0.702-0.691c-0.007-0.006-0.013-0.013-0.02-0.019
|
|
11
|
+
c-0.239-0.204-0.492-0.393-0.759-0.568c-0.022-0.015-0.047-0.025-0.069-0.039c-0.083-0.053-0.172-0.096-0.256-0.146
|
|
12
|
+
c-0.216-0.126-0.435-0.246-0.66-0.349c-0.038-0.017-0.072-0.041-0.11-0.058l-119.744-52.473V76.617
|
|
13
|
+
c0-0.347-0.029-0.69-0.076-1.029c-0.016-0.113-0.043-0.222-0.063-0.333c-0.041-0.224-0.087-0.446-0.148-0.664
|
|
14
|
+
c-0.035-0.126-0.078-0.248-0.12-0.372c-0.067-0.199-0.14-0.394-0.223-0.586c-0.053-0.122-0.108-0.242-0.167-0.36
|
|
15
|
+
c-0.094-0.188-0.197-0.37-0.306-0.55c-0.066-0.109-0.13-0.218-0.201-0.323c-0.128-0.189-0.269-0.368-0.415-0.545
|
|
16
|
+
c-0.068-0.083-0.131-0.17-0.203-0.251c-0.22-0.246-0.455-0.48-0.708-0.696c-0.005-0.004-0.009-0.009-0.014-0.013
|
|
17
|
+
c-0.239-0.204-0.493-0.394-0.759-0.568c-0.022-0.015-0.047-0.025-0.069-0.039c-0.083-0.053-0.172-0.096-0.257-0.146
|
|
18
|
+
c-0.216-0.126-0.434-0.245-0.659-0.349c-0.038-0.018-0.072-0.042-0.11-0.058L259.016,15.291c-1.922-0.843-4.11-0.843-6.031,0
|
|
19
|
+
L128.742,69.734c-0.038,0.017-0.072,0.04-0.109,0.058c-0.226,0.104-0.445,0.223-0.662,0.35c-0.084,0.049-0.173,0.092-0.255,0.145
|
|
20
|
+
c-0.023,0.014-0.047,0.025-0.069,0.039c-0.267,0.174-0.52,0.365-0.759,0.568c-0.005,0.004-0.009,0.009-0.014,0.013
|
|
21
|
+
c-0.253,0.217-0.488,0.451-0.708,0.696c-0.072,0.08-0.135,0.167-0.203,0.251c-0.145,0.177-0.286,0.356-0.415,0.545
|
|
22
|
+
c-0.071,0.105-0.135,0.214-0.201,0.323c-0.109,0.18-0.212,0.362-0.306,0.55c-0.059,0.119-0.114,0.239-0.167,0.36
|
|
23
|
+
c-0.083,0.192-0.156,0.387-0.223,0.586c-0.042,0.123-0.084,0.246-0.12,0.372c-0.061,0.218-0.107,0.44-0.148,0.664
|
|
24
|
+
c-0.021,0.112-0.048,0.221-0.063,0.333c-0.047,0.339-0.076,0.682-0.076,1.029v47.123c0,4.151,3.364,7.515,7.515,7.515
|
|
25
|
+
s7.515-3.364,7.515-7.515V88.114l109.213,47.859v135.365l-109.213-47.045V176.51c0-4.151-3.364-7.515-7.515-7.515
|
|
26
|
+
s-7.515,3.364-7.515,7.515v47.818L4.499,276.8c-0.038,0.017-0.072,0.041-0.11,0.058c-0.226,0.103-0.444,0.223-0.661,0.349
|
|
27
|
+
c-0.085,0.05-0.174,0.093-0.256,0.145c-0.022,0.014-0.047,0.025-0.069,0.039c-0.267,0.174-0.52,0.364-0.759,0.568
|
|
28
|
+
c-0.007,0.006-0.013,0.013-0.02,0.019c-0.251,0.215-0.484,0.447-0.702,0.691c-0.072,0.08-0.135,0.167-0.203,0.251
|
|
29
|
+
c-0.145,0.177-0.286,0.356-0.415,0.545c-0.071,0.105-0.135,0.214-0.201,0.323c-0.109,0.179-0.212,0.361-0.306,0.549
|
|
30
|
+
c-0.059,0.119-0.115,0.239-0.168,0.361c-0.083,0.192-0.156,0.387-0.223,0.585c-0.042,0.124-0.084,0.246-0.12,0.372
|
|
31
|
+
c-0.061,0.218-0.107,0.44-0.148,0.664c-0.021,0.112-0.048,0.221-0.063,0.333C0.029,282.992,0,283.335,0,283.682v152.622
|
|
32
|
+
c0,3.001,1.786,5.714,4.542,6.901l124.243,53.518c0.259,0.112,0.522,0.205,0.788,0.286c0.059,0.018,0.119,0.03,0.179,0.046
|
|
33
|
+
c0.26,0.072,0.521,0.129,0.784,0.173c0.086,0.014,0.172,0.028,0.259,0.04c0.32,0.041,0.64,0.07,0.961,0.07h0.001h0.001
|
|
34
|
+
c0.321,0,0.642-0.028,0.961-0.07c0.087-0.011,0.173-0.025,0.259-0.04c0.264-0.043,0.525-0.101,0.784-0.173
|
|
35
|
+
c0.059-0.016,0.12-0.028,0.179-0.046c0.266-0.081,0.529-0.174,0.788-0.286L256,444.486l30.271,13.039
|
|
36
|
+
c3.812,1.645,8.233-0.116,9.874-3.929c1.642-3.811-0.116-8.232-3.929-9.874l-28.701-12.364v-136.18l109.213,47.858v135.367
|
|
37
|
+
l-31.935-13.756c-3.809-1.642-8.232,0.116-9.874,3.929c-1.642,3.811,0.116,8.232,3.928,9.874l42.422,18.274
|
|
38
|
+
c0.259,0.112,0.522,0.205,0.788,0.286c0.059,0.018,0.119,0.03,0.179,0.046c0.26,0.072,0.521,0.129,0.784,0.173
|
|
39
|
+
c0.086,0.014,0.172,0.028,0.259,0.04c0.32,0.041,0.64,0.07,0.961,0.07h0.001h0.001c0.321,0,0.641-0.028,0.961-0.07
|
|
40
|
+
c0.087-0.011,0.173-0.025,0.259-0.04c0.264-0.043,0.525-0.101,0.784-0.173c0.059-0.016,0.12-0.028,0.179-0.046
|
|
41
|
+
c0.266-0.081,0.529-0.174,0.788-0.286l124.243-53.518c2.756-1.187,4.542-3.9,4.542-6.901V283.682
|
|
42
|
+
C512,283.335,511.971,282.992,511.924,282.654z M124.242,478.404L15.029,431.359v-136.18l109.213,47.858V478.404z M131.757,329.92
|
|
43
|
+
l-105.52-46.238l105.52-46.239l105.52,46.239L131.757,329.92z M248.485,431.359l-109.213,47.045V343.037l109.213-47.858V431.359z
|
|
44
|
+
M256,122.856L150.48,76.617L256,30.378l105.52,46.238L256,122.856z M263.515,135.972l109.213-47.859v136.18l-109.213,47.045
|
|
45
|
+
V135.972z M380.243,329.921l-105.52-46.238l105.52-46.239l105.52,46.239L380.243,329.921z M496.971,431.359l-109.213,47.045
|
|
46
|
+
V343.037l109.213-47.858V431.359z"/>
|
|
47
|
+
</g>
|
|
48
|
+
</g>
|
|
49
|
+
<g>
|
|
50
|
+
</g>
|
|
51
|
+
<g>
|
|
52
|
+
</g>
|
|
53
|
+
<g>
|
|
54
|
+
</g>
|
|
55
|
+
<g>
|
|
56
|
+
</g>
|
|
57
|
+
<g>
|
|
58
|
+
</g>
|
|
59
|
+
<g>
|
|
60
|
+
</g>
|
|
61
|
+
<g>
|
|
62
|
+
</g>
|
|
63
|
+
<g>
|
|
64
|
+
</g>
|
|
65
|
+
<g>
|
|
66
|
+
</g>
|
|
67
|
+
<g>
|
|
68
|
+
</g>
|
|
69
|
+
<g>
|
|
70
|
+
</g>
|
|
71
|
+
<g>
|
|
72
|
+
</g>
|
|
73
|
+
<g>
|
|
74
|
+
</g>
|
|
75
|
+
<g>
|
|
76
|
+
</g>
|
|
77
|
+
<g>
|
|
78
|
+
</g>
|
|
79
|
+
</svg>
|