tecitheme 0.11.1 → 0.11.2
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.
|
@@ -7,18 +7,18 @@
|
|
|
7
7
|
import { onMount } from "svelte";
|
|
8
8
|
import { makeIdString } from "../utils";
|
|
9
9
|
|
|
10
|
-
export let data;
|
|
10
|
+
export let data, all_partners;
|
|
11
11
|
let {name, product} = data;
|
|
12
12
|
|
|
13
13
|
//List of all partners for the specified product
|
|
14
|
-
let partners = filter_partners(product, []).partners;
|
|
14
|
+
let partners = filter_partners(product, [], all_partners).partners;
|
|
15
15
|
|
|
16
16
|
//For tracking which List items are expaned
|
|
17
17
|
let expanded = {};
|
|
18
18
|
partners.forEach(partner => expanded[slugify(partner.name.toLowerCase())] = false);
|
|
19
19
|
|
|
20
20
|
//List of all known regions
|
|
21
|
-
let regions = get_supported_regions(product);
|
|
21
|
+
let regions = get_supported_regions(product, all_partners);
|
|
22
22
|
let regionSelector = {};
|
|
23
23
|
regions.forEach(region => regionSelector[region] = false);
|
|
24
24
|
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
//Filter the list of partners again using new information
|
|
28
28
|
function refresh() {
|
|
29
29
|
let selectedRegions = Object.entries(regionSelector).filter(([_, v]) => v).map(([region, _]) => region);
|
|
30
|
-
partners = filter_partners(product, selectedRegions).partners;
|
|
30
|
+
partners = filter_partners(product, selectedRegions, all_partners).partners;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
//Get anchor tag to expand specific elements
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
/** @typedef {typeof __propDef.slots} PartnersListSlots */
|
|
4
4
|
export default class PartnersList extends SvelteComponent<{
|
|
5
5
|
data: any;
|
|
6
|
+
all_partners: any;
|
|
6
7
|
}, {
|
|
7
8
|
[evt: string]: CustomEvent<any>;
|
|
8
9
|
}, {}> {
|
|
@@ -14,6 +15,7 @@ import { SvelteComponent } from "svelte";
|
|
|
14
15
|
declare const __propDef: {
|
|
15
16
|
props: {
|
|
16
17
|
data: any;
|
|
18
|
+
all_partners: any;
|
|
17
19
|
};
|
|
18
20
|
events: {
|
|
19
21
|
[evt: string]: CustomEvent<any>;
|
|
@@ -101,6 +101,12 @@
|
|
|
101
101
|
{date}
|
|
102
102
|
{lastmod}><slot /></svelte:component
|
|
103
103
|
>
|
|
104
|
+
{:else if section && section.fieldGroup === "partners"}
|
|
105
|
+
<svelte:component
|
|
106
|
+
this={blocks.find((obj) => obj.ref === section.fieldGroup).component}
|
|
107
|
+
data={section}
|
|
108
|
+
all_partners={data.partners}><slot /></svelte:component
|
|
109
|
+
>
|
|
104
110
|
{:else if section && section.fieldGroup != "sidebar-content" && section.fieldGroup != "pageNav"}
|
|
105
111
|
<svelte:component
|
|
106
112
|
this={blocks.find((obj) => obj.ref === section.fieldGroup).component}
|
package/dist/partners.d.ts
CHANGED
|
@@ -23,12 +23,18 @@ export type Partner = {
|
|
|
23
23
|
*
|
|
24
24
|
* product (string): The product the user is looking to purchase
|
|
25
25
|
* region (string): Name of the region the user is looking to purchase in\
|
|
26
|
+
* all_partners (): JSON content of all of our partners
|
|
26
27
|
*/
|
|
27
|
-
export declare function filter_partners(product: string, region: string[]
|
|
28
|
+
export declare function filter_partners(product: string, region: string[], all_partners: {
|
|
29
|
+
partners: Partner[];
|
|
30
|
+
}): {
|
|
28
31
|
"partners": Partner[];
|
|
29
32
|
};
|
|
30
33
|
/** Gets the regions supported by resellers for a product
|
|
31
34
|
*
|
|
32
35
|
* product (string): The product the customer is interested in purchasing
|
|
36
|
+
* all_partners (): JSON content of all of our partners
|
|
33
37
|
*/
|
|
34
|
-
export declare function get_supported_regions(product: string
|
|
38
|
+
export declare function get_supported_regions(product: string, all_partners: {
|
|
39
|
+
partners: Partner[];
|
|
40
|
+
}): string[];
|
package/dist/partners.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import all_partners from "./partners.json";
|
|
2
1
|
/**Filters our list of known partners by product and region
|
|
3
2
|
*
|
|
4
3
|
* product (string): The product the user is looking to purchase
|
|
5
4
|
* region (string): Name of the region the user is looking to purchase in\
|
|
5
|
+
* all_partners (): JSON content of all of our partners
|
|
6
6
|
*/
|
|
7
|
-
export function filter_partners(product, region) {
|
|
7
|
+
export function filter_partners(product, region, all_partners) {
|
|
8
8
|
product = product.toLowerCase();
|
|
9
9
|
region = region.map(reg => reg.toLowerCase());
|
|
10
10
|
let partners = all_partners.partners.filter((partner) => {
|
|
@@ -21,8 +21,9 @@ export function filter_partners(product, region) {
|
|
|
21
21
|
/** Gets the regions supported by resellers for a product
|
|
22
22
|
*
|
|
23
23
|
* product (string): The product the customer is interested in purchasing
|
|
24
|
+
* all_partners (): JSON content of all of our partners
|
|
24
25
|
*/
|
|
25
|
-
export function get_supported_regions(product) {
|
|
26
|
+
export function get_supported_regions(product, all_partners) {
|
|
26
27
|
product = product.toLowerCase();
|
|
27
28
|
let regions = [];
|
|
28
29
|
let partners = product == "any" ?
|
package/package.json
CHANGED
package/dist/partners.json
DELETED
|
@@ -1,758 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"partners": [
|
|
3
|
-
{
|
|
4
|
-
"name": "Aeolus Consulting",
|
|
5
|
-
"regions": ["Belgium", "Netherlands", "Luxembourg"],
|
|
6
|
-
"address": ["Kol. Begaultlaan 1A/51", "3012Leuven", "Belgium"],
|
|
7
|
-
"emails": [
|
|
8
|
-
{
|
|
9
|
-
"address": "info@aeolus-consulting.be"
|
|
10
|
-
}
|
|
11
|
-
],
|
|
12
|
-
"telephones": [
|
|
13
|
-
{
|
|
14
|
-
"number": "+32 (0) 496/10.94.63"
|
|
15
|
-
}
|
|
16
|
-
],
|
|
17
|
-
"websites": [
|
|
18
|
-
{
|
|
19
|
-
"name": "https://www.aeolus-consulting.be",
|
|
20
|
-
"address": "https://www.aeolus-consulting.be"
|
|
21
|
-
}
|
|
22
|
-
],
|
|
23
|
-
"products": [
|
|
24
|
-
{
|
|
25
|
-
"name": "Pyrosim",
|
|
26
|
-
"languages": ["English"]
|
|
27
|
-
},
|
|
28
|
-
{
|
|
29
|
-
"name": "Pathfinder",
|
|
30
|
-
"languages": ["English"]
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "Ventus",
|
|
34
|
-
"languages": ["English"]
|
|
35
|
-
}
|
|
36
|
-
]
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"name": "Beijing HuanZhongRuiChi Technology Co., Ltd. (Reachsoft)",
|
|
40
|
-
"regions": ["China", "Hong Kong"],
|
|
41
|
-
"address": ["ROOM 1106, A3 Building, RongJingDao", "BJUT Software Park", "YiZhuang, Beijing, 100176", "China"],
|
|
42
|
-
"emails": [
|
|
43
|
-
{
|
|
44
|
-
"address": "cal@reachsoft.com.cn"
|
|
45
|
-
},
|
|
46
|
-
{
|
|
47
|
-
"address": "reach@reachsoft.com.cn"
|
|
48
|
-
}
|
|
49
|
-
],
|
|
50
|
-
"telephones": [
|
|
51
|
-
{
|
|
52
|
-
"number": "86 1855 1855 019"
|
|
53
|
-
}
|
|
54
|
-
],
|
|
55
|
-
"websites": [
|
|
56
|
-
{
|
|
57
|
-
"name": "https://www.reachsoft.cn",
|
|
58
|
-
"address": "https://www.reachsoft.cn"
|
|
59
|
-
}
|
|
60
|
-
],
|
|
61
|
-
"products": [
|
|
62
|
-
{
|
|
63
|
-
"name": "Pyrosim",
|
|
64
|
-
"languages": ["English", "Chinese"]
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"name": "Pathfinder",
|
|
68
|
-
"languages": ["English", "Chinese"]
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
"name": "Ventus",
|
|
72
|
-
"languages": ["English"]
|
|
73
|
-
}
|
|
74
|
-
]
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
"name": "Shanghai Graphic Design Information Co.ltd. (GDI)",
|
|
78
|
-
"regions": ["China", "Hong Kong"],
|
|
79
|
-
"address": ["11th Floor, Building B", "Hetu Park", "No. 500 Shunqing Road", "Shanghai", "China"],
|
|
80
|
-
"emails": [
|
|
81
|
-
{
|
|
82
|
-
"address": "fjj@gdi.com.cn"
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
"address": "sales@gdi.com.cn"
|
|
86
|
-
}
|
|
87
|
-
],
|
|
88
|
-
"telephones": [
|
|
89
|
-
{
|
|
90
|
-
"name": "Telephone",
|
|
91
|
-
"number": "86 13 918059956"
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
"name": "Fax",
|
|
95
|
-
"number": "86 21 51010862"
|
|
96
|
-
}
|
|
97
|
-
],
|
|
98
|
-
"websites": [
|
|
99
|
-
{
|
|
100
|
-
"name": "https://www.gdi.com.cn",
|
|
101
|
-
"address": "https://www.gdi.com.cn"
|
|
102
|
-
}
|
|
103
|
-
],
|
|
104
|
-
"products": [
|
|
105
|
-
{
|
|
106
|
-
"name": "Pyrosim",
|
|
107
|
-
"languages": ["English"]
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"name": "Pathfinder",
|
|
111
|
-
"languages": ["English"]
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"name": "Ventus",
|
|
115
|
-
"languages": ["English"]
|
|
116
|
-
}
|
|
117
|
-
]
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
"name": "Recognity s.r.o.",
|
|
121
|
-
"regions": ["Czech Republic", "Slovak Republic"],
|
|
122
|
-
"address": ["Purkyňova 649/127", "Brno, 612 00", "Czech Republic"],
|
|
123
|
-
"emails": [
|
|
124
|
-
{
|
|
125
|
-
"address": "software@recognity.cz"
|
|
126
|
-
}
|
|
127
|
-
],
|
|
128
|
-
"telephones": [
|
|
129
|
-
{
|
|
130
|
-
"number": "+420 737 383 389"
|
|
131
|
-
}
|
|
132
|
-
],
|
|
133
|
-
"websites": [
|
|
134
|
-
{
|
|
135
|
-
"name": "https://www.recognity.cz",
|
|
136
|
-
"address": "https://www.recognity.cz"
|
|
137
|
-
}
|
|
138
|
-
],
|
|
139
|
-
"products": [
|
|
140
|
-
{
|
|
141
|
-
"name": "Pyrosim",
|
|
142
|
-
"languages": ["English"]
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
"name": "Pathfinder",
|
|
146
|
-
"languages": ["English"]
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
"name": "Ventus",
|
|
150
|
-
"languages": ["English"]
|
|
151
|
-
}
|
|
152
|
-
]
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
"name": "Fire Raters",
|
|
156
|
-
"regions": ["Egypt", "Jordan", "Lebanon", "Oman", "Qatar", "Saudi Arabia", "United Arab Emirates"],
|
|
157
|
-
"address": ["5th Settlement", "Cairo", "Egypt"],
|
|
158
|
-
"emails": [
|
|
159
|
-
{
|
|
160
|
-
"address": "info@fireraters.com"
|
|
161
|
-
}
|
|
162
|
-
],
|
|
163
|
-
"telephones": [],
|
|
164
|
-
"websites": [
|
|
165
|
-
{
|
|
166
|
-
"name": "https://www.fireraters.com",
|
|
167
|
-
"address": "https://www.fireraters.com"
|
|
168
|
-
}
|
|
169
|
-
],
|
|
170
|
-
"products": [
|
|
171
|
-
{
|
|
172
|
-
"name": "Pyrosim",
|
|
173
|
-
"languages": ["English"]
|
|
174
|
-
},
|
|
175
|
-
{
|
|
176
|
-
"name": "Pathfinder",
|
|
177
|
-
"languages": ["English"]
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
"name": "Ventus",
|
|
181
|
-
"languages": ["English"]
|
|
182
|
-
}
|
|
183
|
-
]
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
"name": "1Point2",
|
|
187
|
-
"regions": ["France", "French Language Customers"],
|
|
188
|
-
"address": ["5 rue de la poste", "38170 Seyssinet-Pariset", "France"],
|
|
189
|
-
"emails": [
|
|
190
|
-
{
|
|
191
|
-
"address": "infos@1Point2.com"
|
|
192
|
-
}
|
|
193
|
-
],
|
|
194
|
-
"telephones": [
|
|
195
|
-
{
|
|
196
|
-
"number": "+33 (0)4 76 27 77 85"
|
|
197
|
-
}
|
|
198
|
-
],
|
|
199
|
-
"websites": [
|
|
200
|
-
{
|
|
201
|
-
"name": "https://www.1point2.com",
|
|
202
|
-
"address": "https://www.1point2.com"
|
|
203
|
-
}
|
|
204
|
-
],
|
|
205
|
-
"products": [
|
|
206
|
-
{
|
|
207
|
-
"name": "Pyrosim",
|
|
208
|
-
"languages": ["English", "French"]
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
"name": "Pathfinder",
|
|
212
|
-
"languages": ["English", "French"]
|
|
213
|
-
},
|
|
214
|
-
{
|
|
215
|
-
"name": "Ventus",
|
|
216
|
-
"languages": ["English"]
|
|
217
|
-
}
|
|
218
|
-
]
|
|
219
|
-
},
|
|
220
|
-
{
|
|
221
|
-
"name": "SIMTEGO GmbH",
|
|
222
|
-
"regions": ["Germany", "Switzerland", "Austria", "Liechtenstein"],
|
|
223
|
-
"address": ["Einsteinstr. 55", "89077 Ulm", "Germany"],
|
|
224
|
-
"emails": [
|
|
225
|
-
{
|
|
226
|
-
"address": "info@simtego.de"
|
|
227
|
-
}
|
|
228
|
-
],
|
|
229
|
-
"telephones": [
|
|
230
|
-
{
|
|
231
|
-
"number": "+49 (0)731 850702-31"
|
|
232
|
-
}
|
|
233
|
-
],
|
|
234
|
-
"websites": [
|
|
235
|
-
{
|
|
236
|
-
"name": "https://www.simtego.de",
|
|
237
|
-
"address": "https://www.simtego.de"
|
|
238
|
-
}
|
|
239
|
-
],
|
|
240
|
-
"products": [
|
|
241
|
-
{
|
|
242
|
-
"name": "Pyrosim",
|
|
243
|
-
"languages": ["English", "German"]
|
|
244
|
-
},
|
|
245
|
-
{
|
|
246
|
-
"name": "Pathfinder",
|
|
247
|
-
"languages": ["English", "German"]
|
|
248
|
-
},
|
|
249
|
-
{
|
|
250
|
-
"name": "Ventus",
|
|
251
|
-
"languages": ["English"]
|
|
252
|
-
}
|
|
253
|
-
]
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
"name": "ELITESOFT SRL",
|
|
257
|
-
"regions": ["Greece", "Cyprus"],
|
|
258
|
-
"address": ["Rue Picard 40A", "1080 Brussels", "Belgium"],
|
|
259
|
-
"emails": [
|
|
260
|
-
{
|
|
261
|
-
"address": "info@elitesoft.eu"
|
|
262
|
-
}
|
|
263
|
-
],
|
|
264
|
-
"telephones": [
|
|
265
|
-
{
|
|
266
|
-
"number": "+32 492 832256"
|
|
267
|
-
}
|
|
268
|
-
],
|
|
269
|
-
"websites": [
|
|
270
|
-
{
|
|
271
|
-
"name": "https://www.elitesoft.eu",
|
|
272
|
-
"address": "https://www.elitesoft.eu"
|
|
273
|
-
}
|
|
274
|
-
],
|
|
275
|
-
"products": [
|
|
276
|
-
{
|
|
277
|
-
"name": "Pyrosim",
|
|
278
|
-
"languages": ["English"]
|
|
279
|
-
},
|
|
280
|
-
{
|
|
281
|
-
"name": "Pathfinder",
|
|
282
|
-
"languages": ["English"]
|
|
283
|
-
},
|
|
284
|
-
{
|
|
285
|
-
"name": "Ventus",
|
|
286
|
-
"languages": ["English"]
|
|
287
|
-
}
|
|
288
|
-
]
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
"name": "Shiretechnik Solutions",
|
|
292
|
-
"regions": ["India", "Bangladesh", "Sri Lanka", "Nepal", "Bhutan", "Myanmar"],
|
|
293
|
-
"address": ["No. 166, 5th Main K.E.B layout", "Sanjaynagar, Bangalore", "Karnataka", "India, Pin - 560 094"],
|
|
294
|
-
"emails": [
|
|
295
|
-
{
|
|
296
|
-
"address": "contact@shiretechnik.com"
|
|
297
|
-
}
|
|
298
|
-
],
|
|
299
|
-
"telephones": [
|
|
300
|
-
{
|
|
301
|
-
"name": "Mobile",
|
|
302
|
-
"number": "+91-9620031209"
|
|
303
|
-
},
|
|
304
|
-
{
|
|
305
|
-
"name": "Office",
|
|
306
|
-
"number": "+91-80-41149803"
|
|
307
|
-
}
|
|
308
|
-
],
|
|
309
|
-
"websites": [
|
|
310
|
-
{
|
|
311
|
-
"name": "https://www.shiretechnik.com",
|
|
312
|
-
"address": "https://www.shiretechnik.com"
|
|
313
|
-
}
|
|
314
|
-
],
|
|
315
|
-
"products": [
|
|
316
|
-
{
|
|
317
|
-
"name": "Pyrosim",
|
|
318
|
-
"languages": ["English"]
|
|
319
|
-
},
|
|
320
|
-
{
|
|
321
|
-
"name": "Pathfinder",
|
|
322
|
-
"languages": ["English"]
|
|
323
|
-
},
|
|
324
|
-
{
|
|
325
|
-
"name": "Ventus",
|
|
326
|
-
"languages": ["English"]
|
|
327
|
-
}
|
|
328
|
-
]
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
"name": "Cantene S.r.l",
|
|
332
|
-
"regions": ["Italy", "Hungary"],
|
|
333
|
-
"address": ["Via Marco Polo 24/A", "10129 Torino", "Italy"],
|
|
334
|
-
"emails": [
|
|
335
|
-
{
|
|
336
|
-
"address": "info@cantene.it"
|
|
337
|
-
}
|
|
338
|
-
],
|
|
339
|
-
"telephones": [
|
|
340
|
-
{
|
|
341
|
-
"number": "+39 011 19707165"
|
|
342
|
-
}
|
|
343
|
-
],
|
|
344
|
-
"websites": [
|
|
345
|
-
{
|
|
346
|
-
"name": "https://www.cantene.it",
|
|
347
|
-
"address": "https://www.cantene.it"
|
|
348
|
-
}
|
|
349
|
-
],
|
|
350
|
-
"products": [
|
|
351
|
-
{
|
|
352
|
-
"name": "Pyrosim",
|
|
353
|
-
"languages": ["English", "Italian"]
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
"name": "Pathfinder",
|
|
357
|
-
"languages": ["English", "Italian"]
|
|
358
|
-
},
|
|
359
|
-
{
|
|
360
|
-
"name": "Ventus",
|
|
361
|
-
"languages": ["English"]
|
|
362
|
-
}
|
|
363
|
-
]
|
|
364
|
-
},
|
|
365
|
-
{
|
|
366
|
-
"name": "CAE Solutions Corporation",
|
|
367
|
-
"regions": ["Japan"],
|
|
368
|
-
"address": ["7F Shosankan", "1-3-2 Iidabashi", "Chiyoda, Tokyo", "102-0072", "Japan"],
|
|
369
|
-
"emails": [
|
|
370
|
-
{
|
|
371
|
-
"address": "sales@cae-sc.com"
|
|
372
|
-
}
|
|
373
|
-
],
|
|
374
|
-
"telephones": [
|
|
375
|
-
{
|
|
376
|
-
"name": "Telephone",
|
|
377
|
-
"number": "+81-3-3514-1506"
|
|
378
|
-
},
|
|
379
|
-
{
|
|
380
|
-
"name": "Fax",
|
|
381
|
-
"number": "+81-3-3514-1507"
|
|
382
|
-
}
|
|
383
|
-
],
|
|
384
|
-
"websites": [
|
|
385
|
-
{
|
|
386
|
-
"name": "https://www.cae-sc.com",
|
|
387
|
-
"address": "https://www.cae-sc.com"
|
|
388
|
-
}
|
|
389
|
-
],
|
|
390
|
-
"products": [
|
|
391
|
-
{
|
|
392
|
-
"name": "Pyrosim",
|
|
393
|
-
"languages": ["English", "Japanese"]
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
"name": "Pathfinder",
|
|
397
|
-
"languages": ["English", "Japanese"]
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
"name": "Ventus",
|
|
401
|
-
"languages": ["English"]
|
|
402
|
-
}
|
|
403
|
-
]
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
"name": "BasisSoft Inc.",
|
|
407
|
-
"regions": ["Korea"],
|
|
408
|
-
"address": ["3rd Floor. Iho Bldg.", "151-29 Samsung-Dong, Kangnam-Gu", "Seoul 135-876", "Korea"],
|
|
409
|
-
"emails": [
|
|
410
|
-
{
|
|
411
|
-
"address": "minsu@basis.co.kr"
|
|
412
|
-
}
|
|
413
|
-
],
|
|
414
|
-
"telephones": [
|
|
415
|
-
{
|
|
416
|
-
"name": "Telephone",
|
|
417
|
-
"number": "+82 2 571 8718"
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
"name": "Fax",
|
|
421
|
-
"number": "+82 2 572 9709"
|
|
422
|
-
}
|
|
423
|
-
],
|
|
424
|
-
"websites": [
|
|
425
|
-
{
|
|
426
|
-
"name": "https://www.basis.co.kr",
|
|
427
|
-
"address": "https://www.basis.co.kr"
|
|
428
|
-
}
|
|
429
|
-
],
|
|
430
|
-
"products": [
|
|
431
|
-
{
|
|
432
|
-
"name": "Pyrosim",
|
|
433
|
-
"languages": ["English"]
|
|
434
|
-
},
|
|
435
|
-
{
|
|
436
|
-
"name": "Pathfinder",
|
|
437
|
-
"languages": ["English"]
|
|
438
|
-
},
|
|
439
|
-
{
|
|
440
|
-
"name": "Ventus",
|
|
441
|
-
"languages": ["English"]
|
|
442
|
-
}
|
|
443
|
-
]
|
|
444
|
-
},
|
|
445
|
-
{
|
|
446
|
-
"name": "Kimyoung Engineering Co., Ltd",
|
|
447
|
-
"regions": ["Korea"],
|
|
448
|
-
"address": ["#505 Saehan Venture World", "113-15, Shihung-dong", "Kumcheon-gu", "Seoul 153-031", "Korea"],
|
|
449
|
-
"emails": [
|
|
450
|
-
{
|
|
451
|
-
"address": "kimyoung@epcmart.co.kr"
|
|
452
|
-
}
|
|
453
|
-
],
|
|
454
|
-
"telephones": [
|
|
455
|
-
{
|
|
456
|
-
"name": "Telephone",
|
|
457
|
-
"number": "+82-2-807-7750"
|
|
458
|
-
},
|
|
459
|
-
{
|
|
460
|
-
"name": "Fax",
|
|
461
|
-
"number": "+82-2-808-6108"
|
|
462
|
-
}
|
|
463
|
-
],
|
|
464
|
-
"websites": [
|
|
465
|
-
{
|
|
466
|
-
"name": "https://www.epcmart.co.kr",
|
|
467
|
-
"address": "https://www.epcmart.co.kr"
|
|
468
|
-
}
|
|
469
|
-
],
|
|
470
|
-
"products": [
|
|
471
|
-
{
|
|
472
|
-
"name": "Pyrosim",
|
|
473
|
-
"languages": ["English", "Korean"]
|
|
474
|
-
},
|
|
475
|
-
{
|
|
476
|
-
"name": "Pathfinder",
|
|
477
|
-
"languages": ["English", "Korean"]
|
|
478
|
-
},
|
|
479
|
-
{
|
|
480
|
-
"name": "Ventus",
|
|
481
|
-
"languages": ["English"]
|
|
482
|
-
}
|
|
483
|
-
]
|
|
484
|
-
},
|
|
485
|
-
{
|
|
486
|
-
"name": "STIGO Sp. z o.o.",
|
|
487
|
-
"regions": ["Poland", "Ukraine"],
|
|
488
|
-
"address": ["ul. Longinusa Podbipięty 29", "31-980 Kraków", "Poland"],
|
|
489
|
-
"emails": [
|
|
490
|
-
{
|
|
491
|
-
"name": "Sales",
|
|
492
|
-
"address": "biuro@stigo.com.pl"
|
|
493
|
-
},
|
|
494
|
-
{
|
|
495
|
-
"name": "Przemysław Rożek",
|
|
496
|
-
"address": "p.rozek@stigo.com.pl"
|
|
497
|
-
}
|
|
498
|
-
],
|
|
499
|
-
"telephones": [
|
|
500
|
-
{
|
|
501
|
-
"number": "+48 12 346 58 00"
|
|
502
|
-
}
|
|
503
|
-
],
|
|
504
|
-
"websites": [
|
|
505
|
-
{
|
|
506
|
-
"name": "https://www.pyrosim.pl",
|
|
507
|
-
"address": "https://www.pyrosim.pl"
|
|
508
|
-
}
|
|
509
|
-
],
|
|
510
|
-
"products": [
|
|
511
|
-
{
|
|
512
|
-
"name": "Pyrosim",
|
|
513
|
-
"languages": ["English", "Polish"]
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
"name": "Pathfinder",
|
|
517
|
-
"languages": ["English", "Polish"]
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
"name": "Ventus",
|
|
521
|
-
"languages": ["English"]
|
|
522
|
-
}
|
|
523
|
-
]
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
"name": "FireCat - pyrosim.ru",
|
|
527
|
-
"regions": ["Russia", "CIS", "Armenia", "Azerbaijan", "Belarus", "Georgia", "Kazakhstan", "Kyrgyzstan", "Moldova", "Russia", "Tajikistan", "Turkmenistan", "Uzbekistan"],
|
|
528
|
-
"address": ["Первомайская 66 - 4", "г. Екатеринбург, ул.", "620062", "Russia"],
|
|
529
|
-
"emails": [
|
|
530
|
-
{
|
|
531
|
-
"address": "mail@pyrosim.ru"
|
|
532
|
-
}
|
|
533
|
-
],
|
|
534
|
-
"telephones": [
|
|
535
|
-
{
|
|
536
|
-
"name": "Telephone",
|
|
537
|
-
"number": "+7 (343) 319-12-62"
|
|
538
|
-
},
|
|
539
|
-
{
|
|
540
|
-
"name": "Fax",
|
|
541
|
-
"number": "+7 (343) 319-12-62"
|
|
542
|
-
}
|
|
543
|
-
],
|
|
544
|
-
"websites": [
|
|
545
|
-
{
|
|
546
|
-
"name": "https://www.pyrosim.ru",
|
|
547
|
-
"address": "https://www.pyrosim.ru"
|
|
548
|
-
}
|
|
549
|
-
],
|
|
550
|
-
"products": [
|
|
551
|
-
{
|
|
552
|
-
"name": "Pyrosim",
|
|
553
|
-
"languages": ["English", "Russian"]
|
|
554
|
-
},
|
|
555
|
-
{
|
|
556
|
-
"name": "Pathfinder",
|
|
557
|
-
"languages": ["English", "Russian"]
|
|
558
|
-
},
|
|
559
|
-
{
|
|
560
|
-
"name": "Ventus",
|
|
561
|
-
"languages": ["English"]
|
|
562
|
-
}
|
|
563
|
-
]
|
|
564
|
-
},
|
|
565
|
-
{
|
|
566
|
-
"name": "SIGURA Total Fire & Building Engineering srl.",
|
|
567
|
-
"regions": ["Romania"],
|
|
568
|
-
"address": ["Str. Balta Arin nr. 4A", "Sector 3", "032623 Bucuresti", "Romania"],
|
|
569
|
-
"emails": [
|
|
570
|
-
{
|
|
571
|
-
"address": "sigura@sigura.ro"
|
|
572
|
-
}
|
|
573
|
-
],
|
|
574
|
-
"telephones": [
|
|
575
|
-
{
|
|
576
|
-
"name": "Telephone",
|
|
577
|
-
"number": "(40)-21-312.31.32"
|
|
578
|
-
},
|
|
579
|
-
{
|
|
580
|
-
"name": "Fax",
|
|
581
|
-
"number": "(40)-21-314.45.37"
|
|
582
|
-
}
|
|
583
|
-
],
|
|
584
|
-
"websites": [
|
|
585
|
-
{
|
|
586
|
-
"name": "https://www.sigura.ro",
|
|
587
|
-
"address": "https://www.sigura.ro"
|
|
588
|
-
}
|
|
589
|
-
],
|
|
590
|
-
"products": [
|
|
591
|
-
{
|
|
592
|
-
"name": "Pyrosim",
|
|
593
|
-
"languages": ["English"]
|
|
594
|
-
},
|
|
595
|
-
{
|
|
596
|
-
"name": "Pathfinder",
|
|
597
|
-
"languages": ["English"]
|
|
598
|
-
},
|
|
599
|
-
{
|
|
600
|
-
"name": "Ventus",
|
|
601
|
-
"languages": ["English"]
|
|
602
|
-
}
|
|
603
|
-
]
|
|
604
|
-
},
|
|
605
|
-
{
|
|
606
|
-
"name": "Building System and Diagnostics Pte. Ltd. (BSD)",
|
|
607
|
-
"regions": ["Singapore", "Malaysia", "Indonesia", "Vietnam"],
|
|
608
|
-
"address": ["22 Veerasamy Road", "Singapore 207328", "Singapore"],
|
|
609
|
-
"emails": [
|
|
610
|
-
{
|
|
611
|
-
"address": "info@bsd.com.sg"
|
|
612
|
-
}
|
|
613
|
-
],
|
|
614
|
-
"telephones": [
|
|
615
|
-
{
|
|
616
|
-
"name": "Telephone",
|
|
617
|
-
"number": "(65) 6560 0702"
|
|
618
|
-
},
|
|
619
|
-
{
|
|
620
|
-
"name": "Fax",
|
|
621
|
-
"number": "(65) 6795 0020"
|
|
622
|
-
}
|
|
623
|
-
],
|
|
624
|
-
"websites": [
|
|
625
|
-
{
|
|
626
|
-
"name": "https://www.bsd.com.sg",
|
|
627
|
-
"address": "https://www.bsd.com.sg"
|
|
628
|
-
}
|
|
629
|
-
],
|
|
630
|
-
"products": [
|
|
631
|
-
{
|
|
632
|
-
"name": "Pyrosim",
|
|
633
|
-
"languages": ["English"]
|
|
634
|
-
},
|
|
635
|
-
{
|
|
636
|
-
"name": "Pathfinder",
|
|
637
|
-
"languages": ["English"]
|
|
638
|
-
},
|
|
639
|
-
{
|
|
640
|
-
"name": "Ventus",
|
|
641
|
-
"languages": ["English"]
|
|
642
|
-
}
|
|
643
|
-
]
|
|
644
|
-
},
|
|
645
|
-
{
|
|
646
|
-
"name": "iNCENDIO3D",
|
|
647
|
-
"regions": ["Spain"],
|
|
648
|
-
"address": ["Plaza de Carlos Trias Bertrán, 4", "28020 Madrid", "Spain"],
|
|
649
|
-
"emails": [
|
|
650
|
-
{
|
|
651
|
-
"address": "support@incendio3d.com"
|
|
652
|
-
}
|
|
653
|
-
],
|
|
654
|
-
"telephones": [
|
|
655
|
-
{
|
|
656
|
-
"name": "Telephone",
|
|
657
|
-
"number": "+34 644 266 881"
|
|
658
|
-
}
|
|
659
|
-
],
|
|
660
|
-
"websites": [
|
|
661
|
-
{
|
|
662
|
-
"name": "https://www.incendio3d.com",
|
|
663
|
-
"address": "https://www.incendio3d.com"
|
|
664
|
-
}
|
|
665
|
-
],
|
|
666
|
-
"products": [
|
|
667
|
-
{
|
|
668
|
-
"name": "Pyrosim",
|
|
669
|
-
"languages": ["English", "Spanish"]
|
|
670
|
-
},
|
|
671
|
-
{
|
|
672
|
-
"name": "Pathfinder",
|
|
673
|
-
"languages": ["English", "Spanish"]
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
"name": "Ventus",
|
|
677
|
-
"languages": ["English"]
|
|
678
|
-
}
|
|
679
|
-
]
|
|
680
|
-
},
|
|
681
|
-
{
|
|
682
|
-
"name": "Elfire",
|
|
683
|
-
"regions": ["Brazil"],
|
|
684
|
-
"address": ["Elfire Equipamentos de Segurança", "Av. Reg. Feijó, 944", "Vila Formosa, São Paulo", "SP, 03342-000, Brazil"],
|
|
685
|
-
"emails": [
|
|
686
|
-
{
|
|
687
|
-
"address": "marcio@elfire.com.br"
|
|
688
|
-
}
|
|
689
|
-
],
|
|
690
|
-
"telephones": [
|
|
691
|
-
{
|
|
692
|
-
"name": "Telephone",
|
|
693
|
-
"number": "+55 11 32808097"
|
|
694
|
-
}
|
|
695
|
-
],
|
|
696
|
-
"websites": [
|
|
697
|
-
{
|
|
698
|
-
"name": "https://www.elfire.com.br",
|
|
699
|
-
"address": "https://www.elfire.com.br"
|
|
700
|
-
}
|
|
701
|
-
],
|
|
702
|
-
"products": [
|
|
703
|
-
{
|
|
704
|
-
"name": "Pyrosim",
|
|
705
|
-
"languages": ["English"]
|
|
706
|
-
},
|
|
707
|
-
{
|
|
708
|
-
"name": "Pathfinder",
|
|
709
|
-
"languages": ["English"]
|
|
710
|
-
},
|
|
711
|
-
{
|
|
712
|
-
"name": "Ventus",
|
|
713
|
-
"languages": ["English"]
|
|
714
|
-
}
|
|
715
|
-
]
|
|
716
|
-
},
|
|
717
|
-
{
|
|
718
|
-
"name": "Thunderhead Engineering Consultants, Inc.",
|
|
719
|
-
"regions": ["USA", "All Other Regions"],
|
|
720
|
-
"address": ["403 Poyntz Ave. Suite B", "Manhattan, KS 66502", "USA"],
|
|
721
|
-
"emails": [
|
|
722
|
-
{
|
|
723
|
-
"address": "sales@thunderheadeng.com"
|
|
724
|
-
}
|
|
725
|
-
],
|
|
726
|
-
"telephones": [
|
|
727
|
-
{
|
|
728
|
-
"name": "Telephone",
|
|
729
|
-
"number": "(785) 770-8511"
|
|
730
|
-
},
|
|
731
|
-
{
|
|
732
|
-
"name": "Fax",
|
|
733
|
-
"number": "(785) 770-8511"
|
|
734
|
-
}
|
|
735
|
-
],
|
|
736
|
-
"websites": [
|
|
737
|
-
{
|
|
738
|
-
"name": "https://www.thunderheadeng.com",
|
|
739
|
-
"address": "https://www.thunderheadeng.com"
|
|
740
|
-
}
|
|
741
|
-
],
|
|
742
|
-
"products": [
|
|
743
|
-
{
|
|
744
|
-
"name": "Pyrosim",
|
|
745
|
-
"languages": ["English"]
|
|
746
|
-
},
|
|
747
|
-
{
|
|
748
|
-
"name": "Pathfinder",
|
|
749
|
-
"languages": ["English"]
|
|
750
|
-
},
|
|
751
|
-
{
|
|
752
|
-
"name": "Ventus",
|
|
753
|
-
"languages": ["English"]
|
|
754
|
-
}
|
|
755
|
-
]
|
|
756
|
-
}
|
|
757
|
-
]
|
|
758
|
-
}
|