-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.sql
More file actions
242 lines (232 loc) · 94.4 KB
/
database.sql
File metadata and controls
242 lines (232 loc) · 94.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
-- phpMyAdmin SQL Dump
-- version 4.5.2
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Nov 11, 2016 at 04:04 AM
-- Server version: 5.7.9
-- PHP Version: 5.6.16
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `clouds`
--
-- --------------------------------------------------------
--
-- Table structure for table `cloud`
--
DROP TABLE IF EXISTS `cloud`;
CREATE TABLE IF NOT EXISTS `cloud` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Company` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Region` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Location` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Lat` double NOT NULL,
`Lon` double NOT NULL,
`Website` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Compute` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Compute_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Compute_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Container_Service` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Continer_Service_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Container_Service_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Orchestration_Service` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Orchestration_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Orchestration_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Bare_Metal_Service` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Bare_Metal_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Bare_Metal_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`DNS_Service` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`DNS_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`DNS_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Object_Storage` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Object_Storage_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Object_Storage_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Block_Storage` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Block_Storage_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Block_Storage_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`File_System_Storage` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`File_System_Storage_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`File_System_Storage_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`CDN` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`CDN_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`CDN_Technology_Versio` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`VPC` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`VPC_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`VPC_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Serverless_compute` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Serverless_Compute_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Serverless_Compute_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Relational_Database_Service` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Relational_Database_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Relational_Database_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`NoSQL_Service` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`NoSQL_Service_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`NoSQL_Service_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Auto_Scaling` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Auto_Scaling_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Auto_Scaling_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Load_Balancing` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Load_Balancing_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Load_Balancing_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Archive_Storage` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Archive_Storage_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Archive_Storage_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Direct_Connect` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Direct_Connect_Technology` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`Direct_Connect_Version` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=142 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `cloud`
--
INSERT INTO `cloud` (`id`, `Company`, `Region`, `Location`, `Lat`, `Lon`, `Website`, `Compute`, `Compute_Technology`, `Compute_Version`, `Container_Service`, `Continer_Service_Technology`, `Container_Service_Version`, `Orchestration_Service`, `Orchestration_Technology`, `Orchestration_Version`, `Bare_Metal_Service`, `Bare_Metal_Technology`, `Bare_Metal_Version`, `DNS_Service`, `DNS_Technology`, `DNS_Version`, `Object_Storage`, `Object_Storage_Technology`, `Object_Storage_Version`, `Block_Storage`, `Block_Storage_Technology`, `Block_Storage_Version`, `File_System_Storage`, `File_System_Storage_Technology`, `File_System_Storage_Version`, `CDN`, `CDN_Technology`, `CDN_Technology_Versio`, `VPC`, `VPC_Technology`, `VPC_Version`, `Serverless_compute`, `Serverless_Compute_Technology`, `Serverless_Compute_Version`, `Relational_Database_Service`, `Relational_Database_Technology`, `Relational_Database_Version`, `NoSQL_Service`, `NoSQL_Service_Technology`, `NoSQL_Service_Version`, `Auto_Scaling`, `Auto_Scaling_Technology`, `Auto_Scaling_Version`, `Load_Balancing`, `Load_Balancing_Technology`, `Load_Balancing_Version`, `Archive_Storage`, `Archive_Storage_Technology`, `Archive_Storage_Version`, `Direct_Connect`, `Direct_Connect_Technology`, `Direct_Connect_Version`) VALUES
(1, 'Cloudsuite', 'NL-AMS1', 'Amsterdam, Netherlands', 4.895641, 52.367788, 'https://www.entercloudsuite.com/en/', 'Computing', 'OpenStack Nova', 'Juno', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Juno', '', '', '', 'DNSaaS', 'Unknown', 'Unknown', 'Object Storage', 'OpenStack Swift', 'Juno', 'Block Storage ', 'OpenStack Cinder', 'Juno', '', '', '', 'CDN', 'Unknown', 'Unknown', 'Network', 'OpenStack Neutron', 'Juno', '', '', '', '', '', '', '', '', '', '', '', '', 'LBaaS', 'OpenStack Neutron LBaaS, HA Proxy', 'Juno', '', '', '', '', '', '\r'),
(2, 'Cloudsuite', 'DE-FRA1', 'Frankfurt, Germany', 8.685997, 50.112322, 'https://www.entercloudsuite.com/en/', 'Computing', 'OpenStack Nova', 'Juno', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Juno', '', '', '', 'DNSaaS', 'Unknown', 'Unknown', 'Object Storage', 'OpenStack Swift', 'Juno', 'Block Storage ', 'OpenStack Cinder', 'Juno', '', '', '', 'CDN', 'Unknown', 'Unknown', 'Network', 'OpenStack Neutron', 'Juno', '', '', '', '', '', '', '', '', '', '', '', '', 'LBaaS', 'OpenStack Neutron LBaaS, HA Proxy', 'Juno', '', '', '', '', '', '\r'),
(3, 'Cloudsuite', 'IT-MIL1', 'Milan, Italy', 9.185627, 45.466324, 'https://www.entercloudsuite.com/en/', 'Computing', 'OpenStack Nova', 'Juno', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Juno', '', '', '', 'DNSaaS', 'Unknown', 'Unknown', 'Object Storage', 'OpenStack Swift', 'Juno', 'Block Storage ', 'OpenStack Cinder', 'Juno', '', '', '', 'CDN', 'Unknown', 'Unknown', 'Network', 'OpenStack Neutron', 'Juno', '', '', '', '', '', '', '', '', '', '', '', '', 'LBaaS', 'OpenStack Neutron LBaaS, HA Proxy', 'Juno', '', '', '', '', '', '\r'),
(4, 'Auro', 'Region 2', 'Vancouver, Canada', -123.119099, 49.284331, 'https://auro.io/', 'Auro Compute', 'OpenStack Nova', 'Juno', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Juno', '', '', '', 'DNS', 'Unknown', 'Unknown', 'Auro Public Storage', 'OpenStack Swift', 'Juno', 'Block Storage ', 'OpenStack Cinder', 'Juno', '', '', '', '', '', '', 'VPC', 'OpenStack Neutron', 'Juno', '', '', '', '', '', '', '', '', '', '', '', '', 'LBaaS', 'OpenStack Neutron LBaaS, HA Proxy', 'Juno', '', '', '', '', '', '\r'),
(5, 'Auro', 'Region 3 ', 'Toronto, Canada', -79.384931, 43.653606, 'https://auro.io/', 'Auro Compute', 'OpenStack Nova', 'Juno', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Juno', '', '', '', 'DNS', 'Unknown', 'Unknown', 'Auro Public Storage', 'OpenStack Swift', 'Juno', 'Block Storage ', 'OpenStack Cinder', 'Juno', '', '', '', '', '', '', 'VPC', 'OpenStack Neutron', 'Juno', '', '', '', '', '', '', '', '', '', '', '', '', 'LBaaS', 'OpenStack Neutron LBaaS, HA Proxy', 'Juno', '', '', '', '', '', '\r'),
(6, 'Internap', 'Dallas Data Center', 'Dallas, Texas', -96.797952, 32.775566, 'http://www.internap.com/', 'AgileCLOUD', 'OpenStack Nova', 'Kilo', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Kilo', 'AgileSERVER', 'OpenStack Ironic', 'Kilo', '', '', '', '', 'OpenStack Swift', 'Kilo', 'Persistent Block Storage', 'Unknown', 'Unknown', '', '', '', '', '', '', '', 'OpenStack Neutron', 'Kilo', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(7, 'Internap', 'Secaucus Data Center', 'Secaucus, New Jersey', -74.057478, 40.789677, 'http://www.internap.com/', 'AgileCLOUD', 'OpenStack Nova', 'Kilo', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Kilo', 'AgileSERVER', 'OpenStack Ironic', 'Kilo', '', '', '', '', 'OpenStack Swift', 'Kilo', 'Persistent Block Storage', 'Unknown', 'Unknown', '', '', '', '', '', '', '', 'OpenStack Neutron', 'Kilo', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(8, 'Internap', 'Amsterdam Data Center', 'Amsterdam, Netherlands', 4.895641, 52.367788, 'http://www.internap.com/', 'AgileCLOUD', 'OpenStack Nova', 'Kilo', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Kilo', 'AgileSERVER', 'OpenStack Ironic', 'Kilo', '', '', '', '', 'OpenStack Swift', 'Kilo', 'Persistent Block Storage', 'Unknown', 'Unknown', '', '', '', '', '', '', '', 'OpenStack Neutron', 'Kilo', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(9, 'ukcloud', 'Corsham Data Center', 'Corsham, UK', -2.189833, 51.43167, 'http://ukcloud.com/', 'Nova Compute', 'OpenStack Nova', 'Liberty', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Liberty', '', '', '', '', '', '', '', '', '', 'Cinder Block Storage', 'OpenStack Cinder', 'Liberty', '', '', '', '', '', '', 'Neutron VPC', 'OpenStack Neutron', 'Liberty', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(10, 'ukcloud', 'Farnborough Data Center', 'Farnborough, UK', -0.752963, 51.287392, 'http://ukcloud.com/', 'Nova Compute', 'OpenStack Nova', 'Liberty', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Liberty', '', '', '', '', '', '', '', '', '', 'Cinder Block Storage', 'OpenStack Cinder', 'Liberty', '', '', '', '', '', '', 'Neutron VPC', 'OpenStack Neutron', 'Liberty', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(11, 'Deutche Telekom', 'Magdeburg Germany Data Center', 'Magdeburg, Germany', 11.623979, 52.120403, 'https://cloud.telekom.de/en/', 'Elastic Cloud Server', 'OpenStack Nova', 'Juno', 'Cloud Container Service', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Juno', '', '', '', 'DNS', 'OpenStack Designate', 'Liberty', 'Object Storage Service', '', '', 'Elastic Volume Service', 'OpenStack Cinder', 'Juno', '', '', '', '', '', '', 'Virtual Private Cloud', 'OpenStack Neutron', 'Juno', '', '', '', 'Relational Database Service', 'OpenStack Trove', 'Juno', '', '', '', 'Auto-Scaling', 'Unknown', 'Unknown', 'Elastic Load Balancer', 'OpenStack Neutron LBaaS, HA Proxy', 'Juno', '', '', '', 'Direct Connect', 'Unknown', 'Unknown\r'),
(12, 'Deutche Telekom', 'Biere Germany Data Center', 'Biere, Germany', 11.656188, 51.973979, 'https://cloud.telekom.de/en/', 'Elastic Cloud Server', 'OpenStack Nova', 'Juno', 'Cloud Container Service', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Juno', '', '', '', 'DNS', 'OpenStack Designate', 'Liberty', 'Object Storage Service', '', '', 'Elastic Volume Service', 'OpenStack Cinder', 'Juno', '', '', '', '', '', '', 'Virtual Private Cloud', 'OpenStack Neutron', 'Juno', '', '', '', 'Relational Database Service', 'OpenStack Trove', 'Juno', '', '', '', 'Auto-Scaling', 'Unknown', 'Unknown', 'Elastic Load Balancer', 'OpenStack Neutron LBaaS, HA Proxy', 'Juno', '', '', '', 'Direct Connect', 'Unknown', 'Unknown\r'),
(13, 'UnitedStack', 'Beijing Data Center', 'Beijing, China', 116.390566, 39.912218, 'https://www.ustack.com/', 'Cloud Server', 'OpenStack Nova', 'Icehouse', '', 'Unknown', 'Unknown', '', '', '', '', '', '', '', '', '', 'Object Storage', '', '', 'UOS Block Storage', 'Ceph', 'Unknown', '', '', '', '', '', '', 'VDC virtual network', 'OpenStack Neutron', 'Icehouse', '', '', '', 'Relational Database ', 'MySQL, PostgreSQL', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(14, 'UnitedStack', 'Guangzhou Data Center', 'Guangzhou, China', 113.288236, 23.141768, 'https://www.ustack.com/', 'Cloud Server', 'OpenStack Nova', 'Icehouse', '', 'Unknown', 'Unknown', '', '', '', '', '', '', '', '', '', 'Object Storage', '', '', 'UOS Block Storage', 'Ceph', 'Unknown', '', '', '', '', '', '', 'VDC virtual network', 'OpenStack Neutron', 'Icehouse', '', '', '', 'Relational Database ', 'MySQL, PostgreSQL', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(15, 'Cloudwatt', 'Val-de-Reuil Data Center', 'Val-de-Reuil, France', 1.216996, 49.272972, 'https://www.cloudwatt.com/en/', 'Virtual Server', 'OpenStack Nova', 'Juno', 'Container-as-a-Service', 'OpenStack Magnum', 'Mitaka', 'OpenStack Heat', 'OpenStack Heat', 'Kilo', '', '', '', '', '', '', 'Object Storage', 'OpenStack Swift', 'Juno', 'Block Storage ', 'OpenStack Cinder', 'Juno', '', '', '', '', '', '', 'VPC', 'OpenStack Neutron', 'Juno', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Direct Connect', 'BGP, MPLS', 'Unknown\r'),
(16, 'Cloudwatt', 'Rueil-Malmaison Data Center', 'Rueil-Malmaison, France', 2.180783, 48.869289, 'https://www.cloudwatt.com/en/', 'Virtual Server', 'OpenStack Nova', 'Juno', 'Container-as-a-Service', 'OpenStack Magnum', 'Mitaka', 'OpenStack Heat', 'OpenStack Heat', 'Kilo', '', '', '', '', '', '', 'Object Storage', 'OpenStack Swift', 'Juno', 'Block Storage ', 'OpenStack Cinder', 'Juno', '', '', '', '', '', '', 'VPC', 'OpenStack Neutron', 'Juno', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Direct Connect', 'BGP, MPLS', 'Unknown\r'),
(17, 'KIO Networks', 'Queretaro Data Center', 'Querétaro, Mexico', -99.874877, 20.864701, 'https://kionetworks.com/en/', 'VM', 'OpenStack Nova', 'Havana', '', 'Unknown', 'Unknown', '', '', '', '', '', '', '', '', '', '', 'OpenStack Swift', 'Havana', '', 'OpenStack Cinder', 'Havana', '', '', '', '', '', '', '', 'OpenStack Neutron', 'Havana', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(18, 'Vexxhost', 'Montreal Data Center', 'Montreal, Canada', -73.567174, 45.503281, 'https://vexxhost.com/', 'Cloud Servers', 'OpenStack Nova', 'Mitaka', '', 'Unknown', 'Unknown', '', '', '', '', '', '', 'Cloud DNS', 'OpenStack Designate', 'Mitaka', 'Cloud Object Storage', 'OpenStack Swift', 'Mitaka', '', 'OpenStack Cinder', 'Mitaka', 'Shared Filesystems', 'OpenStack Manila', 'Mitaka', '', '', '', 'Cloud Networks', 'OpenStack Neutron', 'Mitaka', '', '', '', '', '', '', '', '', '', '', '', '', 'Cloud Load Balancers', 'OpenStack Neutron LBaaS, HA Proxy', 'Mitaka', '', '', '', '', '', '\r'),
(19, 'DataCentered', 'Manchester Data Center', 'Manchester, UK', -2.242126, 53.482033, 'http://www.datacentred.co.uk/', 'Instances', 'OpenStack Nova', 'Kilo', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Kilo', '', '', '', '', '', '', 'Object Storage', 'OpenStack Swift', 'Kilo', 'Block Storage', 'OpenStack Cinder', 'Kilo', '', '', '', '', '', '', 'VPC', 'OpenStack Neutron', 'Kilo', '', '', '', '', '', '', '', '', '', '', '', '', 'OpenStack Loadbalancer', 'OpenStack Neutron LBaaS, HA Proxy', 'Kilo', '', '', '', '', '', '\r'),
(20, 'Elastx', 'Bromma Data Centre', 'Bromma, Sweden', 13.800049, 55.470819, 'https://elastx.se/en', 'VM', 'OpenStack Nova', 'Liberty', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Liberty', '', '', '', 'DNS', 'OpenStack Designate', 'Liberty', 'Swift Object Storage', 'OpenStack Swift', 'Liberty', 'Tiered Block Storage', 'OpenStack Cinder', 'Liberty', '', '', '', '', '', '', 'VPC', 'OpenStack Neutron', 'Liberty', '', '', '', '', '', '', '', '', '', '', '', '', 'Loadbalancer', 'OpenStack Neutron LBaaS, HA Proxy', 'Liberty', '', '', '', '', '', '\r'),
(21, 'Elastx', 'Sköndal Data Center', 'Sköndal, Sweden', 18.11902, 59.254839, 'https://elastx.se/en', 'VM', 'OpenStack Nova', 'Liberty', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Liberty', '', '', '', 'DNS', 'OpenStack Designate', 'Liberty', 'Swift Object Storage', 'OpenStack Swift', 'Liberty', 'Tiered Block Storage', 'OpenStack Cinder', 'Liberty', '', '', '', '', '', '', 'VPC', 'OpenStack Neutron', 'Liberty', '', '', '', '', '', '', '', '', '', '', '', '', 'Loadbalancer', 'OpenStack Neutron LBaaS, HA Proxy', 'Liberty', '', '', '', '', '', '\r'),
(22, 'Elastx', 'Lunda Data Center', 'Lunda, Sweden', 13.190958, 55.705249, 'https://elastx.se/en', 'VM', 'OpenStack Nova', 'Liberty', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Liberty', '', '', '', 'DNS', 'OpenStack Designate', 'Liberty', 'Swift Object Storage', 'OpenStack Swift', 'Liberty', 'Tiered Block Storage', 'OpenStack Cinder', 'Liberty', '', '', '', '', '', '', 'VPC', 'OpenStack Neutron', 'Liberty', '', '', '', '', '', '', '', '', '', '', '', '', 'Loadbalancer', 'OpenStack Neutron LBaaS, HA Proxy', 'Liberty', '', '', '', '', '', '\r'),
(23, 'Numergy ', 'Paris Data Center', 'Paris, France', 2.351332, 48.85816, 'https://www.numergy.com/', 'Virtual Machines', 'OpenStack Nova', 'Icehouse', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Icehouse', '', '', '', '', '', '', '', '', '', 'Tiered Block Storage', 'Unknown', 'Unknown', '', '', '', '', '', '', 'VPC', 'OpenStack Neutron', 'Icehouse', '', '', '', 'MS SQL', 'MS SQL', 'Unknown', '', '', '', '', '', '', 'Load Balacing Service', 'OpenStack Neutron LBaaS, HA Proxy', 'Icehouse', '', '', '', '', '', '\r'),
(24, 'Dualtec Public Cloud', 'São Paulo Data Center', 'São Paulo, Brazil', -48.821504, -21.875944, 'http://www.dualtec.com.br/', 'VM', 'OpenStack Nova', 'Icehouse', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Icehouse', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'OpenStack Neutron', 'Icehouse', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(25, 'teutoStack', 'Bielefeld Data Center', 'Bielefeld, Germany', 8.54601, 52.020644, 'https://teutostack.de/', 'VM', 'OpenStack Nova', 'Havana', 'Managed Kubernetes', 'Kubernetes', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Havana', '', '', '', '', '', '', '', '', '', '', 'OpenStack Cinder', 'Havana', '', '', '', '', '', '', '', 'OpenStack Neutron', 'Havana', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(26, 'Cloud&Heat', 'DD2', 'Dresden, Germnay ', 13.743055, 51.060785, 'https://www.cloudandheat.com/en/index.html', 'VM', 'OpenStack Nova', 'Havana', '', 'Unknown', 'Unknown', '', '', '', '', '', '', '', '', '', 'Cloud Object Storage', 'OpenStack Swift', 'Havana', 'Cloud Block Storage', 'OpenStack Cinder', 'Havana', '', '', '', '', '', '', '', 'OpenStack Neutron', 'Havana', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(27, 'Dreamhost', 'US-East 2', 'Ashburn, USA', -77.487142, 39.046816, 'https://www.dreamhost.com/cloud/', 'DreamCompute', 'OpenStack Nova', 'Kilo', '', 'Unknown', 'Unknown', '', '', '', '', '', '', '', '', '', 'DreamObjects', '', '', '', 'OpenStack Cinder', 'Kilo', '', '', '', '', '', '', '', 'OpenStack Neutron', 'Kilo', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(28, 'Citynetwork', 'Los Angelas Data Center', 'Los Angelas, California', -118.238727, 34.056597, 'https://www.citynetwork.se/', 'Cloud Server', 'OpenStack Nova', 'Mitaka', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Mitaka', '', '', '', '', '', '', 'Object Storage', 'OpenStack Swift', 'Mitaka', 'Hard Cloud', 'OpenStack Cinder', 'Mitaka', '', '', '', '', '', '', 'VDC Network', 'OpenStack Neutron', 'Mitaka', '', '', '', 'Relational Database', 'MySQL, PostgreSQL', 'Unknown', '', '', '', '', '', '', 'Load Balancing', 'OpenStack Neutron LBaaS, HA Proxy', 'Mitaka', '', '', '', '', '', '\r'),
(29, 'Citynetwork', 'Buffalo Data Center', 'Buffalo, New York', -78.85025, 42.900996, 'https://www.citynetwork.se/', 'Cloud Server', 'OpenStack Nova', 'Mitaka', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Mitaka', '', '', '', '', '', '', 'Object Storage', 'OpenStack Swift', 'Mitaka', 'Hard Cloud', 'OpenStack Cinder', 'Mitaka', '', '', '', '', '', '', 'VDC Network', 'OpenStack Neutron', 'Mitaka', '', '', '', 'Relational Database', 'MySQL, PostgreSQL', 'Unknown', '', '', '', '', '', '', 'Load Balancing', 'OpenStack Neutron LBaaS, HA Proxy', 'Mitaka', '', '', '', '', '', '\r'),
(30, 'Citynetwork', 'Stockholm Data Center', 'Stockholm, Sweden', 18.068565, 59.331321, 'https://www.citynetwork.se/', 'Cloud Server', 'OpenStack Nova', 'Mitaka', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Mitaka', '', '', '', '', '', '', 'Object Storage', 'OpenStack Swift', 'Mitaka', 'Hard Cloud', 'OpenStack Cinder', 'Mitaka', '', '', '', '', '', '', 'VDC Network', 'OpenStack Neutron', 'Mitaka', '', '', '', 'Relational Database', 'MySQL, PostgreSQL', 'Unknown', '', '', '', '', '', '', 'Load Balancing', 'OpenStack Neutron LBaaS, HA Proxy', 'Mitaka', '', '', '', '', '', '\r'),
(31, 'Citynetwork', 'Karlskrona Data Center', 'Karlskrona, Sweden', 15.586815, 56.161611, 'https://www.citynetwork.se/', 'Cloud Server', 'OpenStack Nova', 'Mitaka', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Mitaka', '', '', '', '', '', '', 'Object Storage', 'OpenStack Swift', 'Mitaka', 'Hard Cloud', 'OpenStack Cinder', 'Mitaka', '', '', '', '', '', '', 'VDC Network', 'OpenStack Neutron', 'Mitaka', '', '', '', 'Relational Database', 'MySQL, PostgreSQL', 'Unknown', '', '', '', '', '', '', 'Load Balancing', 'OpenStack Neutron LBaaS, HA Proxy', 'Mitaka', '', '', '', '', '', '\r'),
(32, 'Citynetwork', 'London Data Center', 'London, England', -0.127697, 51.510186, 'https://www.citynetwork.se/', 'Cloud Server', 'OpenStack Nova', 'Mitaka', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Mitaka', '', '', '', '', '', '', 'Object Storage', 'OpenStack Swift', 'Mitaka', 'Hard Cloud', 'OpenStack Cinder', 'Mitaka', '', '', '', '', '', '', 'VDC Network', 'OpenStack Neutron', 'Mitaka', '', '', '', 'Relational Database', 'MySQL, PostgreSQL', 'Unknown', '', '', '', '', '', '', 'Load Balancing', 'OpenStack Neutron LBaaS, HA Proxy', 'Mitaka', '', '', '', '', '', '\r'),
(33, 'Citynetwork', 'Frankfurt Data Center', 'Frankfurt, Germany', 8.682564, 50.11012, 'https://www.citynetwork.se/', 'Cloud Server', 'OpenStack Nova', 'Mitaka', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Mitaka', '', '', '', '', '', '', 'Object Storage', 'OpenStack Swift', 'Mitaka', 'Hard Cloud', 'OpenStack Cinder', 'Mitaka', '', '', '', '', '', '', 'VDC Network', 'OpenStack Neutron', 'Mitaka', '', '', '', 'Relational Database', 'MySQL, PostgreSQL', 'Unknown', '', '', '', '', '', '', 'Load Balancing', 'OpenStack Neutron LBaaS, HA Proxy', 'Mitaka', '', '', '', '', '', '\r'),
(34, 'OVH ', 'Beauharnois', 'Montreal, Quebec', -73.567829, 45.502166, 'https://www.ovh.com/', 'Instances', 'OpenStack Nova', 'Juno', '', 'Unknown', 'Unknown', '', '', '', '', '', '', '', '', '', 'Object Storage ', 'OpenStack Swift', 'Juno', 'Volumes', 'OpenStack Cinder', 'Kilo', '', '', '', '', '', '', 'vRack ', 'OpenStack Neutron', 'Juno', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing IP', 'OpenStack Neutron LBaaS, HA Proxy', 'Juno', '', '', '', 'Dedicated Connect', 'Unknown', 'Unknown\r'),
(35, 'OVH ', 'Gravelines', 'Gravelines, France', 2.143682, 50.995594, 'https://www.ovh.com/', 'Instances', 'OpenStack Nova', 'Juno', '', 'Unknown', 'Unknown', '', '', '', '', '', '', '', '', '', 'Object Storage ', 'OpenStack Swift', 'Juno', 'Volumes', 'OpenStack Cinder', 'Kilo', '', '', '', '', '', '', 'vRack ', 'OpenStack Neutron', 'Juno', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing IP', 'OpenStack Neutron LBaaS, HA Proxy', 'Juno', '', '', '', 'Dedicated Connect', 'Unknown', 'Unknown\r'),
(36, 'OVH ', 'Strasbourg', 'Strasbourg, France', 7.755913, 48.576589, 'https://www.ovh.com/', 'Instances', 'OpenStack Nova', 'Juno', '', 'Unknown', 'Unknown', '', '', '', '', '', '', '', '', '', 'Object Storage ', 'OpenStack Swift', 'Juno', 'Volumes', 'OpenStack Cinder', 'Kilo', '', '', '', '', '', '', 'vRack ', 'OpenStack Neutron', 'Juno', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing IP', 'OpenStack Neutron LBaaS, HA Proxy', 'Juno', '', '', '', 'Dedicated Connect', 'Unknown', 'Unknown\r'),
(37, 'Ultimum Technologies', 'Prague Data Center', 'Prague, Czech Republic', 14.435141, 50.076196, 'http://ultimum.io/', 'VM', 'OpenStack Nova', 'Juno', '', 'Unknown', 'Unknown', 'OpenStack Heat', 'OpenStack Heat', 'Juno', '', '', '', '', '', '', '', '', '', '', 'OpenStack Cinder', 'Juno', '', '', '', '', '', '', '', 'OpenStack Neutron', 'Juno', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Juno', '', '', '', '', '', '\r'),
(38, 'Cloud-A ', 'CA-NS-1', 'Halifax, Canada', -63.575111, 44.648737, 'https://www.clouda.ca/', 'Instances', 'OpenStack Nova', '', '', 'Unknown', 'Unknown', '', '', '', '', '', '', '', '', '', 'Bulk Storage', '', '', 'Block Storage', 'OpenStack Cinder', 'Unknown', '', '', '', '', '', '', 'VPC Networking', 'OpenStack Neutron', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'LBaaS', 'OpenStack Neutron LBaaS, HA Proxy', 'Unknown', '', '', '', '', '', '\r'),
(39, 'Cloud-A ', 'CA-BC-1', 'Vancouver, Canada', -123.111889, 49.26462, 'https://www.clouda.ca/', 'Instances', 'OpenStack Nova', '', '', 'Unknown', 'Unknown', '', '', '', '', '', '', '', '', '', 'Bulk Storage', '', '', 'Block Storage', 'OpenStack Cinder', 'Unknown', '', '', '', '', '', '', 'VPC Networking', 'OpenStack Neutron', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'LBaaS', 'OpenStack Neutron LBaaS, HA Proxy', 'Unknown', '', '', '', '', '', '\r'),
(40, 'cloud.ca', 'Montreal Data Center', 'Montreal, Canada', -73.568547, 45.511943, 'https://cloud.ca/', 'Compute', '', '', '', 'Unknown', 'Unknown', '', '', '', '', '', '', '', '', '', 'Object Storage', '', '', 'Block Storage', '', '', '', '', '', '', '', '', 'Multi-Tier VPC', 'Unknown', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing Basic and Enterprise', 'Unknown', 'Unknown', '', '', '', '', '', '\r'),
(41, 'DigitalOcean', 'AMS1', 'Amsterdam, Netherlands', 4.88488, 52.37501, 'https://www.digitalocean.com/', 'Droplets', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'SSD Block Storage ', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Private Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(42, 'DigitalOcean', 'AMS2', 'Amsterdam, Netherlands', 4.88488, 52.37501, 'https://www.digitalocean.com/', 'Droplets', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'SSD Block Storage ', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Private Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(43, 'DigitalOcean', 'AMS3', 'Amsterdam, Netherlands', 4.88488, 52.37501, 'https://www.digitalocean.com/', 'Droplets', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'SSD Block Storage ', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Private Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(44, 'DigitalOcean', 'BLR1', 'Bangalore, India', 77.590419, 12.986078, 'https://www.digitalocean.com/', 'Droplets', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'SSD Block Storage ', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Private Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(45, 'DigitalOcean', 'FRA1', 'Frankfurt, Germany', 8.682564, 50.11012, 'https://www.digitalocean.com/', 'Droplets', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'SSD Block Storage ', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Private Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(46, 'DigitalOcean', 'LON1', 'Sydney, Austrailia', 151.014342, -33.827442, 'https://www.digitalocean.com/', 'Droplets', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'SSD Block Storage ', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Private Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(47, 'DigitalOcean', 'NYC1', 'New York, New York', -73.902479, 40.721699, 'https://www.digitalocean.com/', 'Droplets', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'SSD Block Storage ', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Private Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(48, 'DigitalOcean', 'NYC2', 'New York, New York', -73.902479, 40.721699, 'https://www.digitalocean.com/', 'Droplets', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'SSD Block Storage ', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Private Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(49, 'DigitalOcean', 'NYC3', 'New York, New York', -73.902479, 40.721699, 'https://www.digitalocean.com/', 'Droplets', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'SSD Block Storage ', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Private Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(50, 'DigitalOcean', 'SFO1', 'San Francisco, California', -122.442235, 37.753759, 'https://www.digitalocean.com/', 'Droplets', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'SSD Block Storage ', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Private Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(51, 'DigitalOcean', 'SFO2', 'San Francisco, California', -122.444227, 37.756532, 'https://www.digitalocean.com/', 'Droplets', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'SSD Block Storage ', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Private Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(52, 'DigitalOcean', 'SGP1', 'Singapore', 103.86384, 1.352485, 'https://www.digitalocean.com/', 'Droplets', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'SSD Block Storage ', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Private Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(53, 'DigitalOcean', 'TOR1', 'Toronto, Canada', -79.393171, 43.68291, 'https://www.digitalocean.com/', 'Droplets', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'SSD Block Storage ', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Private Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '\r'),
(54, 'Amazon Web Services', 'us-east-1', 'N. Virginia', -119.883471, 39.616157, 'https://aws.amazon.com/', 'EC2', 'Proprietary', 'Unknown', 'EC2 Container Service', 'Proprietary', 'Unknown', 'CloudFormation', 'Proprietary', 'Unknown', '', '', '', 'Route 53', 'Proprietary', 'Unknown', 'S3', 'Proprietary', 'Unknown', 'Elastic Block Storage', 'Proprietary', 'Unknown', 'Elastic File System', 'Proprietary', 'Unknown', 'CloudFront', 'Proprietary', 'Unknown', 'Virtual Private Cloud', 'Proprietary', 'Unknown', 'Lambda', 'Proprietary', 'Unknown', 'Relational Database Service', 'Proprietary', 'Unknown', 'DynamoDB', 'Proprietary', 'Unknown', 'Auto Scaling', 'Proprietary', 'Unknown', 'Elastic Load Balancing', 'Proprietary', 'Unknown', 'Glacier', 'Proprietary', 'Unknown', 'AWS Direct Connect', 'Proprietary', 'Unknown\r'),
(55, 'Amazon Web Services', 'us-east-2', 'Ohio', -82.823475, 40.377724, 'https://aws.amazon.com/', 'EC2', 'Proprietary', 'Unknown', 'EC2 Container Service', 'Proprietary', 'Unknown', 'CloudFormation', 'Proprietary', 'Unknown', '', '', '', 'Route 53', 'Proprietary', 'Unknown', 'S3', 'Proprietary', 'Unknown', 'Elastic Block Storage', 'Proprietary', 'Unknown', 'Elastic File System', 'Proprietary', 'Unknown', 'CloudFront', 'Proprietary', 'Unknown', 'Virtual Private Cloud', 'Proprietary', 'Unknown', 'Lambda', 'Proprietary', 'Unknown', 'Relational Database Service', 'Proprietary', 'Unknown', 'DynamoDB', 'Proprietary', 'Unknown', 'Auto Scaling', 'Proprietary', 'Unknown', 'Elastic Load Balancing', 'Proprietary', 'Unknown', 'Glacier', 'Proprietary', 'Unknown', 'AWS Direct Connect', 'Proprietary', 'Unknown\r'),
(56, 'Amazon Web Services', 'us-west-1', 'Northern California', -120.868837, 38.953616, 'https://aws.amazon.com/', 'EC2', 'Proprietary', 'Unknown', 'EC2 Container Service', 'Proprietary', 'Unknown', 'CloudFormation', 'Proprietary', 'Unknown', '', '', '', 'Route 53', 'Proprietary', 'Unknown', 'S3', 'Proprietary', 'Unknown', 'Elastic Block Storage', 'Proprietary', 'Unknown', 'Elastic File System', 'Proprietary', 'Unknown', 'CloudFront', 'Proprietary', 'Unknown', 'Virtual Private Cloud', 'Proprietary', 'Unknown', 'Lambda', 'Proprietary', 'Unknown', 'Relational Database Service', 'Proprietary', 'Unknown', 'DynamoDB', 'Proprietary', 'Unknown', 'Auto Scaling', 'Proprietary', 'Unknown', 'Elastic Load Balancing', 'Proprietary', 'Unknown', 'Glacier', 'Proprietary', 'Unknown', 'AWS Direct Connect', 'Proprietary', 'Unknown\r'),
(57, 'Amazon Web Services', 'us-west-2', 'Oregon', -120.704256, 44.033146, 'https://aws.amazon.com/', 'EC2', 'Proprietary', 'Unknown', 'EC2 Container Service', 'Proprietary', 'Unknown', 'CloudFormation', 'Proprietary', 'Unknown', '', '', '', 'Route 53', 'Proprietary', 'Unknown', 'S3', 'Proprietary', 'Unknown', 'Elastic Block Storage', 'Proprietary', 'Unknown', 'Elastic File System', 'Proprietary', 'Unknown', 'CloudFront', 'Proprietary', 'Unknown', 'Virtual Private Cloud', 'Proprietary', 'Unknown', 'Lambda', 'Proprietary', 'Unknown', 'Relational Database Service', 'Proprietary', 'Unknown', 'DynamoDB', 'Proprietary', 'Unknown', 'Auto Scaling', 'Proprietary', 'Unknown', 'Elastic Load Balancing', 'Proprietary', 'Unknown', 'Glacier', 'Proprietary', 'Unknown', 'AWS Direct Connect', 'Proprietary', 'Unknown\r'),
(58, 'Amazon Web Services', 'ap-south-1', 'Mumbai, India', 72.878449, 19.092503, 'https://aws.amazon.com/', 'EC2', 'Proprietary', 'Unknown', 'EC2 Container Service', 'Proprietary', 'Unknown', 'CloudFormation', 'Proprietary', 'Unknown', '', '', '', 'Route 53', 'Proprietary', 'Unknown', 'S3', 'Proprietary', 'Unknown', 'Elastic Block Storage', 'Proprietary', 'Unknown', 'Elastic File System', 'Proprietary', 'Unknown', 'CloudFront', 'Proprietary', 'Unknown', 'Virtual Private Cloud', 'Proprietary', 'Unknown', 'Lambda', 'Proprietary', 'Unknown', 'Relational Database Service', 'Proprietary', 'Unknown', 'DynamoDB', 'Proprietary', 'Unknown', 'Auto Scaling', 'Proprietary', 'Unknown', 'Elastic Load Balancing', 'Proprietary', 'Unknown', 'Glacier', 'Proprietary', 'Unknown', 'AWS Direct Connect', 'Proprietary', 'Unknown\r'),
(59, 'Amazon Web Services', 'ap-northeast-2', 'Seoul, South Korea', 126.991603, 37.538887, 'https://aws.amazon.com/', 'EC2', 'Proprietary', 'Unknown', 'EC2 Container Service', 'Proprietary', 'Unknown', 'CloudFormation', 'Proprietary', 'Unknown', '', '', '', 'Route 53', 'Proprietary', 'Unknown', 'S3', 'Proprietary', 'Unknown', 'Elastic Block Storage', 'Proprietary', 'Unknown', 'Elastic File System', 'Proprietary', 'Unknown', 'CloudFront', 'Proprietary', 'Unknown', 'Virtual Private Cloud', 'Proprietary', 'Unknown', 'Lambda', 'Proprietary', 'Unknown', 'Relational Database Service', 'Proprietary', 'Unknown', 'DynamoDB', 'Proprietary', 'Unknown', 'Auto Scaling', 'Proprietary', 'Unknown', 'Elastic Load Balancing', 'Proprietary', 'Unknown', 'Glacier', 'Proprietary', 'Unknown', 'AWS Direct Connect', 'Proprietary', 'Unknown\r'),
(60, 'Amazon Web Services', 'ap-southeast-1', 'Singapore', 103.86384, 1.352485, 'https://aws.amazon.com/', 'EC2', 'Proprietary', 'Unknown', 'EC2 Container Service', 'Proprietary', 'Unknown', 'CloudFormation', 'Proprietary', 'Unknown', '', '', '', 'Route 53', 'Proprietary', 'Unknown', 'S3', 'Proprietary', 'Unknown', 'Elastic Block Storage', 'Proprietary', 'Unknown', 'Elastic File System', 'Proprietary', 'Unknown', 'CloudFront', 'Proprietary', 'Unknown', 'Virtual Private Cloud', 'Proprietary', 'Unknown', 'Lambda', 'Proprietary', 'Unknown', 'Relational Database Service', 'Proprietary', 'Unknown', 'DynamoDB', 'Proprietary', 'Unknown', 'Auto Scaling', 'Proprietary', 'Unknown', 'Elastic Load Balancing', 'Proprietary', 'Unknown', 'Glacier', 'Proprietary', 'Unknown', 'AWS Direct Connect', 'Proprietary', 'Unknown\r'),
(61, 'Amazon Web Services', 'ap-southeast-2', 'Sydney, Austrailia', 151.050048, -33.8628, 'https://aws.amazon.com/', 'EC2', 'Proprietary', 'Unknown', 'EC2 Container Service', 'Proprietary', 'Unknown', 'CloudFormation', 'Proprietary', 'Unknown', '', '', '', 'Route 53', 'Proprietary', 'Unknown', 'S3', 'Proprietary', 'Unknown', 'Elastic Block Storage', 'Proprietary', 'Unknown', 'Elastic File System', 'Proprietary', 'Unknown', 'CloudFront', 'Proprietary', 'Unknown', 'Virtual Private Cloud', 'Proprietary', 'Unknown', 'Lambda', 'Proprietary', 'Unknown', 'Relational Database Service', 'Proprietary', 'Unknown', 'DynamoDB', 'Proprietary', 'Unknown', 'Auto Scaling', 'Proprietary', 'Unknown', 'Elastic Load Balancing', 'Proprietary', 'Unknown', 'Glacier', 'Proprietary', 'Unknown', 'AWS Direct Connect', 'Proprietary', 'Unknown\r'),
(62, 'Amazon Web Services', 'ap-northeast-1', 'Tokyo, Japan', 139.682804, 35.720616, 'https://aws.amazon.com/', 'EC2', 'Proprietary', 'Unknown', 'EC2 Container Service', 'Proprietary', 'Unknown', 'CloudFormation', 'Proprietary', 'Unknown', '', '', '', 'Route 53', 'Proprietary', 'Unknown', 'S3', 'Proprietary', 'Unknown', 'Elastic Block Storage', 'Proprietary', 'Unknown', 'Elastic File System', 'Proprietary', 'Unknown', 'CloudFront', 'Proprietary', 'Unknown', 'Virtual Private Cloud', 'Proprietary', 'Unknown', 'Lambda', 'Proprietary', 'Unknown', 'Relational Database Service', 'Proprietary', 'Unknown', 'DynamoDB', 'Proprietary', 'Unknown', 'Auto Scaling', 'Proprietary', 'Unknown', 'Elastic Load Balancing', 'Proprietary', 'Unknown', 'Glacier', 'Proprietary', 'Unknown', 'AWS Direct Connect', 'Proprietary', 'Unknown\r'),
(63, 'Amazon Web Services', 'eu-central-1', 'Frankfurt, Germany', 8.683168, 50.113966, 'https://aws.amazon.com/', 'EC2', 'Proprietary', 'Unknown', 'EC2 Container Service', 'Proprietary', 'Unknown', 'CloudFormation', 'Proprietary', 'Unknown', '', '', '', 'Route 53', 'Proprietary', 'Unknown', 'S3', 'Proprietary', 'Unknown', 'Elastic Block Storage', 'Proprietary', 'Unknown', 'Elastic File System', 'Proprietary', 'Unknown', 'CloudFront', 'Proprietary', 'Unknown', 'Virtual Private Cloud', 'Proprietary', 'Unknown', 'Lambda', 'Proprietary', 'Unknown', 'Relational Database Service', 'Proprietary', 'Unknown', 'DynamoDB', 'Proprietary', 'Unknown', 'Auto Scaling', 'Proprietary', 'Unknown', 'Elastic Load Balancing', 'Proprietary', 'Unknown', 'Glacier', 'Proprietary', 'Unknown', 'AWS Direct Connect', 'Proprietary', 'Unknown\r'),
(64, 'Amazon Web Services', 'eu-west-1', 'Ireland', -8.15711, 53.275346, 'https://aws.amazon.com/', 'EC2', 'Proprietary', 'Unknown', 'EC2 Container Service', 'Proprietary', 'Unknown', 'CloudFormation', 'Proprietary', 'Unknown', '', '', '', 'Route 53', 'Proprietary', 'Unknown', 'S3', 'Proprietary', 'Unknown', 'Elastic Block Storage', 'Proprietary', 'Unknown', 'Elastic File System', 'Proprietary', 'Unknown', 'CloudFront', 'Proprietary', 'Unknown', 'Virtual Private Cloud', 'Proprietary', 'Unknown', 'Lambda', 'Proprietary', 'Unknown', 'Relational Database Service', 'Proprietary', 'Unknown', 'DynamoDB', 'Proprietary', 'Unknown', 'Auto Scaling', 'Proprietary', 'Unknown', 'Elastic Load Balancing', 'Proprietary', 'Unknown', 'Glacier', 'Proprietary', 'Unknown', 'AWS Direct Connect', 'Proprietary', 'Unknown\r'),
(65, 'Amazon Web Services', 'sa-east-1', 'São Paulo, Brazil', -48.843477, -21.794359, 'https://aws.amazon.com/', 'EC2', 'Proprietary', 'Unknown', 'EC2 Container Service', 'Proprietary', 'Unknown', 'CloudFormation', 'Proprietary', 'Unknown', '', '', '', 'Route 53', 'Proprietary', 'Unknown', 'S3', 'Proprietary', 'Unknown', 'Elastic Block Storage', 'Proprietary', 'Unknown', 'Elastic File System', 'Proprietary', 'Unknown', 'CloudFront', 'Proprietary', 'Unknown', 'Virtual Private Cloud', 'Proprietary', 'Unknown', 'Lambda', 'Proprietary', 'Unknown', 'Relational Database Service', 'Proprietary', 'Unknown', 'DynamoDB', 'Proprietary', 'Unknown', 'Auto Scaling', 'Proprietary', 'Unknown', 'Elastic Load Balancing', 'Proprietary', 'Unknown', 'Glacier', 'Proprietary', 'Unknown', 'AWS Direct Connect', 'Proprietary', 'Unknown\r'),
(66, 'Microsoft Azure', 'East US', 'Virginia', -78.47172, 37.556544, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(67, 'Microsoft Azure', 'East US 2', 'Virginia', -78.47172, 37.556544, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(68, 'Microsoft Azure', 'Central US', 'Iowa', -93.576961, 42.189795, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(69, 'Microsoft Azure', 'North Central US', 'Illinois', -89.571666, 40.348621, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(70, 'Microsoft Azure', 'South Central US', 'Texas', -99.052795, 32.046114, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(71, 'Microsoft Azure', 'West Central US', 'West Central US', -97.538315, 37.734538, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(72, 'Microsoft Azure', 'West US', 'California', -119.675545, 36.377581, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(73, 'Microsoft Azure', 'West US 2', 'West US 2', -81.002119, 39.558893, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(74, 'Microsoft Azure', 'US Gov Virginia', 'Virginia', -78.47172, 37.556544, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(75, 'Microsoft Azure', 'US Gov Iowa', 'Iowa', -93.576961, 42.189795, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(76, 'Microsoft Azure', 'Canada East', 'Quebéc City, Canada', -71.20875, 46.815647, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(77, 'Microsoft Azure', 'Canada Central', 'Toronto, Canada', -79.393171, 43.68291, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(78, 'Microsoft Azure', 'Brazil South', 'São Paulo State', -48.843477, -21.794359, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(79, 'Microsoft Azure', 'North Europe', 'Ireland', -8.15711, 53.275346, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(80, 'Microsoft Azure', 'West Europe', 'Netherlands', 5.169224, 51.788308, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r');
INSERT INTO `cloud` (`id`, `Company`, `Region`, `Location`, `Lat`, `Lon`, `Website`, `Compute`, `Compute_Technology`, `Compute_Version`, `Container_Service`, `Continer_Service_Technology`, `Container_Service_Version`, `Orchestration_Service`, `Orchestration_Technology`, `Orchestration_Version`, `Bare_Metal_Service`, `Bare_Metal_Technology`, `Bare_Metal_Version`, `DNS_Service`, `DNS_Technology`, `DNS_Version`, `Object_Storage`, `Object_Storage_Technology`, `Object_Storage_Version`, `Block_Storage`, `Block_Storage_Technology`, `Block_Storage_Version`, `File_System_Storage`, `File_System_Storage_Technology`, `File_System_Storage_Version`, `CDN`, `CDN_Technology`, `CDN_Technology_Versio`, `VPC`, `VPC_Technology`, `VPC_Version`, `Serverless_compute`, `Serverless_Compute_Technology`, `Serverless_Compute_Version`, `Relational_Database_Service`, `Relational_Database_Technology`, `Relational_Database_Version`, `NoSQL_Service`, `NoSQL_Service_Technology`, `NoSQL_Service_Version`, `Auto_Scaling`, `Auto_Scaling_Technology`, `Auto_Scaling_Version`, `Load_Balancing`, `Load_Balancing_Technology`, `Load_Balancing_Version`, `Archive_Storage`, `Archive_Storage_Technology`, `Archive_Storage_Version`, `Direct_Connect`, `Direct_Connect_Technology`, `Direct_Connect_Version`) VALUES
(81, 'Microsoft Azure', 'Germany Central', 'Frankfurt, Germany', 8.683168, 50.113966, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(82, 'Microsoft Azure', 'Germany Northeast', 'Magdeburg, Germany', 11.631379, 52.124044, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(83, 'Microsoft Azure', 'UK West', 'Cardiff', -3.179155, 51.483409, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(84, 'Microsoft Azure', 'UK South', 'London, England', -0.12907, 51.507622, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(85, 'Microsoft Azure', 'Southeast Asia', 'Singapore', 103.865213, 1.352828, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(86, 'Microsoft Azure', 'East Asia', 'Hong Kong, China', 114.188988, 22.276946, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(87, 'Microsoft Azure', 'Australia East', 'New South Wales', 146.036396, -32.528869, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(88, 'Microsoft Azure', 'Australia Southeast', 'Victoria, Austrailia', 144.159933, -37.067753, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(89, 'Microsoft Azure', 'Central India', 'Pune, India', 73.856099, 18.520046, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(90, 'Microsoft Azure', 'West India', 'Mumbai, India', 72.877076, 19.080823, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(91, 'Microsoft Azure', 'South India', 'Chennai, India', 80.266681, 13.088992, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(92, 'Microsoft Azure', 'Japan East', 'Tokyo, Saitama', 139.635071, 35.875908, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(93, 'Microsoft Azure', 'Japan West', 'Osaka, Japan', 135.506994, 34.697592, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(94, 'Microsoft Azure', 'China East', 'Shanghai, China', 121.478096, 31.265139, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(95, 'Microsoft Azure', 'China North', 'Beijing, China', 116.398805, 39.919591, 'https://azure.microsoft.com/', 'Azure VM', 'Proprietary', 'Unknown', 'Azure Container Service', 'Proprietary', 'Unknown', 'Azure Automation', 'Proprietary', 'Unknown', '', '', '', 'Azure DNS', 'Proprietary', 'Unknown', 'Blob Storage', 'Proprietary', 'Unknown', 'Azure Block Storage', 'Proprietary', 'Unknown', 'File Storage', 'Proprietary', 'Unknown', 'CDN', 'Proprietary', 'Unknown', 'Virtual Network', 'Proprietary', 'Unknown', 'Azure Functions ', 'Proprietary', 'Unknown', 'SQL Database', 'Proprietary', 'Unknown', 'DocumentDB', 'Proprietary', 'Unknown', 'Azure Autoscale', 'Proprietary', 'Unknown', 'Load Balancer', 'Proprietary', 'Unknown', '', '', '', 'ExpressRoute', 'Proprietary', 'Unknown\r'),
(96, 'Google Cloud Platform', 'us-central1', 'Council Bluffs, IA', -95.860414, 41.262784, 'https://cloud.google.com/', 'Compute Engine', 'Proprietary', 'Unknown', 'Container Engine', 'Proprietary', 'Unknown', 'Cloud Deployment Manager', 'Proprietary', 'Unknown', '', '', '', 'Cloud DNS', 'Proprietary', 'Unknown', 'Cloud Storage', 'Proprietary', 'Unknown', 'Persistant Disk', 'Proprietary', 'Unknown', '', '', '', 'Cloud CDN', 'Proprietary', 'Unknown', 'Cloud Virtual Network', 'Proprietary', 'Unknown', 'Cloud Functions', 'Proprietary', 'Unknown', 'Cloud SQL', 'Proprietary', 'Unknown', 'Cloud Datastore', 'Proprietary', 'Unknown', 'Autoscaling Groups', 'Proprietary', 'Unknown', 'Cloud Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Cloud Interconnect', 'Proprietary', 'Unknown\r'),
(97, 'Google Cloud Platform', 'us-east1', 'Berkeley County, SC ', -79.891985, 33.161427, 'https://cloud.google.com/', 'Compute Engine', 'Proprietary', 'Unknown', 'Container Engine', 'Proprietary', 'Unknown', 'Cloud Deployment Manager', 'Proprietary', 'Unknown', '', '', '', 'Cloud DNS', 'Proprietary', 'Unknown', 'Cloud Storage', 'Proprietary', 'Unknown', 'Persistant Disk', 'Proprietary', 'Unknown', '', '', '', 'Cloud CDN', 'Proprietary', 'Unknown', 'Cloud Virtual Network', 'Proprietary', 'Unknown', 'Cloud Functions', 'Proprietary', 'Unknown', 'Cloud SQL', 'Proprietary', 'Unknown', 'Cloud Datastore', 'Proprietary', 'Unknown', 'Autoscaling Groups', 'Proprietary', 'Unknown', 'Cloud Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Cloud Interconnect', 'Proprietary', 'Unknown\r'),
(98, 'Google Cloud Platform', 'us-west1', 'The Dalles, OR', -121.178925, 45.595248, 'https://cloud.google.com/', 'Compute Engine', 'Proprietary', 'Unknown', 'Container Engine', 'Proprietary', 'Unknown', 'Cloud Deployment Manager', 'Proprietary', 'Unknown', '', '', '', 'Cloud DNS', 'Proprietary', 'Unknown', 'Cloud Storage', 'Proprietary', 'Unknown', 'Persistant Disk', 'Proprietary', 'Unknown', '', '', '', 'Cloud CDN', 'Proprietary', 'Unknown', 'Cloud Virtual Network', 'Proprietary', 'Unknown', 'Cloud Functions', 'Proprietary', 'Unknown', 'Cloud SQL', 'Proprietary', 'Unknown', 'Cloud Datastore', 'Proprietary', 'Unknown', 'Autoscaling Groups', 'Proprietary', 'Unknown', 'Cloud Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Cloud Interconnect', 'Proprietary', 'Unknown\r'),
(99, 'Google Cloud Platform', 'europe-west1', 'St. Ghislain, Belgium ', 3.794872, 50.483052, 'https://cloud.google.com/', 'Compute Engine', 'Proprietary', 'Unknown', 'Container Engine', 'Proprietary', 'Unknown', 'Cloud Deployment Manager', 'Proprietary', 'Unknown', '', '', '', 'Cloud DNS', 'Proprietary', 'Unknown', 'Cloud Storage', 'Proprietary', 'Unknown', 'Persistant Disk', 'Proprietary', 'Unknown', '', '', '', 'Cloud CDN', 'Proprietary', 'Unknown', 'Cloud Virtual Network', 'Proprietary', 'Unknown', 'Cloud Functions', 'Proprietary', 'Unknown', 'Cloud SQL', 'Proprietary', 'Unknown', 'Cloud Datastore', 'Proprietary', 'Unknown', 'Autoscaling Groups', 'Proprietary', 'Unknown', 'Cloud Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Cloud Interconnect', 'Proprietary', 'Unknown\r'),
(100, 'Google Cloud Platform', 'asia-east1', 'Changhua County, Taiwan ', 120.495566, 23.949287, 'https://cloud.google.com/', 'Compute Engine', 'Proprietary', 'Unknown', 'Container Engine', 'Proprietary', 'Unknown', 'Cloud Deployment Manager', 'Proprietary', 'Unknown', '', '', '', 'Cloud DNS', 'Proprietary', 'Unknown', 'Cloud Storage', 'Proprietary', 'Unknown', 'Persistant Disk', 'Proprietary', 'Unknown', '', '', '', 'Cloud CDN', 'Proprietary', 'Unknown', 'Cloud Virtual Network', 'Proprietary', 'Unknown', 'Cloud Functions', 'Proprietary', 'Unknown', 'Cloud SQL', 'Proprietary', 'Unknown', 'Cloud Datastore', 'Proprietary', 'Unknown', 'Autoscaling Groups', 'Proprietary', 'Unknown', 'Cloud Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Cloud Interconnect', 'Proprietary', 'Unknown\r'),
(101, 'Rackspace', 'Chicago', 'Chicago, Illinois', 80.266681, 13.088992, 'https://www.rackspace.com/openstack/public', 'Virtual Cloud Servers', 'OpenStack Nova', 'Icehouse', 'Carina', 'Docker Swarm', 'Unknown', 'Orchestration', 'OpenStack Heat', 'Unknown', 'OnMetal Cloud Servers', 'Unknown', 'Unknown', 'Cloud DNS', 'Proprietary', 'Unknown', 'Cloud Files', 'OpenStack Swift', 'Icehouse', 'Cloud Block Storage', 'Proprietary', 'Unknown', '', '', '', 'Cloud CDN', 'Akamai', 'Unknown', 'Cloud Network', 'Proprietary', 'Unknown', '', '', '', 'Cloud Database', 'Proprietary', 'Unknown', 'Object Rocket', 'Proprietary', 'Unknown', 'Autoscale', 'Proprietary', 'Unknown', 'Cloud Load Balancer', 'Proprietary', 'Unknown', '', '', '', '', '', '\r'),
(102, 'Rackspace', 'Dallas', 'Dallas, Texas', -96.797952, 32.775566, 'https://www.rackspace.com/openstack/public', 'Virtual Cloud Servers', 'OpenStack Nova', 'Icehouse', 'Carina', 'Docker Swarm', 'Unknown', 'Orchestration', 'OpenStack Heat', 'Unknown', 'OnMetal Cloud Servers', 'Unknown', 'Unknown', 'Cloud DNS', 'Proprietary', 'Unknown', 'Cloud Files', 'OpenStack Swift', 'Icehouse', 'Cloud Block Storage', 'Proprietary', 'Unknown', '', '', '', 'Cloud CDN', 'Akamai', 'Unknown', 'Cloud Network', 'Proprietary', 'Unknown', '', '', '', 'Cloud Database', 'Proprietary', 'Unknown', 'Object Rocket', 'Proprietary', 'Unknown', 'Autoscale', 'Proprietary', 'Unknown', 'Cloud Load Balancer', 'Proprietary', 'Unknown', '', '', '', '', '', '\r'),
(103, 'Rackspace', 'Northern Virginia', 'Northern Virginia', -81.492984, 37.210501, 'https://www.rackspace.com/openstack/public', 'Virtual Cloud Servers', 'OpenStack Nova', 'Icehouse', 'Carina', 'Docker Swarm', 'Unknown', 'Orchestration', 'OpenStack Heat', 'Unknown', 'OnMetal Cloud Servers', 'Unknown', 'Unknown', 'Cloud DNS', 'Proprietary', 'Unknown', 'Cloud Files', 'OpenStack Swift', 'Icehouse', 'Cloud Block Storage', 'Proprietary', 'Unknown', '', '', '', 'Cloud CDN', 'Akamai', 'Unknown', 'Cloud Network', 'Proprietary', 'Unknown', '', '', '', 'Cloud Database', 'Proprietary', 'Unknown', 'Object Rocket', 'Proprietary', 'Unknown', 'Autoscale', 'Proprietary', 'Unknown', 'Cloud Load Balancer', 'Proprietary', 'Unknown', '', '', '', '', '', '\r'),
(104, 'Rackspace', 'London', 'London, England', -0.127697, 51.510186, 'https://www.rackspace.com/openstack/public', 'Virtual Cloud Servers', 'OpenStack Nova', 'Icehouse', 'Carina', 'Docker Swarm', 'Unknown', 'Orchestration', 'OpenStack Heat', 'Unknown', 'OnMetal Cloud Servers', 'Unknown', 'Unknown', 'Cloud DNS', 'Proprietary', 'Unknown', 'Cloud Files', 'OpenStack Swift', 'Icehouse', 'Cloud Block Storage', 'Proprietary', 'Unknown', '', '', '', 'Cloud CDN', 'Akamai', 'Unknown', 'Cloud Network', 'Proprietary', 'Unknown', '', '', '', 'Cloud Database', 'Proprietary', 'Unknown', 'Object Rocket', 'Proprietary', 'Unknown', 'Autoscale', 'Proprietary', 'Unknown', 'Cloud Load Balancer', 'Proprietary', 'Unknown', '', '', '', '', '', '\r'),
(105, 'Rackspace', 'Hong Kong', 'Hong Kong, China', 114.188988, 22.276946, 'https://www.rackspace.com/openstack/public', 'Virtual Cloud Servers', 'OpenStack Nova', 'Icehouse', 'Carina', 'Docker Swarm', 'Unknown', 'Orchestration', 'OpenStack Heat', 'Unknown', 'OnMetal Cloud Servers', 'Unknown', 'Unknown', 'Cloud DNS', 'Proprietary', 'Unknown', 'Cloud Files', 'OpenStack Swift', 'Icehouse', 'Cloud Block Storage', 'Proprietary', 'Unknown', '', '', '', 'Cloud CDN', 'Akamai', 'Unknown', 'Cloud Network', 'Proprietary', 'Unknown', '', '', '', 'Cloud Database', 'Proprietary', 'Unknown', 'Object Rocket', 'Proprietary', 'Unknown', 'Autoscale', 'Proprietary', 'Unknown', 'Cloud Load Balancer', 'Proprietary', 'Unknown', '', '', '', '', '', '\r'),
(106, 'Rackspace', 'Sydney', 'Sydney, Austrailia', 151.050048, -33.8628, 'https://www.rackspace.com/openstack/public', 'Virtual Cloud Servers', 'OpenStack Nova', 'Icehouse', 'Carina', 'Docker Swarm', 'Unknown', 'Orchestration', 'OpenStack Heat', 'Unknown', 'OnMetal Cloud Servers', 'Unknown', 'Unknown', 'Cloud DNS', 'Proprietary', 'Unknown', 'Cloud Files', 'OpenStack Swift', 'Icehouse', 'Cloud Block Storage', 'Proprietary', 'Unknown', '', '', '', 'Cloud CDN', 'Akamai', 'Unknown', 'Cloud Network', 'Proprietary', 'Unknown', '', '', '', 'Cloud Database', 'Proprietary', 'Unknown', 'Object Rocket', 'Proprietary', 'Unknown', 'Autoscale', 'Proprietary', 'Unknown', 'Cloud Load Balancer', 'Proprietary', 'Unknown', '', '', '', '', '', '\r'),
(107, 'Softlayer', 'Amsterdam 01', 'Amsterdam, Netherlands', 4.895641, 52.367788, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(108, 'Softlayer', 'Amsterdam 03', 'Amsterdam, Netherlands', 4.895641, 52.367788, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(109, 'Softlayer', 'Chennai', 'Chennai, India', 80.266681, 13.088992, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(110, 'Softlayer', 'Dallas 01', 'Dallas, Texas', -96.797952, 32.775566, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(111, 'Softlayer', 'Dallas 02', 'Dallas, Texas', -96.797952, 32.775566, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(112, 'Softlayer', 'Dallas 05', 'Dallas, Texas', -96.797952, 32.775566, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(113, 'Softlayer', 'Dallas 06', 'Dallas, Texas', -96.797952, 32.775566, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(114, 'Softlayer', 'Dallas 07', 'Dallas, Texas', -96.797952, 32.775566, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(115, 'Softlayer', 'Dallas 09', 'Dallas, Texas', -96.797952, 32.775566, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(116, 'Softlayer', 'Dallas 10', 'Dallas, Texas', -96.797952, 32.775566, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(117, 'Softlayer', 'Frankfurt', 'Frankfurt, Germany', 8.683168, 50.113966, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(118, 'Softlayer', 'Hong Kong', 'Hong Kong, China', 114.188988, 22.276946, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(119, 'Softlayer', 'Houston', 'Houston, Texas', -95.364243, 29.762059, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(120, 'Softlayer', 'London', 'London, England', -0.127697, 51.510186, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(121, 'Softlayer', 'Melbourne', 'Melbourne, Australia', 144.961097, -37.808583, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(122, 'Softlayer', 'Milan', 'Milan, Italy', 9.185627, 45.466324, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(123, 'Softlayer', 'Montreal', 'Montreal, Canada', -73.568547, 45.511943, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(124, 'Softlayer', 'Oslo', 'Oslo, Norway', 10.753527, 59.914784, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(125, 'Softlayer', 'Paris', 'Paris, France', 135.506994, 48.85816, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(126, 'Softlayer', 'Querétaro', 'Querétaro, Mexico', -99.874877, 20.864701, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(127, 'Softlayer', 'San Jose 01', 'San Jose, California', -121.885396, 37.339527, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(128, 'Softlayer', 'San Jose 03', 'San Jose, California', -121.885396, 37.339527, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(129, 'Softlayer', 'Sao Paulo', 'São Paulo, Brazil', -48.843477, -21.794359, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(130, 'Softlayer', 'Seattle', 'Seattle, Washington', -122.328359, 47.613374, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(131, 'Softlayer', 'Seoul 01', 'Seoul, South Korea', 126.991603, 37.538887, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(132, 'Softlayer', 'Singapore', 'Singapore', 103.865213, 1.352828, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(133, 'Softlayer', 'Sydney', 'Sydney, Australia', 151.050048, -33.8628, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(134, 'Softlayer', 'Tokyo', 'Tokyo, Japan', 139.682804, 35.720616, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(135, 'Softlayer', 'Toronto', 'Toronto, Canada', -79.393171, 43.68291, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(136, 'Softlayer', 'Washington, D.C. 01', 'Washington, D.C', -77.038258, 38.907343, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(137, 'Softlayer', 'Washington, D.C. 04', 'Washington, D.C', 38.907343, 38.907343, 'http://www.softlayer.com/', 'Virtual Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', 'Object Storage', 'OpenStack Swift', 'Unknown', 'Block Storage', 'Proprietary', 'Unknown', 'FIle Storage', 'Proprietary', 'Unknown', 'Content Delivery Network', '', '', 'Networking', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', 'Load Balancing', 'Proprietary', 'Unknown', '', '', '', 'Direct Link', 'Proprietary', 'Unknown\r'),
(138, 'Packet', 'US East', 'New York, New York', -73.902479, 40.721699, 'https://www.packet.net/', '', '', '', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Block Storage Service', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Packet Direct Connect', 'Proprietary', 'Unknown\r'),
(139, 'Packet', 'US West', 'San Jose, California', -121.885396, 37.339527, 'https://www.packet.net/', '', '', '', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Block Storage Service', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Packet Direct Connect', 'Proprietary', 'Unknown\r'),
(140, 'Packet', 'EU West', 'Amsterdam, Netherlands', 4.895641, 52.367788, 'https://www.packet.net/', '', '', '', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Block Storage Service', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Packet Direct Connect', 'Proprietary', 'Unknown\r'),
(141, 'Packet', 'Asia East', 'Tokyo, Japan', 139.682804, 35.720616, 'https://www.packet.net/', '', '', '', '', '', '', '', '', '', 'Bare Metal Servers', 'Proprietary', 'Unknown', '', '', '', '', '', '', 'Block Storage Service', 'Proprietary', 'Unknown', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Packet Direct Connect', 'Proprietary', 'Unknown\r');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;