article-date-extractor 0.1.1

A library for extracting the publication date from an article or a blog post.
Documentation
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
<!DOCTYPE html>
<!-- saved from url=(0056)https://techcrunch.com/2015/11/30/atlassian-share-price/ -->
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml" lang="en" class="js flexbox canvas canvastext webgl no-touch geolocation postmessage websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg smil svgclippaths"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><script src="https://secure-api.gravity.com/v1/beacons/initialize" type="text/javascript" async=""></script><script src="https://secure-api.gravity.com/v1/beacons/initialize" type="text/javascript" async=""></script><script id="facebook-jssdk" src="https://connect.facebook.net/en_US/sdk.js"></script><script type="text/javascript" async="" src="./techcrunch_files/recaptcha__en.js"></script><script type="text/javascript" async="async" src="https://dpm.demdex.net/id?d_rtbd=json&amp;d_ver=2&amp;d_orgid=6B25357E519160E40A490D44%40AdobeOrg&amp;d_mid=12632412129305077266985686900823717910&amp;d_cb=s_c_il%5B1%5D._setAudienceManagerFields"></script>
	<title>Hipchat-Maker Atlassian Sets Share Prices For Its IPO  |  TechCrunch</title>
	<meta http-equiv="X-UA-Compatible" content="IE=Edge">
	
			<script async="" src="https://cdn.taboola.com/libtrc/aol-techcrunch/loader.js"></script><script type="text/javascript" async="" src="https://dashboard.tinypass.com/xbuilder/experience/load?aid=Fy7FpgyUxA"></script><script type="text/javascript" async="" src="https://ssl.google-analytics.com/ga.js"></script><script type="text/javascript" async="" src="https://s.aolcdn.com/os_merge/?file=/ads/adsWrapper.js&amp;file=/moat/prod/moatuac.js"></script><script type="text/javascript" async="" src="./techcrunch_files/moth-min.js"></script><script type="text/javascript" async="" src="https://connect.facebook.net/en_US/sdk.js"></script><script type="text/javascript" async="" src="https://cdn.mediavoice.com/nativeads/script/aolibrands/MCtc.js"></script><script type="text/javascript" async="" src="./techcrunch_files/commentcount.js"></script><script type="text/javascript" async="" src="./techcrunch_files/moth-min.js"></script><script type="text/javascript" async="" src="https://sb.scorecardresearch.com/beacon.js"></script><script type="text/javascript" async="" src="./techcrunch_files/unb.min.js"></script><script type="text/javascript" async="" src="https://s.skimresources.com/js/72705X1553005.skimlinks.js"></script><script type="text/javascript" async="" src="./techcrunch_files/zYD5B5-eXtZN9_epXvoo.js"></script><script type="text/javascript" async="" src="./techcrunch_files/wl"></script><script type="text/javascript" async="" src="./techcrunch_files/wl(1)"></script><script type="text/javascript">var _sf_startpt = (new Date()).getTime()</script>
		<meta name="p:domain_verify" content="6189ff68ce30e30f12b40b3b40873027">
	<meta name="HandheldFriendly" content="True">
	<meta name="MobileOptimized" content="320">
	<meta name="viewport" content="initial-scale=1.0,width=device-width,user-scalable=no,minimum-scale=1.0,maximum-scale=1.0">
	<meta http-equiv="cleartype" content="on">
	<meta name="apple-mobile-web-app-title" content="TechCrunch">
	<meta name="robots" content="NOYDIR,NOODP">
	<link rel="shortcut icon" type="image/x-icon" href="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/favicon.ico">
	<link href="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/homescreen_TCIcon.png" rel="apple-touch-icon-precomposed">
	<link href="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/homescreen_TCIcon_2x.png" sizes="114x114" rel="apple-touch-icon-precomposed">
	<link href="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/homescreen_TCIcon_ipad.png" sizes="72x72" rel="apple-touch-icon-precomposed">
	<link href="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/homescreen_TCIcon_ipad_2x.png" sizes="144x144" rel="apple-touch-icon-precomposed">
			<link rel="alternate" href="android-app://com.aol.mobile.techcrunch/http/https://techcrunch.com/2015/11/30/atlassian-share-price/">
	
	<script type="text/javascript">window.bN_cfg={h:window.location.hostname};</script>
	<meta name="google-site-verification" content="4U1OC1LwZlFHAehLhCV4rt3YzWI_AyF7Gb0XqlaVEhE">
<meta name="msvalidate.01" content="5ABD8A078F3356F3A6A8C8643C31FB8F">
	<meta property="fb:app_id" content="187288694643718">
	<meta property="fb:admins" content="543710097,771265067,1661021707,1550970059,663677613,1178144075,726995222,506404657,4700188">
			<meta property="article:publisher" content="https://www.facebook.com/techcrunch">
			<script src="./techcrunch_files/remote-login.php" type="text/javascript"></script>
		<script type="text/javascript">
		/* <![CDATA[ */
			if ( 'function' === typeof WPRemoteLogin ) {
				document.cookie = "wordpress_test_cookie=test; path=/";
				if ( document.cookie.match( /(;|^)\s*wordpress_test_cookie\=/ ) ) {
					WPRemoteLogin();
				}
			}
		/* ]]> */
		</script>
		<link rel="dns-prefetch" href="https://s2.wp.com/">
<link rel="dns-prefetch" href="https://platform.twitter.com/">
<link rel="dns-prefetch" href="https://s1.wp.com/">
<link rel="dns-prefetch" href="https://s0.wp.com/">
<link rel="dns-prefetch" href="https://tctechcrunch2011.wordpress.com/">
<link rel="alternate" type="application/rss+xml" title="TechCrunch » Feed" href="https://techcrunch.com/feed/">
<link rel="alternate" type="application/rss+xml" title="TechCrunch » Comments Feed" href="https://techcrunch.com/comments/feed/">
<link rel="alternate" type="application/rss+xml" title="TechCrunch » Hipchat-Maker Atlassian Sets Share Prices For Its IPO Comments Feed" href="https://techcrunch.com/2015/11/30/atlassian-share-price/feed/">
	<script type="text/javascript">
		/* <![CDATA[ */
		function addLoadEvent(func) {
			var oldonload = window.onload;
			if (typeof window.onload != 'function') {
				window.onload = func;
			} else {
				window.onload = function () {
					oldonload();
					func();
				}
			}
		}
		/* ]]> */
	</script>
			<script type="text/javascript">
			window._wpemojiSettings = {"baseUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/s0.wp.com\/wp-includes\/js\/wp-emoji-release.min.js?m=1488818651h&ver=4.7.3"}};
			!function(a,b,c){function d(a){var b,c,d,e,f=String.fromCharCode;if(!k||!k.fillText)return!1;switch(k.clearRect(0,0,j.width,j.height),k.textBaseline="top",k.font="600 32px Arial",a){case"flag":return k.fillText(f(55356,56826,55356,56819),0,0),!(j.toDataURL().length<3e3)&&(k.clearRect(0,0,j.width,j.height),k.fillText(f(55356,57331,65039,8205,55356,57096),0,0),b=j.toDataURL(),k.clearRect(0,0,j.width,j.height),k.fillText(f(55356,57331,55356,57096),0,0),c=j.toDataURL(),b!==c);case"emoji4":return k.fillText(f(55357,56425,55356,57341,8205,55357,56507),0,0),d=j.toDataURL(),k.clearRect(0,0,j.width,j.height),k.fillText(f(55357,56425,55356,57341,55357,56507),0,0),e=j.toDataURL(),d!==e}return!1}function e(a){var c=b.createElement("script");c.src=a,c.defer=c.type="text/javascript",b.getElementsByTagName("head")[0].appendChild(c)}var f,g,h,i,j=b.createElement("canvas"),k=j.getContext&&j.getContext("2d");for(i=Array("flag","emoji4"),c.supports={everything:!0,everythingExceptFlag:!0},h=0;h<i.length;h++)c.supports[i[h]]=d(i[h]),c.supports.everything=c.supports.everything&&c.supports[i[h]],"flag"!==i[h]&&(c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&c.supports[i[h]]);c.supports.everythingExceptFlag=c.supports.everythingExceptFlag&&!c.supports.flag,c.DOMReady=!1,c.readyCallback=function(){c.DOMReady=!0},c.supports.everything||(g=function(){c.readyCallback()},b.addEventListener?(b.addEventListener("DOMContentLoaded",g,!1),a.addEventListener("load",g,!1)):(a.attachEvent("onload",g),b.attachEvent("onreadystatechange",function(){"complete"===b.readyState&&c.readyCallback()})),f=c.source||{},f.concatemoji?e(f.concatemoji):f.wpemoji&&f.twemoji&&(e(f.twemoji),e(f.wpemoji)))}(window,document,window._wpemojiSettings);
		</script><script src="./techcrunch_files/wp-emoji-release.min.js" type="text/javascript" defer=""></script>
		<style type="text/css">
img.wp-smiley,
img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 .07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}
</style>
<link rel="stylesheet" id="all-css-0-1" href="./techcrunch_files/saved_resource" type="text/css" media="all">
<script type="text/javascript">
/* <![CDATA[ */
var Live_Cache = {"ajaxurl":"https:\/\/techcrunch.com","auto_updates":{"live-cache-widget-1-title":"#live-cache-widget-1 h2","live-cache-widget-1-text":"#live-cache-widget-1 div","live-cache-subtitle":".live-island .live-subtitle","live-cache-text":".live-island .vid-caption","live-cache-stream-pause":".live-island .stream-pause","live-cache-fb-stream-src":".live-island .fb-stream-src","live-cache-title-livecaster":".livecaster-title","live-cache-text-livecaster":".livecaster-text"}};
var gravityInsightsParams = {"type":"content","action":"","site_guid":"fca4fa8af1286d8a77f26033fdeed202"};
var tcOmniture = {"pageName":"Hipchat-Maker Atlassian Sets Share Prices For Its IPO","prop1":"article","prop2":"enterprise","prop54":"wordpress","prop9":"tcr:1244986","prop16":"standard-article","prop19":"atlassian|hipchat","prop23":"11-30-2015","prop64":"gravity","prop65":"original_content","prop22":"catherine-shu","omni_env":"prod"};
var TC_Async_Head_Scripts = {"tc_ads_wrapper_omniture":"https:\/\/s.aolcdn.com\/os_merge\/?file=\/ads\/adsWrapper.js&file=\/moat\/prod\/moatuac.js"};
var TC_Google_Analytics_Config = {"account":"UA-991406-1","domain":"techcrunch.com"};
/* ]]> */
</script><style type="text/css">
:root #post_unit_medrec,
:root .advertise-here,
:root .ad-cluster-container,
:root .ad-300x250,
:root .ad-unit,
:root .header-ad
{ display: none !important; }</style><style type="text/css">img[src="https://sb.scorecardresearch.com/b?rn=43820433&C1=2&C2=1000009&C4=https%3A%2F%2Ftechcrunch.com%2F2015%2F11%2F30%2Fatlassian-share-price%2F&C5=us.tchcr&C7=https%3A%2F%2Ftechcrunch.com%2F2015%2F11%2F30%2Fatlassian-share-price%2F&C8=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%20IPO%20%7C%20TechCrunch"]
{display:none !important;}</style>
<script type="text/javascript" src="./techcrunch_files/saved_resource(1)"></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://tctechcrunch2011.wordpress.com/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://s1.wp.com/wp-includes/wlwmanifest.xml"> 
<meta name="generator" content="WordPress.com">
<link rel="canonical" href="https://techcrunch.com/2015/11/30/atlassian-share-price/">
<link rel="shortlink" href="http://wp.me/p1FaB8-5dSq">
<link rel="alternate" type="application/json+oembed" href="https://public-api.wordpress.com/oembed/1.0/?format=json&amp;url=https%3A%2F%2Ftechcrunch.com%2F2015%2F11%2F30%2Fatlassian-share-price%2F&amp;for=wpcom-auto-discovery"><link rel="alternate" type="application/xml+oembed" href="https://public-api.wordpress.com/oembed/1.0/?format=xml&amp;url=https%3A%2F%2Ftechcrunch.com%2F2015%2F11%2F30%2Fatlassian-share-price%2F&amp;for=wpcom-auto-discovery"><link rel="openid.server" href="https://tctechcrunch2011.wordpress.com/?openidserver=1">
<link rel="openid.delegate" href="https://tctechcrunch2011.wordpress.com/">
<link rel="search" type="application/opensearchdescription+xml" href="https://techcrunch.com/osd.xml" title="TechCrunch">
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com">


<!-- BEGIN Sailthru Horizon Meta Information -->
<meta name="sailthru.date" content="2015-11-30 23:50:48">
<meta name="sailthru.title" content="Hipchat-Maker Atlassian Sets Share Prices For Its IPO">
<meta name="sailthru.tags" content="Atlassian, hipchat">
<meta name="sailthru.author" content="&lt;a href=&quot;/author/catherine-shu/&quot; title=&quot;Posts by Catherine Shu&quot; onclick=&quot;s_objectID=&#39;river_author&#39;;&quot; rel=&quot;author&quot;&gt;Catherine Shu&lt;/a&gt; &lt;span class=&quot;twitter-handle&quot;&gt;(&lt;a href=&quot;https://twitter.com/catherineshu&quot; rel=&quot;external&quot;&gt;@catherineshu&lt;/a&gt;)&lt;/span&gt;">
<meta name="sailthru.description" content="Enterprise software company Atlassian, which filed a month ago to go public on NASDAQ, has disclosed how much its shares will cost. In a SEC filing, the company said its 20 million shares will be priced between $16.50 and $18.50.">
<meta name="sailthru.image.full" content="https://tctechcrunch2011.files.wordpress.com/2015/11/screen-shot-2015-12-01-at-3-47-46-pm.png">
<meta name="sailthru.image.thumb" content="https://tctechcrunch2011.files.wordpress.com/2015/11/screen-shot-2015-12-01-at-3-47-46-pm.png?w=50">
<!-- END Sailthru Horizon Meta Information -->

<!-- BEGIN wp-parsely Plugin Version 1.10.2 -->
<meta name="wp-parsely_version" id="wp-parsely_version" content="1.10.2">
   <script type="application/ld+json">
   {"@context":"http:\/\/schema.org","@type":"NewsArticle","mainEntityOfPage":{"@type":"WebPage","@id":"http:\/\/techcrunch.com\/2015\/11\/30\/atlassian-share-price\/"},"headline":"Hipchat-Maker Atlassian Sets Share Prices For Its&nbsp;IPO","url":"http:\/\/techcrunch.com\/2015\/11\/30\/atlassian-share-price\/","thumbnailUrl":"https:\/\/tctechcrunch2011.files.wordpress.com\/2015\/11\/screen-shot-2015-12-01-at-3-47-46-pm.png?w=150","image":{"@type":"ImageObject","url":"https:\/\/tctechcrunch2011.files.wordpress.com\/2015\/11\/screen-shot-2015-12-01-at-3-47-46-pm.png?w=150"},"dateCreated":"2015-12-01T07:50:48Z","datePublished":"2015-12-01T07:50:48Z","dateModified":"1970-01-01T00:00:00Z","articleSection":"post","author":[{"@type":"Person","name":"Catherine Shu"}],"creator":["Catherine Shu"],"publisher":{"@type":"Organization","name":"TechCrunch","logo":{"@type":"imageObject","url":"https:\/\/s0.wp.com\/wp-content\/themes\/vip\/techcrunch-2013\/assets\/images\/logo-json-ld.png","width":"352","height":"60"}},"keywords":["atlassian","hipchat","enterprise","fundings &amp; exits","tc"]}   </script>
    <!-- END wp-parsely Plugin Version 1.10.2 -->
<meta property="og:site_name" content="TechCrunch">
<meta property="og:site" content="social.techcrunch.com">
<meta property="og:title" content="Hipchat-Maker Atlassian Sets Share Prices For Its IPO">
<meta property="og:description" content="Enterprise software company Atlassian, which filed a month ago to go public on NASDAQ, has disclosed how much its shares will cost. In a SEC filing, the..">
<meta property="og:image" content="https://tctechcrunch2011.files.wordpress.com/2015/11/screen-shot-2015-12-01-at-3-47-46-pm.png?w=692&amp;h=400&amp;crop=1">
<meta property="og:url" content="http://social.techcrunch.com/2015/11/30/atlassian-share-price/">
<meta property="og:type" content="article">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image:src" content="https://tctechcrunch2011.files.wordpress.com/2015/11/screen-shot-2015-12-01-at-3-47-46-pm.png?w=692&amp;h=400&amp;crop=1">
<meta name="twitter:site" content="@techcrunch">
<meta name="twitter:url" content="https://techcrunch.com/2015/11/30/atlassian-share-price/">
<meta name="twitter:description" content="Enterprise software company Atlassian, which filed a month ago to go public on NASDAQ, has disclosed how much its shares will cost. In a SEC filing, the company said its 20 million shares will be…">
<meta name="twitter:title" content="Hipchat-Maker Atlassian Sets Share Prices For Its IPO | TechCrunch">
		
		<script>

			//safe initalization
			tp = window.tp || [];		
			jQuery(document).ready(function(){

					//piano content tags
											tp.push(["setContentCreated", "2015-Nov-30T00:00:00"]);
											tp.push(["setContentAuthor", "Catherine Shu"]);
											tp.push(["setContentSection", "test_sec"]);
											tp.push(["setTags", ["Atlassian","hipchat"]]);
											tp.push(["setZone", "\"Web\""]);
					
					//piano custom variables 
											tp.push(['setCustomVariable',"referral", null]);
											tp.push(['setCustomVariable',"newsletter", "n"]);
					
					//user agent needs to be accessed in javascript
					//becuase of batcache
					tp.push(['setCustomVariable','device', navigator.userAgent]);

					//ensure data is accessed on page load
					tp.push(["init", function(){
						//push visit data
						tp.push(['setCustomVariable','frequency', s_265.getVisitNum(365)]);

						tp.experience.init();
					}]);

			});
		</script>
		<script>
			(function(src){var a=document.createElement("script");a.type="text/javascript";a.async=true;
			a.src=src;var b=document.getElementsByTagName("script")[0];b.parentNode.insertBefore(a,b)})("https://dashboard.tinypass.com/xbuilder/experience/load?aid=Fy7FpgyUxA");
		</script>			
		<!-- newsletter signup -->


		<script>
			/**
			 * Sets cookie for later use in custom variables
			 * @param name custom variable's name
			 * @param value custom variable's value
			 */
			function pianoSetCustomVariableCookie(name, value) {
				// Get all existing values from the cookie
				var cookieValue = pianoReadCustomVariableCookie();
				// Set the value
				cookieValue[name] = value;

				// Get cookie expiration date in 3 years
				var d = new Date();
				d.setTime(d.getTime() + (94608000000));
				var expires = "expires=" + d.toUTCString();


									var domain = 'techcrunch.com';
				
				// Write the cookie value
				document.cookie = "__pcvc=" + JSON.stringify(cookieValue) + ";" + expires + ";path=/;domain=."+domain;
			}

			/**
			 * Read values from cookie and convert them from json
			 * @param specificName (optional) Name specific value from the set
			 * @returns {*} If specificName is specified - returns single value, otherwise returns JSON object with all values
			 */
			function pianoReadCustomVariableCookie(specificName) {
				var cookieValue;
				try {
					// Try to get the cookie value with regexp
					var match = document.cookie.match(new RegExp('(^| )__pcvc=([^;]+)'));
					if (match) {
						// If cookie with this name was found - try to parse the JSON value
						cookieValue = JSON.parse(match[2]);
					}
				}
				catch (e) {
					// By default - set value as empty object
					cookieValue = {};
				}
				if (!cookieValue) {
					// By default - set value as empty object
					cookieValue = {};
				}
				if (typeof specificName != "undefined") {
					// Get the specific value from the set
					if (typeof cookieValue[specificName] != "undefined") {
						return cookieValue[specificName];
					}
					return null;
				}
				return cookieValue;
			}

			/**
			 * Function to send data upstream to Piano template
			 * @param iframeId - Element id of the Piano iframe
			 * @param success - true/false. Status of the message
			 * @param message - Error message text
			 * @param object - Additional data, like the the field that triggered the error
			 */
			function sendPostMessageToPiano(iframeId, success, message, object) {
				var iframe = jQuery('#' + iframeId);

				if (iframe.length) {
					iframe[0].contentWindow.postMessage({
						piano: {
							success: success,
							message: message,
							object: object
						}
					}, '*');
				}
			}

			tp = window.tp || [];

			tp.push(["addHandler", "customEvent", function (event, b, c, d) {
				switch (event.eventName) {
					// Email signup
					case 'signup-daily':
					case 'signup-weekly':

						var email = '';
						if ((typeof event.params.email != 'undefined') && (event.params.email.length > 0)) {
							email = event.params.email;
						}

						var object = '';
						if ((typeof event.params.object != 'undefined') && (event.params.object.length > 0)) {
							object = event.params.object;
						}

						var iframeId;

						// We are parsing the params object sent from the template to find out which iframe triggered it
						params = JSON.parse(event.params.params);
						// And here's the iframeId we're looking for
						iframeId = params.iframeId;

						//grab the security string from the from the form
						//on the page, needed for check in the backend
						var $form = jQuery('.form-newsletters');
						var url = '/wp-admin/admin-ajax.php';
						var nonce = $form.data('nonce');


						if (email == undefined || email == '') {
							return;
						}

						var emailLists = [];
						switch (event.eventName) {
							case 'signup-daily':
								emailLists.push('crunchdaily');
								break;
							case 'signup-weekly':
								emailLists.push('crunchweekly');
								break;
							default:
								return;
						}

						var jqxhr = jQuery.get(url, {
							action: "newsletters",
							subaction: "subscribe",
							email_lists: emailLists,
							email: email,
							tracking_id: event.params.tracking_id,
							security: nonce
						}, function (data) {
							if (!data.success){
								sendPostMessageToPiano(iframeId, false, data.data.message, object)
							}
							else{
								// When the email was added - set the cookie
								pianoSetCustomVariableCookie('newsletter', 'y');
								sendPostMessageToPiano(iframeId, true, "");
							}
						});
						break;
					// Don't show me this again
					case 'dont-show':
						pianoSetCustomVariableCookie('dontshow', 'y');
						tp.offer.close();
						break;
				}
			}]);

			// Read all values from cookie
			var cookieValues = pianoReadCustomVariableCookie();

			for (var i in cookieValues) {
				// Set custom variables from cookie
				tp.push(['setCustomVariable', i, cookieValues[i]]);
			}
		</script>


	<meta class="swiftype" name="author" data-type="string" content="Catherine Shu">
<meta class="swiftype" name="id" data-type="integer" content="1244986">
<meta class="swiftype" name="title" data-type="string" content="Hipchat-Maker Atlassian Sets Share Prices For Its IPO">
<meta class="swiftype" name="object_type" data-type="string" content="post">
<meta class="swiftype" name="url" data-type="enum" content="https://techcrunch.com/2015/11/30/atlassian-share-price/">
<meta class="swiftype" name="timestamp" data-type="date" content="2015-11-30 23:50:48">
<meta class="swiftype" name="content" data-type="text" content="Enterprise software company Atlassian, which filed a month ago to go public on NASDAQ, has disclosed how much its shares will cost. In a SEC filing, the company said its 20 million shares will be priced between $16.50 and $18.50. If Atlassian, which makes Slack competitor Hipchat and will list under the ticker symbol TEAM, manages to sell all shares at the highest price, it will raise a total of $370 million. In its new filing, Atlassian says its enterprise software products have more than 51,000 customers. Its total revenue in 2013, 2014, and 2015 was $148.5 million, $215.1 million, and $319.5 million respectively, representing a compound annual growth rate of 46.7 percent. In those years, Atlassian made net income of $10.8 million, $19 million, and $6.8 million. It said in a previous filing that the income drop last year was due to increased research and development spending. The company’s cash flow in 2013, 2014, and 2015 was $47.1 million, $65 million, and $65.5 million.…">
<meta class="swiftype" name="excerpt" data-type="text" content="Enterprise software company Atlassian, which filed a month ago to go public on NASDAQ, has disclosed how much its shares will cost. In a SEC filing, the company said its 20 million shares will be priced between $16.50 and $18.50.">
<meta class="swiftype" name="image" data-type="enum" content="https://tctechcrunch2011.files.wordpress.com/2015/11/screen-shot-2015-12-01-at-3-47-46-pm.png?w=150">
<meta class="swiftype" name="category" data-type="string" content="Enterprise">
<meta class="swiftype" name="category" data-type="string" content="Fundings &amp; Exits">
<meta class="swiftype" name="category" data-type="string" content="TC">
<meta class="swiftype" name="tag" data-type="string" content="Atlassian">
<meta class="swiftype" name="tag" data-type="string" content="hipchat">
	<meta name="description" content="Enterprise software company Atlassian, which filed a month ago to go public on NASDAQ, has disclosed how much its shares will cost. In a SEC filing, the..">
		<script type="text/javascript">
		window._taboola = window._taboola || [];
		_taboola.push(
			{article:'auto'}
		);
		!function (e, f, u)
		{ e.async = 1; e.src = u; f.parentNode.insertBefore(e, f); }
		(document.createElement('script'),
			document.getElementsByTagName('script')[0],
			'//cdn.taboola.com/libtrc/aol-techcrunch/loader.js');
	</script>
<script type="text/javascript">var ajaxurl = "https://techcrunch.com/wp-admin/admin-ajax.php"</script><meta name="application-name" content="TechCrunch"><meta name="msapplication-window" content="width=device-width;height=device-height"><meta name="msapplication-tooltip" content="Startup and Technology News"><meta name="msapplication-task" content="name=Subscribe;action-uri=https://techcrunch.com/feed/;icon-uri=https://secure.gravatar.com/blavatar/d9ea925a71f82f06a1e6224298f7fe80?s=16">
	<style type="text/css">#site-logo { background: url(https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/images/logos/green.png) no-repeat !important; }</style>
<link rel="amphtml" href="https://techcrunch.com/2015/11/30/atlassian-share-price/amp/"><style type="text/css" id="syntaxhighlighteranchor"></style>
	<script src="./techcrunch_files/saved_resource(2)" type="text/javascript"></script>
	<!--[if lte IE 8 ]>
	<script src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/js/respond.min.js"></script>
	<![endif]-->
	<meta name="st:robots" content="follow, index">
	<script src="./techcrunch_files/api.js"></script>
	<script>
		//function to be used by google recaptcha
		var newsletterRecaptchaClbk = function(){
			jQuery( ".form-newsletters" ).submit();
		}	
	</script>
<script async="true" src="https://www.npttech.com/advertising.js" onerror="setAdblockerCookie(true);" onload="setAdblockerCookie(false);"></script><style type="text/css">a.fl_flip_button,a.fl_profile_button{color:#474747!important;text-decoration:none!important;display:inline-block!important;line-height:18px!important;font-family:'Helvetica Neue',Helvetica,sans-serif;font-size:12px!important;font-weight:500;text-indent:19px!important;position:relative!important;padding-right:5px!important;background-color:#f0f0f0!important;border:solid 1px #ccc!important;height:18px!important;box-sizing:content-box!important}a.fl_flip_button b,a.fl_profile_button b{background:url(data:image/gif;base64,R0lGODlhGAAYAJEAAOTMzPHm5v///80EACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS41LWMwMTQgNzkuMTUxNDgxLCAyMDEzLzAzLzEzLTEyOjA5OjE1ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NjFGNjBCQkU3NzFCMTFFMzhEOTZFMjU1NDZCRTg2NjMiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NjFGNjBCQkY3NzFCMTFFMzhEOTZFMjU1NDZCRTg2NjMiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MUY2MEJCQzc3MUIxMUUzOEQ5NkUyNTU0NkJFODY2MyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2MUY2MEJCRDc3MUIxMUUzOEQ5NkUyNTU0NkJFODY2MyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAAAAAAALAAAAAAYABgAAAIynI+py+0Po5xUiiuC3hrizG0eForPV3YnBrQA9bnvFLswa9NYdXy84fsFf8Si8YhMGgoAOw==) no-repeat;background-size:12px 12px;height:12px;width:12px;position:absolute;top:3px;left:3px}a.fl_flip_button,a.fl_profile_button{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background-image:-webkit-linear-gradient(bottom,#dfdfdf,#f7f7f7);background-image:-moz-linear-gradient(bottom,#dfdfdf,#f7f7f7);background-image:-o-linear-gradient(bottom,#dfdfdf,#f7f7f7);background-image:linear-gradient(to top,#dfdfdf,#f7f7f7)}a.fl_flip_button:hover,a.fl_profile_button:hover{border-color:#bfbfbf!important}a.fl_flip_button:active,a.fl_profile_button:active{border:solid 1px #bfbfbf!important;background-image:-webkit-linear-gradient(top,#dfdfdf,#ebebeb);background-image:-moz-linear-gradient(top,#dfdfdf,#ebebeb);background-image:-o-linear-gradient(top,#dfdfdf,#ebebeb);background-image:linear-gradient(to bottom,#dfdfdf,#ebebeb)}</style><link rel="stylesheet" type="text/css" id="gravatar-card-css" href="./techcrunch_files/hovercard.css"><link rel="stylesheet" type="text/css" id="gravatar-card-services-css" href="./techcrunch_files/services.css"><img width="0" height="0" src="https://sb.scorecardresearch.com/b?rn=67145152&amp;C1=2&amp;C2=1000009&amp;C4=https%3A%2F%2Ftechcrunch.com%2F2015%2F11%2F30%2Fatlassian-share-price%2F&amp;C5=us.tchcr&amp;C7=https%3A%2F%2Ftechcrunch.com%2F2015%2F11%2F30%2Fatlassian-share-price%2F&amp;C8=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%20IPO%20%7C%20TechCrunch" hidden="" style="display: none !important;"><style type="text/css">
:root *[hgml4ik][hidden] { display: none !important; }</style><style type="text/css">
:root .afs_ads,
:root .pub_300x250,
:root .pub_300x250m,
:root .pub_728x90,
:root .text-ad,
:root .textAd,
:root .text_ad,
:root .text_ads,
:root .text-ads,
:root .text-ad-links
{ display: none !important; }</style><link rel="stylesheet" type="text/css" href="chrome-extension://pkehgijcmpdhfbdbbnkijodmdjhbjlgp/skin/socialwidgets.css"></head>
<body class="post-template-default single single-post postid-1244986 single-format-standard mp6 customizer-styles-applied highlander-enabled highlander-light single-post-mobile-collapse single-post-standard">
<!-- piano adblock test -->
<script>
	var setAdblockerCookie = function(adblocker) {
	    var d = new Date();
	    d.setTime(d.getTime() + 60 * 60 * 24 * 30 * 1000);
	    document.cookie = "__adblocker=" + (adblocker ? "true" : "false") + "; expires=" + d.toUTCString() + "; path=/";
	}
	var script = document.createElement("script");
	script.setAttribute("async", true);
	script.setAttribute("src", "//www.npttech.com/advertising.js");
	script.setAttribute("onerror", "setAdblockerCookie(true);");
	script.setAttribute("onload", "setAdblockerCookie(false);");
	document.getElementsByTagName("head")[0].appendChild(script);
</script>


<header class="header header-fixed-mobile cf header-context-news" role="banner">

	<div class="ad-top-mobile">
		<div id="adsDivb2fa6e5bde" class="mobile-ads-center"></div>
<script>
/* <![CDATA[ */
if (ads.isMobile()) {
	(function(window,$){
		window.TechCrunch.loader.on('tc_ads_wrapper_omniture', function(){
			if ( !window.ads.isAdPageSet ){
				if ( typeof window.adSetAdURL == 'function' ) {
					window.adSetAdURL('/wp-content/themes/vip/techcrunch-2013/_uac/adpage.html');
					window.ads.isAdPageSet = true;
				}
				if ( typeof window.adsResizePortrait === 'function' ) {
					window.adsResizePortrait('1');
				}
				window.console.log('ADS WIDTH:');
				window.console.log(ads);
			}
			window.adSetOthAT('kventryid=1244986;kvcmsid=tcr:1244986;kvugc=0;kvsubj=981284:982665:979374:978332;kvent=4241434:4956170:3469967:3690696:3780538:3454742:3692590');
			window.htmlAdWH('93484902', "320", "50", 'f', 'adsDivb2fa6e5bde');
		});
	}(this,this.jQuery));
}
/* ]]> */
</script>	</div>

	<div class="nav-bar">
		<div class="lc">
			<div class="lc">
				<a href="https://techcrunch.com/2015/11/30/atlassian-share-price/#" class="nav-mobile icon-hamburger"><span class="is-vishidden">Menu</span></a>
				<a href="https://techcrunch.com/" class="logo-link" title="TechCrunch" data-omni-sm="gbl_topnav">
										<img src="./techcrunch_files/logo.svg" alt="TechCrunch" class="logo"></a>
				<a href="https://techcrunch.com/2015/11/30/atlassian-share-price/#" class="search-form-toggle icon-mag"><span class="is-vishidden">Search</span></a>
				<a href="https://techcrunch.com/2015/11/30/atlassian-share-price/#" class="trending-nav-mobile icon-rocketship"></a>

				<div class="header-logo-bar cf">

					<div class="header-social">
						<ul class="inline-list social-list sprite-social">
							<li class="nav-followus">Follow Us</li><li class="first">
								<a href="https://www.facebook.com/techcrunch" rel="external" class="spricon nosprite icon-facebook" target="_blank"><span class="is-vishidden">Facebook</span></a>
							</li><li>
								<a href="https://instagram.com/techcrunch" rel="external" class="spricon nosprite icon-instagram" target="_blank"><span class="is-vishidden">Instagram</span></a>
							</li><li>
								<a href="https://twitter.com/techcrunch" rel="external" class="spricon nosprite icon-twitter" target="_blank"><span class="is-vishidden">Twitter</span></a>
							</li><li class="youtube nav-aux">
								<a href="http://www.youtube.com/user/techcrunch" rel="external" class="spricon nosprite icon-youtube" target="_blank"><span class="is-vishidden">Youtube</span></a>
							</li><li class="flipboard nav-aux">
								<a href="https://flipboard.com/@techcrunch" rel="external" class="spricon nosprite icon-flipboard" target="_blank"><span class="is-vishidden">Flipboard</span></a>
							</li><li class="linkedin nav-aux">
								<a href="http://www.linkedin.com/company/techcrunch" rel="external" class="spricon nosprite icon-linkedin" target="_blank"><span class="is-vishidden">LinkedIn</span></a>
							</li><li class="nav-aux">
								<a href="https://plus.google.com/+TechCrunch" rel="external" class="spricon nosprite icon-google-plus" target="_blank"><span class="is-vishidden">Google+</span></a>
							</li><li class="rss nav-aux">
								<a href="https://techcrunch.com/rssfeeds/" class="spricon nosprite icon-rss"><span class="is-vishidden">RSS</span></a>
							</li>
							<li class="nav-social-more">
								<a href="https://techcrunch.com/2015/11/30/atlassian-share-price/#" class="icon-caret-down"><span class="is-vishidden">More</span></a>
								<ul>
									<li class="youtube">
										<a href="http://www.youtube.com/user/techcrunch" rel="external" class="spricon nosprite icon-youtube" target="_blank"><span class="is-vishidden">Youtube</span></a>
									</li><li class="flipboard">
										<a href="https://flipboard.com/@techcrunch" rel="external" class="spricon nosprite icon-flipboard" target="_blank"><span class="is-vishidden">Flipboard</span></a>
									</li><li class="linkedin">
										<a href="http://www.linkedin.com/company/techcrunch" rel="external" class="spricon nosprite icon-linkedin" target="_blank"><span class="is-vishidden">LinkedIn</span></a>
									</li><li class="google-plus">
										<a href="https://plus.google.com/+TechCrunch" rel="external" class="spricon nosprite icon-google-plus" target="_blank"><span class="is-vishidden">Google+</span></a>
									</li><li class="rss">
										<a href="https://techcrunch.com/rssfeeds/" class="spricon nosprite icon-rss"><span class="is-vishidden">RSS</span></a>
									</li>
								</ul>
							</li>
						</ul>

						<div class="header-tip">
							<a href="https://techcrunch.com/got-a-tip/" data-omni-sm="gbl_topnav">
								Got a tip? <span>Let us know.</span>
							</a>
						</div>
					</div>

					<nav class="nav-primary">
	<ul class="nav" id="nav">
		<li class="nav-level1 nav-news">
			<a href="https://techcrunch.com/" class="nav-parent icon-caret-down">News</a>

			<div class="nav-subnav single-col">
				<ul class="nav-col">
					<li class="subnav-title">Channels</li>
					<ul class="subnav-channel" data-omni-sm-delegate="gbl_mainnav"><li id="menu-item-899745" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899745"><a href="https://techcrunch.com/startups/">Startups</a></li>
<li id="menu-item-899746" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899746"><a href="https://techcrunch.com/mobile/">Mobile</a></li>
<li id="menu-item-899747" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899747"><a href="https://techcrunch.com/gadgets/">Gadgets</a></li>
<li id="menu-item-899748" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-899748"><a href="https://techcrunch.com/enterprise/">Enterprise</a></li>
<li id="menu-item-899749" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899749"><a href="https://techcrunch.com/social/">Social</a></li>
<li id="menu-item-899750" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899750"><a href="https://techcrunch.com/europe/">Europe</a></li>
<li id="menu-item-901944" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-901944"><a href="https://techcrunch.com/asia">Asia</a></li>
<li id="menu-item-1266871" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1266871"><a href="https://techcrunch.com/crunch-network/">Crunch Network</a></li>
<li id="menu-item-1210304" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1210304"><a href="https://techcrunch.com/unicorn-leaderboard/">Unicorn Leaderboard</a></li>
<li id="menu-item-1242803" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1242803"><a href="https://techcrunch.com/gifts/">Gift Guides</a></li>
</ul>				</ul>
				<div class="nav-col nav-col-border">
					<a href="https://techcrunch.com/topic/">All Topics</a>
					<a href="https://techcrunch.com/gallery/">All Galleries</a>
					<a href="https://techcrunch.com/timeline/">All Timelines</a>
				</div>
			</div>
		</li>
		<li class="nav-level1 nav-shows">
			<a href="https://techcrunch.com/video/" class="nav-parent icon-caret-down">Video</a>

			<div class="nav-subnav">
				<div class="subnav-title">Shows</div>
				<ul class="nav-col">
					<ul class="subnav-tctv-shows-left" data-omni-sm-delegate="gbl_mainnav"><li id="menu-item-899755" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-899755"><a href="https://techcrunch.com/video/apps/">Apps</a></li>
<li id="menu-item-1386392" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1386392"><a href="https://techcrunch.com/video/bullish/">Bullish</a></li>
<li id="menu-item-1134050" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1134050"><a href="https://techcrunch.com/video/crunchreport/">Crunch Report</a></li>
<li id="menu-item-1213488" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1213488"><a href="https://techcrunch.com/video/tctv-news/">News</a></li>
</ul>				</ul>
				<ul class="nav-col">
					<ul class="subnav-tctv-shows-left" data-omni-sm-delegate="gbl_mainnav"><li id="menu-item-1218613" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1218613"><a href="https://techcrunch.com/video/gadgets/">Gadgets</a></li>
<li id="menu-item-1106527" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1106527"><a href="https://techcrunch.com/video/reviews/">Reviews</a></li>
<li id="menu-item-1386391" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1386391"><a href="https://techcrunch.com/video/interviews/">Interviews</a></li>
<li id="menu-item-1187083" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1187083"><a href="https://techcrunch.com/video/features/">TC Features</a></li>
</ul>				</ul>
				<div class="subnav-separator"></div>
				<div class="nav-col nav-col-border">
					<a href="https://techcrunch.com/video/">All Shows</a>
				</div>
				<div class="nav-col nav-col-border">
					<a href="https://techcrunch.com/video/all/">All Videos</a>
				</div>
			</div>
		</li>
		<li class="nav-level1 nav-events">
			<a href="https://techcrunch.com/events/" class="nav-parent icon-caret-down">Events</a>

			<div class="nav-subnav">
				<ul class="nav-col">
					<li class="subnav-title">TechCrunch Events</li>
					<ul class="subnav-events-tc-events" data-omni-sm-delegate="gbl_mainnav"><li id="menu-item-899739" class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899739"><a href="https://techcrunch.com/event-type/disrupt/">Disrupt</a></li>
<li id="menu-item-936211" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-936211"><a href="https://techcrunch.com/startup-battlefield/">Startup Battlefield</a></li>
<li id="menu-item-899740" class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899740"><a href="https://techcrunch.com/event-type/crunchies/">Crunchies</a></li>
<li id="menu-item-899741" class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899741"><a href="https://techcrunch.com/event-type/meetups/">Meetups</a></li>
<li id="menu-item-899742" class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899742"><a href="https://techcrunch.com/event-type/international-city/">International City Events</a></li>
<li id="menu-item-899744" class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899744"><a href="https://techcrunch.com/event-type/hackathon-2/">Hackathon</a></li>
<li id="menu-item-1084973" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1084973"><a href="https://techcrunch.com/events/include">Include</a></li>
<li id="menu-item-1241113" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1241113"><a href="https://techcrunch.com/event-info/1st-and-future">NFL’s 1ST and Future</a></li>
<li id="menu-item-1390002" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1390002"><a href="http://www.techcrunchstore.com/">TechCrunch Store</a></li>
</ul>				</ul>
				<ul class="nav-col">
					<li class="subnav-title">News About</li>
					<ul class="subnav-events-news-about" data-omni-sm-delegate="gbl_mainnav"><li id="menu-item-1281118" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1281118"><a href="https://techcrunch.com/events/mobile-world-congress-2016/">Mobile World Congress</a></li>
<li id="menu-item-899737" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-899737"><a href="https://techcrunch.com/events/ces-2017/">CES</a></li>
</ul>				</ul>
				<div class="subnav-separator"></div>
				<div class="nav-col-border">
					<a href="https://techcrunch.com/events/">All Events</a>
				</div>
			</div>
		</li>
		<li class="nav-crunchbase">
			<a href="https://www.crunchbase.com/" class="nav-parent">Crunchbase</a>
		</li>
	</ul>
</nav>

		<nav class="nav-trending">
			<ul class="nav">
				<li id="trending-icon">
					Trending
					<i class="icon-trending"></i>
				</li>
				<li id="menu-item-1461078" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1461078"><a href="https://techcrunch.com/tag/snap/">Snap</a></li>
<li id="menu-item-1137480" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1137480"><a href="https://techcrunch.com/topic/company/amazon/">Amazon</a></li>
<li id="menu-item-1141884" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1141884"><a href="https://techcrunch.com/tag/nasa/">NASA</a></li>
			</ul>
		</nav>

		<nav class="nav-contextual">
			<ul class="nav">
				<li class="nav-news">
					<a href="https://techcrunch.com/" class="nav-parent">News</a>
				</li>
				<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899745"><a href="https://techcrunch.com/startups/">Startups</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899746"><a href="https://techcrunch.com/mobile/">Mobile</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899747"><a href="https://techcrunch.com/gadgets/">Gadgets</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-899748"><a href="https://techcrunch.com/enterprise/">Enterprise</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899749"><a href="https://techcrunch.com/social/">Social</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899750"><a href="https://techcrunch.com/europe/">Europe</a></li>
			</ul>
		</nav>
	
					<div class="nav-fb-messenger">
						<button id="fb-messenger-chat">
							<img src="./techcrunch_files/facebook-messenger.svg" alt="" width="20" height="20">
							<span>Message Us</span>
						</button>
					</div>

										<form action="https://techcrunch.com/" method="get" class="search-form">
						<fieldset>
							<legend>Search TechCrunch</legend>
							<label for="s">Search TechCrunch</label>
							<input type="search" placeholder="Search" class="search-field" name="s" value="">
							<button class="search-submit">
								<span class="icon-mag" aria-hidden="true"></span>
								<span class="is-vishidden">Search</span>
							</button>
							<button class="search-close">
								<span class="icon-close" aria-hidden="true"></span>
								<span class="is-vishidden">Search</span>
							</button>
						</fieldset>
					</form>
				</div>
			</div>

		</div>
	</div>
</header>

<!-- FB Messenger Modal -->
<div id="fb-messenger-modal" style="display:none;">
	<div class="modal fade" tabindex="-1" role="dialog">
		<div class="modal-dialog">
			<div class="modal-content">
				<div class="modal-header">
	<button type="button" class="close" data-dismiss="modal">×</button>
	<div class="modal-tc-logo">
		<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="180px" height="90px" viewBox="0 0 180 90" enable-background="new 0 0 180 90" xml:space="preserve">
			<polygon fill="#3E433E" points="90,0 90,30 60,30 60,90 30,90 30,30 0,30 0,0 "></polygon>
			<rect x="120" fill="#3E433E" width="60" height="30"></rect>
			<polygon fill="#3E433E" points="180,60 180,90 90,90 90,30 120,30 120,60 "></polygon>
		</svg>
	</div>
</div>
<div class="modal-body">
	<h2>Hi!</h2>
	<p>
		You are about to activate our Facebook Messenger news bot. Once subscribed, the bot will send you a digest of trending stories once a day. You can also customize the types of stories it sends you.
	</p>
	<p>
		Click on the button below to subscribe and wait for a new Facebook message from the TC Messenger news bot.
	</p>
	<p>
		Thanks,<br>
		TC Team
	</p>

	<div class="fb-messenger-loading"></div>
	<div class="fb-messenger-iframe">
		<div class="fb-send-to-messenger" id="fb-send-to-messenger" messenger_app_id="1678638095724206" page_id="8062627951" color="blue" size="large" data-ref="undefined"></div>
		<script>
		  window.fbAsyncInit = function() {
		    FB.init({
		      appId      : '1678638095724206',
		      xfbml      : true,
		      version    : 'v2.6'
		    });
			FB.Event.subscribe('xfbml.render', function() {
				jQuery('.fb-messenger-loading').detach()
			});
		  };

		  (function(d, s, id){
		     var js, fjs = d.getElementsByTagName(s)[0];
		     if (d.getElementById(id)) {return;}
		     js = d.createElement(s); js.id = id;
		     js.src = "//connect.facebook.net/en_US/sdk.js";
		     fjs.parentNode.insertBefore(js, fjs);
		   }(document, 'script', 'facebook-jssdk'));

		   function getCookie(name) {
		      var matches = document.cookie.match(new RegExp(
		        "(?:^|; )" + name.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, '\\$1') + "=([^;]*)"
		      ));
		      return matches ? decodeURIComponent(matches[1]) : undefined;
		   }

		   window.onload = function() {
		     var gravity_guid = getCookie('grvinsights');
		     var btn = document.getElementById('fb-send-to-messenger');
		     if (btn != undefined && btn != null) {
			   btn.setAttribute('data-ref', gravity_guid)
			 }
		   }

		</script>
	</div>
</div>			</div>
		</div><!-- /.modal-content -->
	</div><!-- /.modal-dialog -->
</div><!-- /.modal -->

<div class="header-ad" hgml4ik="" hidden="">
	<div id="adsDiv10a0533882" class=""></div>
<script>
/* <![CDATA[ */
if (!ads.isMobile()) {
	(function(window,$){
		window.TechCrunch.loader.on('tc_ads_wrapper_omniture', function(){
			if ( !window.ads.isAdPageSet ){
				if ( typeof window.adSetAdURL == 'function' ) {
					window.adSetAdURL('/wp-content/themes/vip/techcrunch-2013/_uac/adpage.html');
					window.ads.isAdPageSet = true;
				}
				if ( typeof window.adsResizePortrait === 'function' ) {
					window.adsResizePortrait('1');
				}
				window.console.log('ADS WIDTH:');
				window.console.log(ads);
			}
			window.adSetOthAT('kventryid=1244986;kvcmsid=tcr:1244986;kvugc=0;kvsubj=981284:982665:979374:978332;kvent=4241434:4956170:3469967:3690696:3780538:3454742:3692590');
			window.htmlAdWH('93484903', "LB", "LB", 'f', 'adsDiv10a0533882');
		});
	}(this,this.jQuery));
}
/* ]]> */
</script></div>


		<div class="announcement announcement-bar announcement-flat-background announcement-centered">
			<div class="lc">
				<div class="announcement-bg">
										<div class="announcement_left">
						<a href="https://techcrunch.com/event-info/disrupt-ny-2017" data-ga-event="click" data-ga-event-category="Marketing - Internal" data-ga-event-action="Announcement Bar" data-ga-event-label="DisruptNY">
														<span class="announcement-text">
							<span class="announcement-headline">Disrupt NY</span>Get Your Tickets For Disrupt NY Before Prices Increase								<span class="announcement-link-text">
																			Save $1000 Now																												<span class="icon-caret-right"></span>
																	</span>
						</span>
						</a>
					</div>
				</div>
			</div>
		</div>
		
<!-- Begin: Article Body Content - Main -->
<div role="main" class="fluid" style="">
	<!-- Begin: Article - Primary -->
	<article class="article lc">
		<div class="l-two-col-expose">

			<!-- Begin: Article Content - Body Right Column -->
			<div class="l-main-container">
				<div class="l-main">
				
				<!-- Begin: Article Header -->
				<header class="article-header page-title">
					<!-- Begin: Article Eyebrows -->
<div class="tags">
	
			<div class="tag-item">
				<a href="https://techcrunch.com/tag/enterprise/" class="tag" data-omni-sm="art_articlecategory">Enterprise</a>

				<div class="links" id="tc-tag-item-enterprise" data-recirc-endpoint="https://techcrunch.com/category/tag/enterprise/recirc-cache/eyebrow/">
											<script>
							(function (window, undefined) {
								var document = window.document;
								if (undefined !== window.registerRecirc) {
									window.registerRecirc(document.getElementById('tc-tag-item-enterprise'), 'https://techcrunch.com/category/tag/enterprise/recirc-cache/eyebrow/');
								}
							}(this));
						</script>
									</div>
			</div>
		
			<div class="tag-item">
				<a href="https://techcrunch.com/tag/hipchat/" class="tag" data-omni-sm="art_articlecategory">hipchat</a>

				<div class="links" id="tc-tag-item-hipchat">
					<ul class="recirc-river river-small g g-1-2-1">
			<li>
			<div class="block-small">
				<a class="block-wrapper" href="https://techcrunch.com/2016/11/01/hipchats-voicemybot-tests-the-waters-for-amazon-echo-in-the-workplace/">
					<img src="./techcrunch_files/vmb-commands.jpg" alt="Hipchat’s VoiceMyBot tests the waters for Amazon Echo in the workplace">

					<div class="block-content">
						<h3>Hipchat’s VoiceMyBot tests the waters for Amazon Echo in the&nbsp;workplace</h3>

						<div class="block-meta">
							<div class="byline">
								<time datetime="2016-11-01 07:22:18"></time>
							</div>
						</div>
					</div>
				</a>
			</div>
		</li>
			<li>
			<div class="block-small">
				<a class="block-wrapper" href="https://techcrunch.com/2016/08/18/atlassians-hipchat-gets-group-video-chats/">
					<img src="./techcrunch_files/hipchat_group_video.png" alt="Atlassian’s HipChat gets group video chats">

					<div class="block-content">
						<h3>Atlassian’s HipChat gets group video&nbsp;chats</h3>

						<div class="block-meta">
							<div class="byline">
								<time datetime="2016-08-18 07:01:15"></time>
							</div>
						</div>
					</div>
				</a>
			</div>
		</li>
			<li>
			<div class="block-small">
				<a class="block-wrapper" href="https://techcrunch.com/2016/06/19/startup-spending-guide-when-freebies-will-do/">
					<img src="./techcrunch_files/gettyimages-509645593.jpg" alt="Startup spending guide: When freebies will do">

					<div class="block-content">
						<h3>Startup spending guide: When freebies will&nbsp;do</h3>

						<div class="block-meta">
							<div class="byline">
								<time datetime="2016-06-19 08:00:33"></time>
							</div>
						</div>
					</div>
				</a>
			</div>
		</li>
	
	<li>
		<div class="block-small">
			<a class="block-wrapper" href="https://techcrunch.com/tag/hipchat/">
				<div class="block-content">
					<h3>Browse more...</h3>
				</div>
			</a>
		</div>
	</li>
</ul>

				</div>
			</div>
		
			<div class="tag-item">
				<a href="https://techcrunch.com/tag/atlassian/" class="tag" data-omni-sm="art_articlecategory">Atlassian</a>

				<div class="links" id="tc-tag-item-atlassian">
					<ul class="recirc-river river-small g g-1-2-1">
			<li>
			<div class="block-small">
				<a class="block-wrapper" href="https://techcrunch.com/2017/03/22/atlassian-starts-integrating-more-of-its-products-with-trello/">
					<img src="./techcrunch_files/gettyimages-500532386.jpg" alt="Atlassian starts integrating more of its products with Trello">

					<div class="block-content">
						<h3>Atlassian starts integrating more of its products with&nbsp;Trello</h3>

						<div class="block-meta">
							<div class="byline">
								<time datetime="2017-03-22 06:00:10"></time>
							</div>
						</div>
					</div>
				</a>
			</div>
		</li>
			<li>
			<div class="block-small">
				<a class="block-wrapper" href="https://techcrunch.com/2017/03/09/astro-raises-an-8-million-series-a-for-its-ai-powered-email-solution-for-teams/">
					<img src="./techcrunch_files/astro-jetsons.png" alt="Astro raises an $8 million Series A for its AI-powered email solution for teams">

					<div class="block-content">
						<h3>Astro raises an $8 million Series A for its AI-powered email solution for&nbsp;teams</h3>

						<div class="block-meta">
							<div class="byline">
								<time datetime="2017-03-09 13:53:25"></time>
							</div>
						</div>
					</div>
				</a>
			</div>
		</li>
			<li>
			<div class="block-small">
				<a class="block-wrapper" href="https://techcrunch.com/2017/02/21/how-atlassian-bought-trello/">
					<img src="./techcrunch_files/atlassian-trello1.jpg" alt="From lunch to acquisition: How Atlassian bought Trello">

					<div class="block-content">
						<h3>From lunch to acquisition: How Atlassian bought&nbsp;Trello</h3>

						<div class="block-meta">
							<div class="byline">
								<time datetime="2017-02-21 08:00:09"></time>
							</div>
						</div>
					</div>
				</a>
			</div>
		</li>
	
	<li>
		<div class="block-small">
			<a class="block-wrapper" href="https://techcrunch.com/tag/atlassian/">
				<div class="block-content">
					<h3>Browse more...</h3>
				</div>
			</a>
		</div>
	</li>
</ul>

				</div>
			</div>
		</div>
<!-- End: Article Eyebrows -->

					
					<h1 class="alpha tweet-title">Hipchat-Maker Atlassian Sets Share Prices For Its IPO</h1>
					<div class="title-left">
					<div class="byline">
	Posted <time datetime="2015-11-30" class="timestamp">Nov 30, 2015</time> by <a href="https://techcrunch.com/author/catherine-shu/" title="Posts by Catherine Shu" onclick="s_objectID=&#39;river_author&#39;;" rel="author">Catherine Shu</a> <span class="twitter-handle">(<a href="https://twitter.com/catherineshu" rel="external">@catherineshu</a>)</span></div>
<!-- Begin: Social Share Icons -->


<div class="social-share social-share-inline">
	<ul class="inline-list social-share-list" id="social-share" data-permalink="https://techcrunch.com/2015/11/30/atlassian-share-price/" data-shortlink="http://tcrn.ch/1PXzEKM" data-sharetitle="Hipchat-Maker Atlassian Sets Share Prices For Its IPO" data-post-id="1244986" data-twitter-hash="">
				<li class="total-shares" style="display: none;">
			<h5 class="total-shares-count">0</h5><br>
			<small>SHARES</small>
		</li>
							<li>
				<a href="https://techcrunch.com/2015/11/30/atlassian-share-price/#comments" rel="external" class="comment icon-comment launch-social-load"></a>
			</li>
		
		<li>
			<a href="https://techcrunch.com/2015/11/30/atlassian-share-price/#" rel="external" class="facebook icon-facebook"></a>
		</li>
		<li>
			<a href="http://twitter.com/share?via=techcrunch&amp;url=http://tcrn.ch/1PXzEKM&amp;text=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO&amp;hashtags=" rel="external" class="twitter icon-twitter" target="_blank"></a>
		</li>
		<li>
			<a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Ftechcrunch.com%2F2015%2F11%2F30%2Fatlassian-share-price%2F&amp;title=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO" rel="external" class="linkedin icon-linkedin" target="_blank" onclick="window.open( &quot;https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Ftechcrunch.com%2F2015%2F11%2F30%2Fatlassian-share-price%2F&amp;title=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO&quot;, &quot;linkedin_share&quot;, &quot;menubar=1,resizable=1,width=750,height=450&quot; )"></a>
		</li>
		<li>
			<a href="https://plus.google.com/share?url=https://techcrunch.com/2015/11/30/atlassian-share-price/" rel="external" class="google-plus icon-google-plus" target="_blank"></a>
		</li>
		<li>
			<a href="http://www.reddit.com/submit?url=https://techcrunch.com/2015/11/30/atlassian-share-price/&amp;title=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO" rel="external" class="reddit icon-reddit" target="_blank"></a>
		</li>
		<li>
			<a href="http://www.stumbleupon.com/badge/?url=https://techcrunch.com/2015/11/30/atlassian-share-price/" rel="external" class="stumbleupon icon-stumbleupon" target="_blank"></a>
		</li>
		<li>
			<a href="mailto:?subject=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO&amp;body=Article:%20https://techcrunch.com/2015/11/30/atlassian-share-price/" rel="external" class="email icon-email"></a>
		</li>
		<li>
			<a href="https://share.flipboard.com/bookmarklet/popout?v=2&amp;title=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO&amp;url=https://techcrunch.com/2015/11/30/atlassian-share-price/" rel="external" class="flipboard icon-flipboard" target="_blank"></a>
		</li>
			</ul>
</div>

<div class="social-share social-share-fixed">
	<div class="less">
		<a class="blank"></a>
		<a class="icon-flipboard" href="https://share.flipboard.com/bookmarklet/popout?v=2&amp;title=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO&amp;url=https://techcrunch.com/2015/11/30/atlassian-share-price/" target="_blank"></a>
		<a class="icon-stumbleupon" href="http://www.stumbleupon.com/badge/?url=https://techcrunch.com/2015/11/30/atlassian-share-price/" target="_blank"></a>
		<a class="icon-reddit" href="http://www.reddit.com/submit?url=https://techcrunch.com/2015/11/30/atlassian-share-price/&amp;title=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO" target="_blank"></a>
		<a class="icon-email" href="mailto:?subject=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO&amp;body=Article:%20https://techcrunch.com/2015/11/30/atlassian-share-price/"></a>
	</div>

	<div class="shown">
		<a class="icon-facebook" href="https://techcrunch.com/2015/11/30/atlassian-share-price/#"></a>
		<a class="icon-twitter" href="http://twitter.com/share?via=techcrunch&amp;url=http://tcrn.ch/1PXzEKM&amp;text=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO&amp;hashtags=" target="_blank"></a>
		<a class="icon-linkedin" href="https://www.linkedin.com/shareArticle?url=https://techcrunch.com/2015/11/30/atlassian-share-price/" target="_blank"></a>
		<a class="icon-whatsapp" href="whatsapp://send?text=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO%20%7C%20https%3A%2F%2Ftechcrunch.com%2F2015%2F11%2F30%2Fatlassian-share-price%2F"></a>
		<a class="icon-email" href="mailto:?subject=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO&amp;body=Article:%20https://techcrunch.com/2015/11/30/atlassian-share-price/"></a>
	</div>
</div>

<!-- End: Social Share Icons -->

					</div>
					<a href="https://techcrunch.com/2015/11/30/leading-indian-classifieds-site-quikr-in-talks-to-acquire-real-estate-portal-commonfloor/" class="next-link" data-omni-sm="art_nextstory">
						<div class="next-story-link">Next Story</div>
						<div class="next-story-full">
							<h4 class="next-title">Leading Indian Classifieds Site Quikr In Talks To Acquire Real-Estate Portal&nbsp;Commonfloor</h4>
						</div>
					</a>
				</header>
				<!-- End: Article Header -->

				<!-- Begin: Article Body -->
				<div class="l-two-col">

					<!-- Begin: Article Body - Main -->
					<div class="l-main-container">
						<div class="l-main">
							<div class="article-entry text">

<!-- Begin: Wordpress Article Content -->
<img src="./techcrunch_files/screen-shot-2015-12-01-at-3-47-46-pm.png" class="">
<p>Enterprise software company <a target="_blank" href="https://www.atlassian.com/">Atlassian</a>, which <a href="https://techcrunch.com/2015/11/09/atlassian-ipo/">filed a month ago to go public on NASDAQ</a>, has disclosed how much its shares will cost. In a <a target="_blank" href="http://www.sec.gov/Archives/edgar/data/1650372/000104746915008972/a2226703zf-1a.htm">SEC filing</a>, the company said its 20 million shares will be priced between $16.50 and $18.50.</p>
<p>If Atlassian, which makes Slack competitor Hipchat and will list under the ticker symbol TEAM, manages to sell all shares at the highest price, it will raise a total of $370 million.</p>
<p>In its new filing, Atlassian says its enterprise software products have more than 51,000 customers. Its total revenue in 2013, 2014, and 2015 was $148.5 million, $215.1 million, and $319.5 million respectively, representing a compound annual growth rate of 46.7 percent.</p><div><div id="adsDiv479792b5ff" class="native-ad-mobile"></div></div>
<p>In those years, Atlassian made net income of $10.8 million, $19 million, and $6.8 million. It said in a previous filing that the income drop last year was due to increased research and development spending. The company’s cash flow in 2013, 2014, and 2015 was $47.1 million, $65 million, and $65.5 million.</p>
<p>Based in Sydney, Australia, and San Francisco, Atlassian was founded in 2002 and has raised $210 million so far through secondary rounds (it has taken no venture capital funding).</p>
<!-- End: Wordpress Article Content -->


								
							</div>

<div id="social-after-wrapper" class="cf social-share social-share-inline">
	<ul class="inline-list social-share-list" id="social-after" data-permalink="https://techcrunch.com/2015/11/30/atlassian-share-price/" data-shortlink="http://tcrn.ch/1PXzEKM" data-sharetitle="Hipchat-Maker Atlassian Sets Share Prices For Its IPO" data-post-id="1244986">
		<li class="total-shares" style="display: none;">
			<h5 class="total-shares-count">0</h5><br>
			<small>SHARES</small>
		</li>
		<li>
			<a href="https://techcrunch.com/2015/11/30/atlassian-share-price/#" rel="external" class="facebook icon-facebook"></a>
		</li>
		<li>
			<a href="http://twitter.com/share?via=techcrunch&amp;url=http://tcrn.ch/1PXzEKM&amp;text=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO&amp;hashtags=" rel="external" class="twitter icon-twitter" target="_blank"></a>
		</li>
		<li>
			<a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Ftechcrunch.com%2F2015%2F11%2F30%2Fatlassian-share-price%2F&amp;title=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO" rel="external" class="linkedin icon-linkedin" target="_blank" onclick="window.open( &quot;https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Ftechcrunch.com%2F2015%2F11%2F30%2Fatlassian-share-price%2F&amp;title=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO&quot;, &quot;linkedin_share&quot;, &quot;menubar=1,resizable=1,width=750,height=450&quot; )"></a>
		</li>
		<li>
			<a href="https://plus.google.com/share?url=https://techcrunch.com/2015/11/30/atlassian-share-price/" rel="external" class="google-plus icon-google-plus" target="_blank"></a>
		</li>
		<li>
			<a href="http://www.stumbleupon.com/badge/?url=https://techcrunch.com/2015/11/30/atlassian-share-price/" rel="external" class="stumbleupon icon-stumbleupon" target="_blank"></a>
		</li>
		<li>
			<a href="http://www.reddit.com/submit?url=https://techcrunch.com/2015/11/30/atlassian-share-price/&amp;title=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO" rel="external" class="reddit icon-reddit" target="_blank"></a>
		</li>
		<li>
			<a href="https://share.flipboard.com/bookmarklet/popout?v=2&amp;title=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO&amp;url=https://techcrunch.com/2015/11/30/atlassian-share-price/" rel="external" class="flipboard icon-flipboard" target="_blank"></a>
		</li>
		<li>
			<a href="mailto:?subject=Hipchat-Maker%20Atlassian%20Sets%20Share%20Prices%20For%20Its%C2%A0IPO&amp;body=Article:%20https://techcrunch.com/2015/11/30/atlassian-share-price/" rel="external" class="email icon-email"></a>
		</li>
	</ul>
</div>
<div id="grv-personalization-56" class="grvRestore100PercentWidth" style="width: 100%; height: 1284px; overflow: hidden; position: static; top: auto; left: auto;"><iframe frameborder="0" scrolling="no" src="./techcrunch_files/w2.html" style="overflow: hidden; width: 100%; height: 1284px; opacity: 1;"></iframe></div>
<script>if( !ads.isMobile() ){ window.TechCrunch.loader.on( 'gravity-beacon', function(){ window.tc_loadGravityScript( 'recirculation' ); } ); }</script><div id="taboola-below-article-thumbnails"></div>
<script type="text/javascript">
	(function($) {
		window._taboola = window._taboola || [];

		if ($('body').hasClass('single-post-mobile-collapse') && $(window).width() < 637) {
			$('.article-entry').append($(document.getElementById('taboola-below-article-thumbnails')).detach());
		}

		_taboola.push(
			{ mode: 'thumbnails-a', container: 'taboola-below-article-thumbnails', placement: 'Below Article Thumbnails', target_type: 'mix' }
		);
	})(window.jQuery);
</script><div class="ad-cluster-container" hgml4ik="" hidden="">
	<small class="advertise-here" hgml4ik="" hidden="">
		<a href="https://techcrunch.com/advertise/" title="Advertise on TechCrunch">
			Advertisement		</a>
	</small>
	<div id="adsDiv07e43dd8b9" class=""></div>
<script>
/* <![CDATA[ */
if (!ads.isMobile()) {
	(function(window,$){
		window.TechCrunch.loader.on('tc_ads_wrapper_omniture', function(){
			if ( !window.ads.isAdPageSet ){
				if ( typeof window.adSetAdURL == 'function' ) {
					window.adSetAdURL('/wp-content/themes/vip/techcrunch-2013/_uac/adpage.html');
					window.ads.isAdPageSet = true;
				}
				if ( typeof window.adsResizePortrait === 'function' ) {
					window.adsResizePortrait('1');
				}
				window.console.log('ADS WIDTH:');
				window.console.log(ads);
			}
			window.adSetOthAT('kventryid=1244986;kvcmsid=tcr:1244986;kvugc=0;kvsubj=981284:982665:979374:978332;kvent=4241434:4956170:3469967:3690696:3780538:3454742:3692590');
			window.htmlAdWH('93484978', "250", "125", 'f', 'adsDiv07e43dd8b9');
		});
	}(this,this.jQuery));
}
/* ]]> */
</script><div id="adsDive1424527c6" class=""></div>
<script>
/* <![CDATA[ */
if (!ads.isMobile()) {
	(function(window,$){
		window.TechCrunch.loader.on('tc_ads_wrapper_omniture', function(){
			if ( !window.ads.isAdPageSet ){
				if ( typeof window.adSetAdURL == 'function' ) {
					window.adSetAdURL('/wp-content/themes/vip/techcrunch-2013/_uac/adpage.html');
					window.ads.isAdPageSet = true;
				}
				if ( typeof window.adsResizePortrait === 'function' ) {
					window.adsResizePortrait('1');
				}
				window.console.log('ADS WIDTH:');
				window.console.log(ads);
			}
			window.adSetOthAT('kventryid=1244986;kvcmsid=tcr:1244986;kvugc=0;kvsubj=981284:982665:979374:978332;kvent=4241434:4956170:3469967:3690696:3780538:3454742:3692590');
			window.htmlAdWH('93484979', "250", "125", 'f', 'adsDive1424527c6');
		});
	}(this,this.jQuery));
}
/* ]]> */
</script></div>
						</div>
					
					</div>
					<!-- End: Article Body - Main -->

					<!-- Begin: Article Body - Sidebar -->
					<div class="l-sidebar">
<div class="ad-unit ad-300x250" hgml4ik="" hidden="">
	<small class="advertise-here" hgml4ik="" hidden="">
		<a href="https://techcrunch.com/advertise/" title="Advertise on TechCrunch">
			Advertisement		</a>
	</small>
	<!-- Begin: Right Rail Advertisement -->
		<div id="adsDivfba2563054" class=""></div>
<script>
/* <![CDATA[ */
if (!ads.isMobile()) {
	(function(window,$){
		window.TechCrunch.loader.on('tc_ads_wrapper_omniture', function(){
			if ( !window.ads.isAdPageSet ){
				if ( typeof window.adSetAdURL == 'function' ) {
					window.adSetAdURL('/wp-content/themes/vip/techcrunch-2013/_uac/adpage.html');
					window.ads.isAdPageSet = true;
				}
				if ( typeof window.adsResizePortrait === 'function' ) {
					window.adsResizePortrait('1');
				}
				window.console.log('ADS WIDTH:');
				window.console.log(ads);
			}
			window.adSetOthAT('kventryid=1244986;kvcmsid=tcr:1244986;kvugc=0;kvsubj=981284:982665:979374:978332;kvent=4241434:4956170:3469967:3690696:3780538:3454742:3692590');
			window.htmlAdWH('93484904', "RR", "RR", 'f', 'adsDivfba2563054');
		});
	}(this,this.jQuery));
}
/* ]]> */
</script>	<!-- End: Right Rail Advertisement -->
</div>

<!-- Begin: Crunchbase Shoal -->
<div class="section aside crunchbase-cluster collapse">
<h3 class="section-title collapse-title">Crunchbase</h3>

<div class="collapse-body">
<ul class="crunchbase-accordion">
		<!-- Begin: Crunchbase Card -->
		<li class="data-card crunchbase-card active" data-crunchbase-url="https://crunchbase.com/organization/atlassian/">
		<h4 class="card-title card-acc-handle">
			<a class="cb-card-title-link" href="https://crunchbase.com/organization/atlassian/">
				Atlassian			</a>
		</h4>

		<div class="card-acc-panel">
		<ul class="card-info">					<li>
						<strong class="key">Founded</strong>
						<span class="value">2002</span>
					</li>
										<li class="cb-card-description full">
						<strong class="key">Overview</strong>
						<span class="value">Atlassian is a software company that provides innovative enterprise products to help organizations dream big, work smart, and deliver fast.

Software to plan, collaborate, code, and service. Built for teams.

Originally founded in 2002 in Sydney, Australia, the company has quickly grown to establish a global presence with over 40,000 customers in over 134 countries.

In addition to the effective …</span>
					</li>

																								<li class="full">
								<strong class="key">Location</strong>
								<span class="value">
																		<a href="http://crunchbase.com/location/sydney/cb843159b286d32003a7ce36d6764f21">Sydney, 02</a>
								</span>
							</li>
						
																			<li class="full">
								<strong class="key">Categories</strong>
								<span class="value">
																													<a class="" href="http://crunchbase.com/category/collaboration/217f63af2e8f9978085b262592840759">Collaboration</a>, 																													<a class="" href="http://crunchbase.com/category/developer-tools/61b83871f3bef95f93bbd555157a4ff6">Developer Tools</a>, 																													<a class="" href="http://crunchbase.com/category/software/c08b5441a05b9777b7a6012728caddd9">Software</a>, 																													<a class="" href="http://crunchbase.com/category/enterprise-software/d38b3f26abc46f7bb29db952021a1b14">Enterprise Software</a>								</span>
							</li>
											
										<li class="full">
						<strong class="key">Website</strong>
						<span class="value">
							<a href="http://www.atlassian.com/" target="_blank">http://www.atlassian.com</a>						</span>
					</li>
							<li class="full profile">
			<a href="https://crunchbase.com/organization/atlassian" target="_blank">Full profile for Atlassian</a>		</li>
		</ul>
		</div>
		</li>
		<!-- End: Crunchbase Card -->		<!-- Begin: Crunchbase Card -->
		<li class="data-card crunchbase-card" data-crunchbase-url="https://crunchbase.com/organization/hipchat/">
		<h4 class="card-title card-acc-handle">
			<a class="cb-card-title-link" href="https://crunchbase.com/organization/hipchat/">
				HipChat			</a>
		</h4>

		<div class="card-acc-panel">
		<ul class="card-info">					<li>
						<strong class="key">Founded</strong>
						<span class="value">2009</span>
					</li>
										<li class="cb-card-description full">
						<strong class="key">Overview</strong>
						<span class="value">HipChat launched in 2010 to give companies and teams a collaboration and chat service that was built just for them. They wanted to combine the power of group chat and the simplicity of consumer IM services with the administrative controls that companies need.

In March 2012, HipChat was acquired by Atlassian.</span>
					</li>

																								<li class="full">
								<strong class="key">Location</strong>
								<span class="value">
																		<a href="http://crunchbase.com/location/san-francisco/528f5e3c90d111115d1c2e4ff979d58e">San Francisco, CA</a>
								</span>
							</li>
						
																			<li class="full">
								<strong class="key">Categories</strong>
								<span class="value">
																													<a class="" href="http://crunchbase.com/category/collaboration/217f63af2e8f9978085b262592840759">Collaboration</a>, 																													<a class="" href="http://crunchbase.com/category/messaging/8c6239bf6854494b1a16e4f7a286dbd5">Messaging</a>, 																													<a class="" href="http://crunchbase.com/category/enterprise-software/d38b3f26abc46f7bb29db952021a1b14">Enterprise Software</a>								</span>
							</li>
											
										<li class="full">
						<strong class="key">Founders</strong>
						<span class="value"><a href="https://crunchbase.com/person/person/pete-curley" target="_blank">Pete Curley</a>, <a href="https://crunchbase.com/person/person/chris-rivers" target="_blank">Chris Rivers</a></span>
					</li>
										<li class="full">
						<strong class="key">Website</strong>
						<span class="value">
							<a href="http://www.hipchat.com/" target="_blank">http://www.hipchat.com</a>						</span>
					</li>
							<li class="full profile">
			<a href="https://crunchbase.com/organization/hipchat" target="_blank">Full profile for HipChat</a>		</li>
		</ul>
		</div>
		</li>
		<!-- End: Crunchbase Card -->

</ul>
</div>
</div>
<!-- End: Crunchbase Shoal -->
	<div class="section aside newsletters-signup collapse collapse-adjacent block">
		
<h2 class="section-title collapse-title aside-adjacent">
	Newsletter Subscriptions
</h2>


<div class="collapse-body newsletter-body">
	<div class="newsletter newsletter-side-bar-newsletters">
		<form method="post" class="inline-form form-newsletters" action="https://techcrunch.com/2015/11/30/atlassian-share-price/" data-nonce="0488fb9f89">
			<div class="checkboxes cf">
				<fieldset class="custom-checkbox">
					<input type="checkbox" name="crunchdaily" id="tc-daily-58d5a75d8f5c92.68779517">
					<label for="tc-daily-58d5a75d8f5c92.68779517">
						<span class="custom-checkbox-fake"></span>
						<strong>The Daily Crunch</strong>
						<span class="desc">Get the top tech stories of the day delivered to your inbox</span>
					</label>
				</fieldset>
				<fieldset class="custom-checkbox">
					<input type="checkbox" name="crunchweekly" id="tc-week-in-review-58d5a75d8f5c92.68779517">
					<label for="tc-week-in-review-58d5a75d8f5c92.68779517">
						<span class="custom-checkbox-fake"></span>
						<strong>TC Weekly Roundup</strong>
						<span class="desc">Get a weekly recap of the biggest tech stories</span>
					</label>
				</fieldset>
				<fieldset class="custom-checkbox">
					<input type="checkbox" name="crunchbase" id="tc-crunchbase-daily-58d5a75d8f5c92.68779517">
					<label for="tc-crunchbase-daily-58d5a75d8f5c92.68779517">
						<span class="custom-checkbox-fake"></span>
						<strong>Crunchbase Daily</strong>
						<span class="desc">The latest startup funding announcements</span>
					</label>
				</fieldset>

				<!-- 
				<div class="extras hidden">
					<fieldset class="custom-checkbox">
						<input type="checkbox" name="europe" id="tc-europe-58d5a75d8f5c92.68779517">
						<label for="tc-europe-58d5a75d8f5c92.68779517">
							<span class="custom-checkbox-fake"></span>
							<strong>TC Europe</strong>
							<span class="desc">The top European tech stories</span>
							<em>Delivered weekly</em>
						</label>
					</fieldset>
					<fieldset class="custom-checkbox">
						<input type="checkbox" name="gadgets" id="tc-gadgets-58d5a75d8f5c92.68779517">
						<label for="tc-gadgets-58d5a75d8f5c92.68779517">
							<span class="custom-checkbox-fake"></span>
							<strong>TC Gadgets</strong>
							<span class="desc">Top stories about gadgets</span>
							<em>Delivered weekly</em>
						</label>
					</fieldset>
					<fieldset class="custom-checkbox">
						<input type="checkbox" name="mobile-apps" id="tc-mobile-apps-58d5a75d8f5c92.68779517">
						<label for="tc-mobile-apps-58d5a75d8f5c92.68779517">
							<span class="custom-checkbox-fake"></span>
							<strong>TC Mobile & Apps</strong>
							<span class="desc">Top stories about apps</span>
							<em>Delivered weekly</em>
						</label>
					</fieldset>
					<fieldset class="custom-checkbox">
						<input type="checkbox" name="startups" id="tc-startups-58d5a75d8f5c92.68779517">
						<label for="tc-startups-58d5a75d8f5c92.68779517">
							<span class="custom-checkbox-fake"></span>
							<strong>TC Startups</strong>
							<span class="desc">Top stories about startups</span>
							<em>Delivered weekly</em>
						</label>
					</fieldset>
					<fieldset class="custom-checkbox">
						<input type="checkbox" name="social-media" id="tc-social-media-58d5a75d8f5c92.68779517">
						<label for="tc-social-media-58d5a75d8f5c92.68779517">
							<span class="custom-checkbox-fake"></span>
							<strong>TC Social Media</strong>
							<span class="desc">Top stories about social</span>
							<em>Delivered weekly</em>
						</label>
					</fieldset>
					<fieldset class="custom-checkbox">
						<input type="checkbox" name="asia" id="tc-asia-58d5a75d8f5c92.68779517">
						<label for="tc-asia-58d5a75d8f5c92.68779517">
							<span class="custom-checkbox-fake"></span>
							<strong>TC Asia</strong>
							<span class="desc">The top Asian tech stories</span>
							<em>Delivered weekly</em>
						</label>
					</fieldset>
					<fieldset class="custom-checkbox">
						<input type="checkbox" name="crunchnetwork" id="tc-crunchnetwork-58d5a75d8f5c92.68779517">
						<label for="tc-crunchnetwork-58d5a75d8f5c92.68779517">
							<span class="custom-checkbox-fake"></span>
							<strong>Crunch Network</strong>
							<span class="desc">The best from our contributors</span>
							<em>Delivered weekly</em>
						</label>
					</fieldset>
				</div>


				<fieldset class="custom-checkbox last">
					<a href="#">View More</a>
				</fieldset>

				-->
			</div>

			<fieldset class="subscribe">
				<label class="is-vishidden">Enter Address</label>
				<input type="email" name="email" placeholder="Enter your email">
				<div><div class="grecaptcha-badge" style="width: 256px; height: 60px; box-shadow: gray 0px 0px 5px;"><div class="grecaptcha-logo"><iframe src="./techcrunch_files/anchor.html" title="recaptcha widget" width="256" height="60" frameborder="0" scrolling="no" name="undefined"></iframe></div><div class="grecaptcha-error"></div><textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response" style="width: 250px; height: 40px; border: 1px solid #c1c1c1; margin: 10px 25px; padding: 0px; resize: none;  display: none; "></textarea></div></div><button data-sitekey="6LdMiBgUAAAAALruYFaf4I3gxiNXsRkMM3cQYmy9" data-callback="newsletterRecaptchaClbk" data-badge="inline" class="newsletter-submit g-recaptcha">Subscribe</button>
			</fieldset>

			<div class="all-nl-wrp">
				<a href="http://link.techcrunch.com/join/134/signup-all-newsletters&amp;hash=e2426df9e6d563a11dc2f37bff61e253" target="_blank" class="all-nl-link">SEE ALL NEWSLETTERS</a> »
			</div>


		</form>
	</div>
</div>	</div>

<section class="aside section video-aside crunchreport collapse collapse-adjacent" data-video-id="58d450b4ba82aa3330113acd">
	<h2 class="collapse-title section-title">
		Latest <span>Crunch Report</span>	</h2>
	<div class="collapse-body cf">
		<ul class="vid-list cf">
			<li class="block vid-feature" data-lightbox-omniture="crunchreport">
				<div class="block block-inset">
	<a href="https://techcrunch.com/video/amazon-buys-souq-crunch-report/58d450b4ba82aa3330113acd/?ncid=rightrail_cr">
		<img src="https://img.vidible.tv/prod/2017-03/23/58d450b4ba82aa3330113acd/58d450f7c7480e0857fd9e6a_o_U_v1.jpg?w=300&amp;h=170" alt="Amazon Buys Souq | Crunch Report" data-lightbox-url="https://techcrunch.com/video/amazon-buys-souq-crunch-report/58d450b4ba82aa3330113acd/lightbox">
				<div class="block-title">
			<h3>Amazon Buys Souq | Crunch Report</h3>			
		</div>
			</a>
</div>
			</li>
		</ul>
		<a href="https://techcrunch.com/video/crunchreport/?ncid=rightrail_crmore" class="text-btn" data-omni-sm="rightrail_crmore">Watch More Episodes<i class="icon-caret-right"></i></a>
	</div>
</section>
<div class="section ad-300x250" hgml4ik="" hidden="">
	<div id="adsDivc1b9cb1cf9" class=""></div>
<script>
/* <![CDATA[ */
if (!ads.isMobile()) {
	(function(window,$){
		window.TechCrunch.loader.on('tc_ads_wrapper_omniture', function(){
			if ( !window.ads.isAdPageSet ){
				if ( typeof window.adSetAdURL == 'function' ) {
					window.adSetAdURL('/wp-content/themes/vip/techcrunch-2013/_uac/adpage.html');
					window.ads.isAdPageSet = true;
				}
				if ( typeof window.adsResizePortrait === 'function' ) {
					window.adsResizePortrait('1');
				}
				window.console.log('ADS WIDTH:');
				window.console.log(ads);
			}
			window.adSetOthAT('kventryid=1244986;kvcmsid=tcr:1244986;kvugc=0;kvsubj=981284:982665:979374:978332;kvent=4241434:4956170:3469967:3690696:3780538:3454742:3692590');
			window.adSetInView('D');
			window.htmlAdWH('93484905', "RR", "RR", 'f', 'adsDivc1b9cb1cf9');
		});
	}(this,this.jQuery));
}
/* ]]> */
</script></div>
					</div>
					<!-- End: Article Body - Sidebar -->

				</div>
				<!-- End: Article Body -->

				</div>
			</div>
			<!-- End: Article Content - Body Right Column -->

			<!-- Begin: Article Recirculation - Body Left Column -->
			<div class="l-sidebar demo-block">
				<!-- Begin: Recirculation Accordion -->
<div class="accordion recirc-accordion">
		<ul>
												<li id="tc-accordion-item-hipchat-tag">
										<div class="loaded acc-handle">
						<a href="https://techcrunch.com/tag/hipchat/">
							hipchat						</a>
					</div>
				</li>
														<li id="tc-accordion-item-atlassian-tag">
										<div class="loaded acc-handle">
						<a href="https://techcrunch.com/tag/atlassian/">
							Atlassian						</a>
					</div>
				</li>
														<li id="tc-accordion-item-enterprise-category">
					<div class="acc-handle">
						<a href="https://techcrunch.com/tag/enterprise/">
							Enterprise 						</a>
					</div>
				</li>
														<li class="active">
					<div class="acc-handle loaded"><a>Popular Posts</a></div>
					<div class="acc-panel">
								<div id="acc-native-ad"></div>
		<script type="text/javascript">
			(function(window){
				try {
					window.TechCrunch.loader.on('tc_ads_wrapper_omniture', function() {
						if (!window.ads.isMobile()) {
							window.adSetInView('1');
							window.htmlAdWH('93484965', '320', '115', 'text', 'acc-native-ad');
							window.adSetInView('0');
						}
					});
				} catch (e) {
					// Assume this is just no ad placement for this page load
				}
			}(this));
		</script>						<ul class="recirc-river river-small" data-omni-sm-delegate="art_recircbottom">
							<div id="grv-personalization-14" class="grvRestore100PercentWidth grvHidden" style="width: 211px; height: 1015px; overflow: hidden; position: absolute; top: -10000px; left: -10000px;"><iframe frameborder="0" scrolling="no" src="./techcrunch_files/w2(1).html" style="overflow: hidden; width: 100%; height: 1015px;"></iframe></div>
							<script>if( !ads.isMobile() ){ window.TechCrunch.loader.on( 'gravity-beacon', function(){ window.tc_loadGravityScript( 'recirculation-accordion' ); } ); }</script>
						</ul>
					</div>	
				</li>
				</ul>
</div>
<!-- End: Recirculation Accordion -->

			</div>
			<!-- End: Article Recirculation - Body Left Column -->

		</div>
	
	</article>
	<!-- End: Article - Primary -->

	<div id="mobile-article-extra">
		
	<div class="mobile-module mobile-module-featured mobile-module-2x-padding">
		<div class="mobile-module-container">
			<div class="mobile-module-header mobile-module-header-gray">
				<h2>Featured Stories</h2>
			</div>
			<ul class="mobile-module-list">
												<li>
					<a href="https://techcrunch.com/2017/03/24/weekly-roundup-apple-acquires-workflow-uber-loses-its-president/?ncid=mobilerecirc_featured">
						<div class="mobile-module-list-image">
							<img alt="Weekly Roundup: Apple acquires Workflow, Uber loses its president" data-src="https://tctechcrunch2011.files.wordpress.com/2017/03/gettyimages-615682458.jpg?w=100&amp;h=75&amp;crop=1&amp;quality=85&amp;strip=all" data-tc-lazyload="deferred" src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/100x75.png?resize=100%2C75" data-scalable="true">						</div>
						<div class="mobile-module-list-body">
							<h4>Weekly Roundup: Apple acquires Workflow, Uber loses its&nbsp;president</h4>

							<small><time datetime="2017-03-24" class="timestamp">28 minutes ago</time> | Anna Escher</small>
						</div>
					</a>
				</li>
								<li>
					<a href="https://techcrunch.com/2017/03/24/the-sec-and-doj-just-dropped-their-inquiries-into-hampton-creek/?ncid=mobilerecirc_featured">
						<div class="mobile-module-list-image">
							<img alt="The SEC and DOJ just dropped their inquiries into Hampton Creek" data-src="https://tctechcrunch2011.files.wordpress.com/2014/12/hampton-creek-foods_day1_-6.jpg?w=100&amp;h=75&amp;crop=1&amp;quality=85&amp;strip=all" data-tc-lazyload="deferred" src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/100x75.png?resize=100%2C75" data-scalable="true">						</div>
						<div class="mobile-module-list-body">
							<h4>The SEC and DOJ just dropped their inquiries into Hampton&nbsp;Creek</h4>

							<small><time datetime="2017-03-24" class="timestamp">2 hours ago</time> | Connie Loizos</small>
						</div>
					</a>
				</li>
								<li>
					<a href="https://techcrunch.com/2017/03/24/google-path-to-social/?ncid=mobilerecirc_featured">
						<div class="mobile-module-list-image">
							<img alt="Google is working on a new social app for small groups to edit photos together" data-src="https://tctechcrunch2011.files.wordpress.com/2017/03/14050063737_3f183005a2_k.jpg?w=100&amp;h=75&amp;crop=1&amp;quality=85&amp;strip=all" data-tc-lazyload="deferred" src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/100x75.png?resize=100%2C75" data-scalable="true">						</div>
						<div class="mobile-module-list-body">
							<h4>Google is working on a new social app for small groups to edit photos&nbsp;together</h4>

							<small><time datetime="2017-03-24" class="timestamp">5 hours ago</time> | Ingrid Lunden</small>
						</div>
					</a>
				</li>
								<li>
					<a href="https://techcrunch.com/2017/03/24/the-days-of-google-talk-are-over/?ncid=mobilerecirc_featured">
						<div class="mobile-module-list-image">
							<img alt="The days of Google Talk are over" data-src="https://tctechcrunch2011.files.wordpress.com/2017/03/google-talk-grave.jpg?w=100&amp;h=75&amp;crop=1&amp;quality=85&amp;strip=all" data-tc-lazyload="deferred" src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/100x75.png?resize=100%2C75" data-scalable="true">						</div>
						<div class="mobile-module-list-body">
							<h4>The days of Google Talk are&nbsp;over</h4>

							<small><time datetime="2017-03-24" class="timestamp">6 hours ago</time> | Frederic Lardinois</small>
						</div>
					</a>
				</li>
							</ul>
		</div>
	</div>

		
	<div class="mobile-module mobile-module-category mobile-module-2x-padding">
		<div class="mobile-module-container">
			<div class="mobile-module-header mobile-module-header-gray">
				<h2><span class="text-muted">Latest From</span> Enterprise</h2>
			</div>
			<ul class="mobile-module-list">
								<li>
					<a href="https://techcrunch.com/2017/03/23/coreos-extends-its-tectonic-kubernetes-service-to-azure-and-openstack/?ncid=mobilerecirc_recent">
						<div class="mobile-module-list-image">
							<img alt="CoreOS extends its Tectonic Kubernetes service to Azure and OpenStack" data-src="https://tctechcrunch2011.files.wordpress.com/2015/11/1249873059_53bd0efbd9_o.jpg?w=100&amp;h=75&amp;crop=1&amp;quality=85&amp;strip=all" data-tc-lazyload="deferred" src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/100x75.png?resize=100%2C75" data-scalable="true">						</div>
						<div class="mobile-module-list-body">
							<h4>CoreOS extends its Tectonic Kubernetes service to Azure and&nbsp;OpenStack</h4>

							<small><time datetime="2017-03-23" class="timestamp">yesterday</time> | Frederic Lardinois</small>
						</div>
					</a>
				</li>
								<li>
					<a href="https://techcrunch.com/2017/03/23/ripcord-digitization-services/?ncid=mobilerecirc_recent">
						<div class="mobile-module-list-image">
							<img alt="Ripcord gets $9.5 million Series A for its corporate file digitization service" data-src="https://tctechcrunch2011.files.wordpress.com/2017/03/belt.png?w=100&amp;h=75&amp;crop=1&amp;quality=85&amp;strip=all" data-tc-lazyload="deferred" src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/100x75.png?resize=100%2C75" data-scalable="true">						</div>
						<div class="mobile-module-list-body">
							<h4>Ripcord gets $9.5 million Series A for its corporate file digitization&nbsp;service</h4>

							<small><time datetime="2017-03-23" class="timestamp">yesterday</time> | Brian Heater</small>
						</div>
					</a>
				</li>
								<li>
					<a href="https://techcrunch.com/2017/03/23/lystable-takes-10m-top-up-to-tackle-freelancer-payments/?ncid=mobilerecirc_recent">
						<div class="mobile-module-list-image">
							<img alt="Lystable takes $10M top-up to tackle freelancer payments" data-src="https://tctechcrunch2011.files.wordpress.com/2017/03/lystable.jpg?w=100&amp;h=75&amp;crop=1&amp;quality=85&amp;strip=all" data-tc-lazyload="deferred" src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/100x75.png?resize=100%2C75" data-scalable="true">						</div>
						<div class="mobile-module-list-body">
							<h4>Lystable takes $10M top-up to tackle freelancer&nbsp;payments</h4>

							<small><time datetime="2017-03-23" class="timestamp">yesterday</time> | Natasha Lomas</small>
						</div>
					</a>
				</li>
								<li>
					<a href="https://techcrunch.com/2017/03/22/mythic-launches-a-chip-to-enable-computer-vision-and-voice-control-on-any-device/?ncid=mobilerecirc_recent">
						<div class="mobile-module-list-image">
							<img alt="Mythic launches a chip to enable computer vision and voice control on any device" data-src="https://tctechcrunch2011.files.wordpress.com/2015/06/shutterstock_151456658.jpg?w=100&amp;h=75&amp;crop=1&amp;quality=85&amp;strip=all" data-tc-lazyload="deferred" src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/100x75.png?resize=100%2C75" data-scalable="true">						</div>
						<div class="mobile-module-list-body">
							<h4>Mythic launches a chip to enable computer vision and voice control on any&nbsp;device</h4>

							<small><time datetime="2017-03-22" class="timestamp">Mar 22, 2017</time> | Lora Kolodny</small>
						</div>
					</a>
				</li>
							</ul>
		</div>
	</div>

		<div class="mobile-module mobile-module-buttons"></div>

		<div class="mobile-module mobile-module-ad">
			<div class="section">
	<div id="adsDiv7e060b43bb" class="mobile-ads-center"></div>
<script>
/* <![CDATA[ */
if (ads.isMobile()) {
	(function(window,$){
		window.TechCrunch.loader.on('tc_ads_wrapper_omniture', function(){
			if ( !window.ads.isAdPageSet ){
				if ( typeof window.adSetAdURL == 'function' ) {
					window.adSetAdURL('/wp-content/themes/vip/techcrunch-2013/_uac/adpage.html');
					window.ads.isAdPageSet = true;
				}
				if ( typeof window.adsResizePortrait === 'function' ) {
					window.adsResizePortrait('1');
				}
				window.console.log('ADS WIDTH:');
				window.console.log(ads);
			}
			window.adSetOthAT('kventryid=1244986;kvcmsid=tcr:1244986;kvugc=0;kvsubj=981284:982665:979374:978332;kvent=4241434:4956170:3469967:3690696:3780538:3454742:3692590');
			window.adSetInView('1');
			window.htmlAdWH('93484901', "mm", "mm", 'f', 'adsDiv7e060b43bb');
		});
	}(this,this.jQuery));
}
/* ]]> */
</script></div>		</div>
	</div>

<!-- Begin: Article - Secondary -->
<div class="article-extra">
	<div class="lc l-three-col">

		<!-- Begin: Center Column -->
		<div class="l-main-container">
			<div class="l-main">
				<section class="comments section">
					<div class="comments-container" id="comments-container">

													<a name="comment-box"></a>
							<div id="comments">
								<div class="fb-comment-container" id="fb-comment-container">
									<div id="fb-root"></div>
									<fb:comments href="https://techcrunch.com/2015/11/30/atlassian-share-price/" num_posts="25" width="100%"></fb:comments>
								</div>
								<div class="comment-moderation-message">
									Comment moderation powered by <a href="https://www.brandbastion.com/" target="_blank"><img src="./techcrunch_files/brandbastion_logo.png" alt="BrandBastion"></a>
								</div>
							</div>											</div>
				</section>
			</div>
		</div>
		<!-- End: Center Column -->

		<!-- Begin: Right Column -->
		<div class="l-sidebar-2 recirc-up-next section">
			
				<div class="toaster section" style="transition: all 750ms ease-in-out; bottom: -124px;">
					<div class="toaster-container">
						<div class="toaster-content">
							<div class="toaster-title">Up Next</div>
							<h3 class="h-alt"><a href="https://techcrunch.com/2015/11/30/leading-indian-classifieds-site-quikr-in-talks-to-acquire-real-estate-portal-commonfloor/" data-omni-sm="art_upnext">Leading Indian Classifieds Site Quikr In Talks To Acquire Real-Estate Portal&nbsp;Commonfloor</a></h3>
							<div class="byline">
	Posted <time datetime="2015-11-30" class="timestamp">Nov 30, 2015</time> </div>						</div>
					</div>
				</div>
	<div class="section aside-alt crunchboard-listings collapse collapse-last collapse-adjacent">
		<h3 class="section-title collapse-title">CrunchBoard</h3>

		<div class="collapse-body">
			<h4 class="h-alt crunchboard-listings-subhead">Job Listings</h4>
			<ul class="info-list lined-list">
									<li>
						<a href="https://www.crunchboard.com/jobs/1363889-senior-web-developer-at-ethika-inc" onclick="s_objectID=&#39;rr_crunchboard&#39;;" target="_blank">
							<h3>Senior Web Developer  at Ethika, Inc. (Orange County, CA, United States)</h3>
						</a>
					</li>
									<li>
						<a href="https://www.crunchboard.com/jobs/1363826-senior-software-engineer-green-bits-at-green-bits" onclick="s_objectID=&#39;rr_crunchboard&#39;;" target="_blank">
							<h3>Senior Software Engineer @ Green Bits at Green Bits (San Francisco, CA, United States)</h3>
						</a>
					</li>
									<li>
						<a href="https://www.crunchboard.com/jobs/1359224-python-web-developer-at-atlantic-media" onclick="s_objectID=&#39;rr_crunchboard&#39;;" target="_blank">
							<h3>Python Web Developer at Atlantic Media (Washington, DC, United States)</h3>
						</a>
					</li>
									<li>
						<a href="https://www.crunchboard.com/jobs/1359222-java-software-engineer-web-development-m-f-at-egym-gmbh" onclick="s_objectID=&#39;rr_crunchboard&#39;;" target="_blank">
							<h3>Java Software Engineer - Web Development (m/f) at eGym GmbH (München, Deutschland)</h3>
						</a>
					</li>
									<li>
						<a href="https://www.crunchboard.com/jobs/1351573-startup-community-and-exhibition-manager-at-techcrunch" onclick="s_objectID=&#39;rr_crunchboard&#39;;" target="_blank">
							<h3>​Startup Community and Exhibition Manager at TechCrunch (San Francisco, CA, United States)</h3>
						</a>
					</li>
							</ul>
			<div class="see-more-large">
				<a href="http://www.crunchboard.com/" target="_blank" class="text-btn">More from CrunchBoard</a>
			</div>
		</div>
	</div>
		</div>
		<!-- End: Right Column -->

	</div>
</div>
<!-- End: Article - Secondary -->

</div>
<!-- End: Article Body Content - Main -->

<!-- Begin: Article Body Content - Advertisement -->
<div class="feature-island-container">
	<div class="ad-cluster-container" hgml4ik="" hidden="">
	<small class="advertise-here" hgml4ik="" hidden="">
		<a href="https://techcrunch.com/advertise/" title="Advertise on TechCrunch">
			Advertisement		</a>
	</small>
	<div id="adsDiv8c506fc2a4" class=""></div>
<script>
/* <![CDATA[ */
if (!ads.isMobile()) {
	(function(window,$){
		window.TechCrunch.loader.on('tc_ads_wrapper_omniture', function(){
			if ( !window.ads.isAdPageSet ){
				if ( typeof window.adSetAdURL == 'function' ) {
					window.adSetAdURL('/wp-content/themes/vip/techcrunch-2013/_uac/adpage.html');
					window.ads.isAdPageSet = true;
				}
				if ( typeof window.adsResizePortrait === 'function' ) {
					window.adsResizePortrait('1');
				}
				window.console.log('ADS WIDTH:');
				window.console.log(ads);
			}
			window.adSetOthAT('kventryid=1244986;kvcmsid=tcr:1244986;kvugc=0;kvsubj=981284:982665:979374:978332;kvent=4241434:4956170:3469967:3690696:3780538:3454742:3692590');
			window.htmlAdWH('93484978', "250", "125", 'f', 'adsDiv8c506fc2a4');
		});
	}(this,this.jQuery));
}
/* ]]> */
</script><div id="adsDivb9c75b6b20" class=""></div>
<script>
/* <![CDATA[ */
if (!ads.isMobile()) {
	(function(window,$){
		window.TechCrunch.loader.on('tc_ads_wrapper_omniture', function(){
			if ( !window.ads.isAdPageSet ){
				if ( typeof window.adSetAdURL == 'function' ) {
					window.adSetAdURL('/wp-content/themes/vip/techcrunch-2013/_uac/adpage.html');
					window.ads.isAdPageSet = true;
				}
				if ( typeof window.adsResizePortrait === 'function' ) {
					window.adsResizePortrait('1');
				}
				window.console.log('ADS WIDTH:');
				window.console.log(ads);
			}
			window.adSetOthAT('kventryid=1244986;kvcmsid=tcr:1244986;kvugc=0;kvsubj=981284:982665:979374:978332;kvent=4241434:4956170:3469967:3690696:3780538:3454742:3692590');
			window.htmlAdWH('93484979', "250", "125", 'f', 'adsDivb9c75b6b20');
		});
	}(this,this.jQuery));
}
/* ]]> */
</script></div>

</div>
<!-- End: Article Body Content - Advertisement -->
<!-- Begin Footer -->
<footer class="footer" role="contentinfo">
	<div class="footer-content">

		<!-- Begin Primary Nav (Footer) -->
		<nav class="nav-footer">
			<h4 class="footer-logo"><a href="https://techcrunch.com/" rel="home">TechCrunch</a></h4>

			<div class="g g-3up g-nogutter">

				<!-- Begin TechCrunch Column -->
				<div class="gi">
					<h4 class="footer-logo-crunch-network"><img src="./techcrunch_files/crunch-network.jpg"></h4>
					<div>
						<ul class="footer-links-about"><li id="menu-item-899764" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-899764"><a href="https://techcrunch.com/">News</a></li>
<li id="menu-item-899765" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-899765"><a href="https://techcrunch.com/video/">Video</a></li>
<li id="menu-item-899766" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-899766"><a href="https://techcrunch.com/events/">Events</a></li>
<li id="menu-item-899767" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-899767"><a href="http://www.crunchbase.com/">Crunchbase</a></li>
<li id="menu-item-1386511" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1386511"><a href="http://techcrunchstore.com/">TechCrunch Store</a></li>
</ul>
					</div>
				</div>
				<!-- End TechCrunch Column -->

				<!-- Begin About Column -->
				<div class="gi">
					<h4>About</h4>
					<div>
						<ul class="footer-links-about"><li id="menu-item-899768" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-899768"><a href="https://techcrunch.com/about/">Staff</a></li>
<li id="menu-item-899769" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-899769"><a href="https://techcrunch.com/contact/">Contact Us</a></li>
<li id="menu-item-899770" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-899770"><a href="https://techcrunch.com/advertise/">Advertise With Us</a></li>
<li id="menu-item-1421062" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1421062"><a href="https://techcrunch.com/advertisement-events-calendar/">Event &amp; Editorial Calendar</a></li>
<li id="menu-item-899771" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-899771"><a href="https://techcrunch.com/got-a-tip/">Send Us A Tip</a></li>
<li id="menu-item-1466907" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1466907"><a href="https://techcrunch.com/advertisement-events-calendar/#activations-blog">Activations Blog</a></li>
</ul>
					</div>
				</div>
				<!-- End About Column -->

				<!-- Begin International Column -->
				<div class="gi">
					<h4>International</h4>
					<div>
						<ul class="footer-links-about"><li id="menu-item-899772" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-899772"><a href="http://techcrunch.cn/">China</a></li>
<li id="menu-item-899773" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899773"><a href="https://techcrunch.com/europe/">Europe</a></li>
<li id="menu-item-899774" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-899774"><a href="http://jp.techcrunch.com/">Japan</a></li>
</ul>
					</div>
				</div>
				<!-- End International Column -->

			</div>
		</nav>
		<!-- End Primary Nav (Footer) -->

		<!-- Begin Secondary Nav (Footer) -->
		<div class="footer-follow g g-3up">

			<!-- Begin Social Column -->
			<div class="gi">
				<div class="footer-social">
					<h3>Follow TechCrunch</h3>
					<ul class="inline-list social-list sprite-social">
						<li><a href="https://www.facebook.com/techcrunch" rel="external" class="spricon nosprite dark icon-facebook" target="_blank"><span class="is-vishidden">Facebook</span></a></li>
						<li><a href="https://twitter.com/techcrunch" rel="external" class="spricon nosprite dark icon-twitter" target="_blank"><span class="is-vishidden">Twitter</span></a></li>
						<li><a href="https://plus.google.com/+TechCrunch" rel="external" class="spricon nosprite dark icon-google-plus" target="_blank"><span class="is-vishidden">Google+</span></a></li>
						<li><a href="http://www.linkedin.com/company/techcrunch" rel="external" class="spricon nosprite dark icon-linkedin" target="_blank"><span class="is-vishidden">LinkedIn</span></a></li>
						<li><a href="http://www.youtube.com/user/techcrunch" rel="external" class="spricon nosprite dark icon-youtube" target="_blank"><span class="is-vishidden">Youtube</span></a></li>
						<li><a href="http://pinterest.com/techcrunch/" rel="external" class="spricon nosprite dark icon-pinterest" target="_blank"><span class="is-vishidden">Pinterest</span></a></li>
						<li><a href="http://techcrunch.tumblr.com/" rel="external" class="spricon i-tumblr" target="_blank"><span class="is-vishidden">Tumblr</span></a></li>
						<li><a href="http://instagram.com/techcrunch" rel="external" class="spricon i-instagram" target="_blank"><span class="is-vishidden">Instagram</span></a></li>
						<li><a href="http://www.stumbleupon.com/channel/techcrunch/" rel="external" class="spricon nosprite dark icon-stumbleupon" target="_blank"><span class="is-vishidden">StumbleUpon</span></a></li>
						<li><a href="https://techcrunch.com/rssfeeds/" rel="external" class="spricon nosprite dark icon-rss"><span class="is-vishidden">Feed</span></a></li>
					</ul>
				</div>
			</div>
			<!-- End Social Column -->

			<!-- Begin TC Apps Column -->
			<div class="gi">
				<h3>TechCrunch Apps</h3>
				<ul class="inline-list social-list sprite-social">
					<li><a href="https://itunes.apple.com/us/app/techcrunch/id526058642?mt=8" class="spricon i-apple" rel="external" target="_blank"><span class="is-vishidden">iOS</span></a></li>
					<li><a href="https://play.google.com/store/apps/details?id=com.aol.mobile.techcrunch" class="spricon i-android" rel="external" target="_blank"><span class="is-vishidden">Android</span></a></li>
					<li><a href="http://apps.microsoft.com/windows/en-US/app/techcrunch-the-inside-story/e1127f3e-b8da-4939-9778-0a4e3a51d2d9" class="spricon i-windows" target="_blank"><span class="is-vishidden">Windows 8</span></a></li>
				</ul>
			</div>
			<!-- End TC Apps Column -->

			<!-- Begin Subscribe Column -->
			<div class="gi">
				
<h3 class="section-title aside-adjacent"><span class="no-mobile">Subscribe to </span>The Daily Crunch</h3>
<div class="">
	<p class="crunchdaily-tagline">Latest headlines delivered to you daily</p>
	<div class="newsletter newsletter-side-bar-crunchdaily">
		<form method="post" class="inline-form form-newsletters crunchdaily-newsletter" data-crunchlist="crunchdaily" action="https://link.techcrunch.com/s/Readership" data-nonce="0488fb9f89">
			<input type="checkbox" name="crunchdaily" checked="checked" class="is-hidden">
			<fieldset>
				<legend>Subscribe to &lt;span class="no-mobile"&gt;Subscribe to &lt;/span&gt;The Daily Crunch</legend>
				<label class="is-vishidden">Enter Email Address</label>
				<input type="email" name="email" placeholder="Enter Email Address">
				<button type="submit" class="newsletter-submit">Subscribe</button>
			</fieldset>
		</form>
	</div>
</div>			</div>
			<!-- End Subscribe Column -->

		</div>
		<!-- End Secondary Nav (Footer) -->

		<!-- Begin Copyright -->
		<div class="footer-meta-nav g g-1up">
			<div class="copyright gi">
				<span class="footer-section">
					© 2013-2017 AOL Inc. All rights reserved.
				</span>
				<span class="footer-section">
					<a href="http://www.aoltech.com/" rel="external">Aol Tech</a>
					<a href="http://privacy.aol.com/">Privacy Policy</a>
					<a href="http://adinfo.aol.com/about-our-ads">About Our Ads</a>
					<a href="https://techcrunch.com/anti-harassment-policy/">Anti Harassment Policy</a>
					<a href="http://legal.aol.com/TOS/">Terms of Service</a>
				</span>
				<span class="footer-section">
					<div class="vip-shoutout-container">Powered by <a href="https://vip.wordpress.com/?utm_source=vip_powered_wpcom&amp;utm_medium=web&amp;utm_campaign=VIP%20Footer%20Credit" rel="generator nofollow" class="powered-by-wpcom">WordPress.com VIP</a></div>
				</span>
				<span class="footer-section">
					<div class="webtype-shout-out">Fonts by <a href="http://www.webtype.com/" rel="external" style="padding:0;" target="_blank"><img src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/1x1.png?resize=1%2C1" data-src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/images/webtype_footer_link.png?resize=1%2C1" alt="&lt;Webtype&gt;" data-scalable="true"></a></div>
				</span>
			</div>
		</div>
		<!-- End Copyright -->

	</div>
</footer>

<!--[if lte IE 9 ]>
    <script src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/js/placeMe-1.0.js"></script>
<![endif]-->
<!--[if lte IE 8 ]>
	<script src="https://s0.wp.com/wp-content/themes/vip/techcrunch-2013/assets/js/ie8.js"></script>
<![endif]-->

<!-- wpcom_wp_footer -->

<!-- START Parse.ly Include: Standard -->
<div id="parsely-root" style="display: none">
  <div id="parsely-cfg" data-parsely-site="techcrunch.com"></div>
<script id="parsely-script" async="" data-cfasync="false" src="https://d1z2jf7jlzjs58.cloudfront.net/p.js"></script></div>
<script data-cfasync="false">
(function(s, p, d) {
  var h=d.location.protocol, i=p+"-"+s,
      e=d.getElementById(i), r=d.getElementById(p+"-root"),
      u=h==="https:"?"d1z2jf7jlzjs58.cloudfront.net"
      :"static."+p+".com";
  if (e) return;
  e = d.createElement(s); e.id = i; e.async = true;
  e.setAttribute('data-cfasync', 'false'); e.src = h+"//"+u+"/p.js"; r.appendChild(e);
})("script", "parsely", document);
</script>
<!-- END Parse.ly Include: Standard -->
	<script type="application/ld+json">
		{"@context":"http:\/\/schema.org","@type":"Article","url":"https:\/\/techcrunch.com\/2015\/11\/30\/atlassian-share-price\/","author":{"@type":"Person","name":"Catherine Shu"},"headline":"Atlassian Sets Share Prices For IPO","articleBody":"Enterprise software company Atlassian, which filed a month ago to go public on NASDAQ, has disclosed how much its shares will cost. In a SEC filing, the company said its 20 million shares will be priced between $16.50 and $18.50.\r\n\r\nIf Atlassian, which makes Slack competitor Hipchat and will list under the ticker symbol TEAM, manages to sell all shares at the highest price, it will raise a total of $370 million.\r\n\r\nIn its new filing, Atlassian says its enterprise software products have more than 51,000 customers. Its total revenue in 2013, 2014, and 2015 was $148.5 million, $215.1 million, and $319.5 million respectively, representing a compound annual growth rate of 46.7 percent.\r\n\r\nIn those years, Atlassian made net income of $10.8 million, $19 million, and $6.8 million. It said in a previous filing that the income drop last year was due to increased research and development spending. The company\u2019s cash flow in 2013, 2014, and 2015 was $47.1 million, $65 million, and $65.5 million.\r\n\r\nBased in Sydney, Australia, and San Francisco, Atlassian was founded in 2002 and has raised $210 million so far through secondary rounds (it has taken no venture capital funding).","datePublished":"2015-12-01T07:50:48+00:00","mainEntityOfPage":"True","image":{"@list":["https:\/\/tctechcrunch2011.files.wordpress.com\/2015\/11\/screen-shot-2015-12-01-at-3-47-46-pm.png"]}}	</script> 	<script type="text/javascript">
		window._taboola = window._taboola || [];
		_taboola.push(
			{flush: true}
		);
	</script>
<noscript>&lt;img src="https://sb.scorecardresearch.com/b?c1=2&amp;c2=6036210&amp;c3=&amp;c4=&amp;c5=&amp;c6=&amp;c15=&amp;cv=1.3&amp;cj=1" style="height:0;width:0;visibility:hidden" /&gt;</noscript><script type="text/javascript" src="./techcrunch_files/gprofiles.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
var WPGroHo = {"my_hash":""};
/* ]]> */
</script>
<script type="text/javascript" src="./techcrunch_files/wpgroho.js"></script>

	<script>
		//initialize and attach hovercards to all gravatars
		jQuery( document ).ready( function( $ ) {

			if (typeof Gravatar === "undefined"){
				return;
			}

			if ( typeof Gravatar.init !== "function" ) {
				return;
			}			

			Gravatar.profile_cb = function( hash, id ) {
				WPGroHo.syncProfileData( hash, id );
			};
			Gravatar.my_hash = WPGroHo.my_hash;
			Gravatar.init( 'body', '#wp-admin-bar-my-account' );
		});
	</script>

		<div style="display:none">
	</div>
<script type="text/javascript" src="./techcrunch_files/saved_resource(3)"></script>
<script type="text/javascript" src="./techcrunch_files/widgets.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
var PushUpNotificationSettings = {"domain":"https:\/\/tctechcrunch2011.wordpress.com","userID":"271","websitePushID":"web.com.wordpress.tctechcrunch2011","webServiceURL":"https:\/\/push.10up.com","prompt":"1"};
/* ]]> */
</script>
<script type="text/javascript">
/* <![CDATA[ */
var wpcomVipAnalytics = {"is_404":"0","is_home":"0","is_single":"1","is_front_page":"0","is_archive":"0","percentToTrack":"1"};
/* ]]> */
</script>
<script type="text/javascript">
/* <![CDATA[ */
var TC_VideoLoader_Settings = {"yt_key":"AIzaSyBhsoyL5FHDdWDh-w7DgTTHaC8PS2dvFdI"};
var TC_Language_Settings = {"ajax_url":{"chinese":"https:\/\/techcrunch.com\/chinesemodal"},"chinese":["zh","zh-hk","zh-cn","zh-sg","zh-tw"],"english":["en","en-au","en-bz","en-ca","en-ie","en-jm","en-nz","en-ph","en-za","en-tt","en-gb","en-us","en-zw"],"japanese":["ja"]};
var TC_Header_Settings = {"mobile_collapse_offset":"300","hide_on_mobile_scroll_down":"1"};
var TC_Async_Scripts = {"tc-mediavoice-MCtc":"https:\/\/cdn.mediavoice.com\/nativeads\/script\/aolibrands\/MCtc.js","tc_livefyre":"\/\/cdn.livefyre.com\/libs\/commentcount\/v1.0\/commentcount.js","tc_gravity":"https:\/\/b-ssl.grvcdn.com\/moth-min.js","commscore":"https:\/\/sb.scorecardresearch.com\/beacon.js","aol_universal_navbar":"https:\/\/s.aolcdn.com\/os\/aol\/unb.min.js","skimlinks":"https:\/\/s.skimresources.com\/js\/72705X1553005.skimlinks.js","swiftype_crawler":"\/\/s.swiftypecdn.com\/cc\/zYD5B5-eXtZN9_epXvoo.js"};
/* ]]> */
</script>
<script type="text/javascript">
/* <![CDATA[ */
var _sf_async_config = {"uid":"2905","domain":"techcrunch.com"};
/* ]]> */
</script>
<script type="text/javascript" src="./techcrunch_files/saved_resource(4)"></script>
<script type="text/javascript" src="./techcrunch_files/flbuttons.min.js"></script>
<script type="text/javascript">
// <![CDATA[
(function() {
try{
  if ( window.external &&'msIsSiteMode' in window.external) {
    if (window.external.msIsSiteMode()) {
      var jl = document.createElement('script');
      jl.type='text/javascript';
      jl.async=true;
      jl.src='/wp-content/plugins/ie-sitemode/custom-jumplist.php';
      var s = document.getElementsByTagName('script')[0];
      s.parentNode.insertBefore(jl, s);
    }
  }
}catch(e){}
})();
// ]]>
</script><script src="https://stats.wp.com/w.js?56" type="text/javascript" async="" defer=""></script>
<script type="text/javascript">
_tkq = window._tkq || [];
_stq = window._stq || [];
_tkq.push(['storeContext', {'blog_id':'24588526','blog_tz':'-7','user_lang':'en','blog_lang':'en','user_id':'0'}]);
_stq.push(['view', {'blog':'24588526','v':'wpcom','tz':'-7','user_id':'0','post':'1244986','subd':'tctechcrunch2011'}]);
function st_vt() {var x=document.createElement("img");x.src="https://pixel.wp.com/g.gif?blog=24588526&v=wpcomvt&tz=-7&user_id=0&post=1244986&subd=tctechcrunch2011&rand="+Math.random();}
_stq.push(['extra', {'crypt':'UE40eW5QN0p8M2Y/RE1BNmNJfGhxNCVxUDExYmtib2E/SzdEJm0lUEtbdFU0fFk4cHZvcUFrZT90Tn4yQm1+R3NyNTdsV05haVJbcGxtJjNRPStQNVpUOHlbPUJnQi45Py5telFkWjZDbj9PX2RIVjlBbjddUERBXXlVeU8sYkk9UVEzQVJnR0JCeXVvQmRtRS1Ob0NtYm15cTAxV1RmckNHV2h4eUR0ZWZwRG5qeWs4fFNGRGM5flNYSXZ4fGhTUWRWRVpwL3xYSGZBaVplRnxCRFZ6eGk4aFtnQ1J5X2I4X21NKzJJSzBLbzJrJXZBTVVhdDEwLWE='}]);
_stq.push([ 'clickTrackerInit', '24588526', '1244986' ]);
	</script>
<noscript>&lt;img src="https://pixel.wp.com/b.gif?v=noscript" style="height:0px;width:0px;overflow:hidden" alt="" /&gt;</noscript>
<script>
if ( 'object' === typeof wpcom_mobile_user_agent_info ) {

	wpcom_mobile_user_agent_info.init();
	var mobileStatsQueryString = "";
	
	if( false !== wpcom_mobile_user_agent_info.matchedPlatformName )
		mobileStatsQueryString += "&x_" + 'mobile_platforms' + '=' + wpcom_mobile_user_agent_info.matchedPlatformName;
	
	if( false !== wpcom_mobile_user_agent_info.matchedUserAgentName )
		mobileStatsQueryString += "&x_" + 'mobile_devices' + '=' + wpcom_mobile_user_agent_info.matchedUserAgentName;
	
	if( wpcom_mobile_user_agent_info.isIPad() )
		mobileStatsQueryString += "&x_" + 'ipad_views' + '=' + 'views';

	if( "" != mobileStatsQueryString ) {
		new Image().src = document.location.protocol + '//pixel.wp.com/g.gif?v=wpcom-no-pv' + mobileStatsQueryString + '&baba=' + Math.random();
	}
	
}
</script><div id="mobile-header-menu-nav-modal" class="menu-nav-modal">
	<div id="mobile-header-menu-nav" class="menu-nav">
		<ul>
			<li class="mobile-header-menu-tc-logo">
				<a href="https://techcrunch.com/">
					<img src="./techcrunch_files/techcrunch_transparent_google_editor_picks.png" alt="TechCrunch" title="TechCrunch" width="150">
				</a>
				<button class="close-mobile-menu-container">
					<span class="icon-close"></span>
				</button>
			</li>
			<li>
				<ul class="nav-col">
					<div class="subnavbar-title subnavbar-expand">
						<span>News</span>
						<div class="menu-caret">
							<span class="icon-menu-caret down"></span>
						</div>
					</div>
					<ul class="subnav-channel menu-content open" data-omni-sm-delegate="gbl_mainnav"><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899745"><a href="https://techcrunch.com/startups/">Startups</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899746"><a href="https://techcrunch.com/mobile/">Mobile</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899747"><a href="https://techcrunch.com/gadgets/">Gadgets</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-899748"><a href="https://techcrunch.com/enterprise/">Enterprise</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899749"><a href="https://techcrunch.com/social/">Social</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-899750"><a href="https://techcrunch.com/europe/">Europe</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-901944"><a href="https://techcrunch.com/asia">Asia</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1266871"><a href="https://techcrunch.com/crunch-network/">Crunch Network</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1210304"><a href="https://techcrunch.com/unicorn-leaderboard/">Unicorn Leaderboard</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1242803"><a href="https://techcrunch.com/gifts/">Gift Guides</a></li>
<li class="menu-item menu-item-important"><a href="https://techcrunch.com/gallery/">All Galleries</a></li><li class="menu-item menu-item-important"><a href="https://techcrunch.com/timeline/">All Timelines</a></li></ul>				</ul>
			</li>
			<li>
				<ul class="nav-col">
					<div class="subnavbar-title subnavbar-expand">
						<span>Videos</span>
						<div class="menu-caret">
							<span class="icon-menu-caret"></span>
						</div>
					</div>
					<ul class="subnav-tctv-shows-left menu-content" data-omni-sm-delegate="gbl_mainnav"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-899755"><a href="https://techcrunch.com/video/apps/">Apps</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1386392"><a href="https://techcrunch.com/video/bullish/">Bullish</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1134050"><a href="https://techcrunch.com/video/crunchreport/">Crunch Report</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1213488"><a href="https://techcrunch.com/video/tctv-news/">News</a></li>
<li class="menu-item menu-item-important"><a href="https://techcrunch.com/video/">All Shows</a></li><li class="menu-item menu-item-important"><a href="https://techcrunch.com/video/all/">All Videos</a></li></ul>				</ul>
			</li>
			<li>
				<ul class="nav-col">
					<div class="subnavbar-title subnavbar-expand">
						<span>Events</span>
						<div class="menu-caret">
							<span class="icon-menu-caret"></span>
						</div>
					</div>
					<ul class="subnav-events-tc-events menu-content" data-omni-sm-delegate="gbl_mainnav"><li class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899739"><a href="https://techcrunch.com/event-type/disrupt/">Disrupt</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-936211"><a href="https://techcrunch.com/startup-battlefield/">Startup Battlefield</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899740"><a href="https://techcrunch.com/event-type/crunchies/">Crunchies</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899741"><a href="https://techcrunch.com/event-type/meetups/">Meetups</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899742"><a href="https://techcrunch.com/event-type/international-city/">International City Events</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-tc_event menu-item-899744"><a href="https://techcrunch.com/event-type/hackathon-2/">Hackathon</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1084973"><a href="https://techcrunch.com/events/include">Include</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1241113"><a href="https://techcrunch.com/event-info/1st-and-future">NFL’s 1ST and Future</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1390002"><a href="http://www.techcrunchstore.com/">TechCrunch Store</a></li>
<li class="menu-item menu-item-important"><a href="https://techcrunch.com/events/">All Events</a></li></ul>				</ul>
			</li>
			<a href="https://www.crunchbase.com/" class="nav-crunchbase subnavbar-title">
				<span class="nav-parent nav-item-tracking">Crunchbase</span>
			</a>
		</ul>
		<div class="mobile-header-menu-search">
			<form action="https://techcrunch.com/" method="get" class="mobile-search-form">
				<input type="search" placeholder="Search" class="mobile-search-field" name="s" value="">
				<button class="mobile-search-submit">
					<span class="icon-mag"></span>
				</button>
			</form>
		</div>
		<div class="mobile-header-menu-fb-messenger">
			<a href="https://techcrunch.com/fb-messenger/">
				<img src="./techcrunch_files/facebook-messenger.svg" alt="" width="24" height="24">
				Message Us			</a>
		</div>
	</div>
</div>

<div id="mobile-trending-menu-nav-modal" class="menu-nav-modal">
 	<div id="mobile-trending-menu-nav" class="menu-nav">
		<div class="headbox">
			<button class="close-mobile-menu-container">
				<span class="icon-close"></span>
			</button>

			<div class="trending-head">
				<strong class="tc-bold-green">Most Popular</strong>
			</div>
		</div>
		<div class="trending-container">
			
						<a href="https://techcrunch.com/2017/03/24/weekly-roundup-apple-acquires-workflow-uber-loses-its-president/?ncid=mobilenavtrend" class="trending-post">
							<div class="trending-title">
								Weekly Roundup: Apple acquires Workflow, Uber loses its&nbsp;president							</div>
							<div class="trending-byline">
								28 minutes ago by Anna Escher							</div>
						</a>

				
						<a href="https://techcrunch.com/2017/03/24/what-to-do-about-those-government-backed-attack-warnings-from-google/?ncid=mobilenavtrend" class="trending-post">
							<div class="trending-title">
								What to do about those ‘government-backed attack’ warnings from&nbsp;Google							</div>
							<div class="trending-byline">
								30 minutes ago by Kate Conger							</div>
						</a>

				
						<a href="https://techcrunch.com/2017/03/24/cubefit-terramat-hides-under-your-standing-desk-to-give-your-feet-a-rest/?ncid=mobilenavtrend" class="trending-post">
							<div class="trending-title">
								CubeFit TerraMat hides under your standing desk to give your feet a&nbsp;rest							</div>
							<div class="trending-byline">
								1 hour ago by John Biggs							</div>
						</a>

				
						<a href="https://techcrunch.com/2017/03/24/include-office-hours-partners-with-intel-capital-for-bay-area-underrepresented-founders/?ncid=mobilenavtrend" class="trending-post">
							<div class="trending-title">
								Include Office Hours partners with Intel Capital for Bay Area underrepresented founders							</div>
							<div class="trending-byline">
								1 hour ago by Neesha A. Tambe							</div>
						</a>

				
						<a href="https://techcrunch.com/2017/03/24/3d-printed-cells/?ncid=mobilenavtrend" class="trending-post">
							<div class="trending-title">
								Swedish scientists successfully implant 3D-printed human cartilage cells in baby&nbsp;mice							</div>
							<div class="trending-byline">
								2 hours ago by Brian Heater							</div>
						</a>

				
						<a href="https://techcrunch.com/2017/03/24/alteryx-rises-11-in-data-analytics-ipo/?ncid=mobilenavtrend" class="trending-post">
							<div class="trending-title">
								Alteryx rises 11% in data analytics&nbsp;IPO							</div>
							<div class="trending-byline">
								2 hours ago by Katie Roof							</div>
						</a>

				
						<a href="https://techcrunch.com/2017/03/24/the-sec-and-doj-just-dropped-their-inquiries-into-hampton-creek/?ncid=mobilenavtrend" class="trending-post">
							<div class="trending-title">
								The SEC and DOJ just dropped their inquiries into Hampton&nbsp;Creek							</div>
							<div class="trending-byline">
								2 hours ago by Connie Loizos							</div>
						</a>

				
						<a href="https://techcrunch.com/2017/03/24/insta360-air-brings-affordable-easy-360-photo-and-video-to-android-phones/?ncid=mobilenavtrend" class="trending-post">
							<div class="trending-title">
								Insta360 Air brings affordable, easy 360 photo and video to Android&nbsp;phones							</div>
							<div class="trending-byline">
								3 hours ago by Darrell Etherington							</div>
						</a>

				
						<a href="https://techcrunch.com/2017/03/24/steve-mnuchin-axios-ai-workforce/?ncid=mobilenavtrend" class="trending-post">
							<div class="trending-title">
								Steve Mnuchin has been compromised (by&nbsp;robots)							</div>
							<div class="trending-byline">
								3 hours ago by Taylor Hatmaker							</div>
						</a>

				
						<a href="https://techcrunch.com/2017/03/24/how-trump-will-impact-venture-capital-the-future-of-qsbs/?ncid=mobilenavtrend" class="trending-post">
							<div class="trending-title">
								How Trump will impact venture capital: The future of&nbsp;QSBS							</div>
							<div class="trending-byline">
								5 hours ago by Patrick Wallen							</div>
						</a>

									</div>
	</div>
</div>	<script>
		(function (window, $, undefined) {
			var document = window.document;

			function loadChartbeat() {
				window._sf_endpt = (new Date()).getTime();
				var e = document.createElement('script'),
					url = ("https:" === document.location.protocol) ? "https://s3.amazonaws.com/" : "http://";
				url += "static.chartbeat.com/js/chartbeat.js";
				e.setAttribute('language', 'javascript');
				e.setAttribute('type', 'text/javascript');
				e.async = true;
				e.setAttribute('src', url);
				document.body.appendChild(e);
			}

			$(loadChartbeat);
		}(this, this.jQuery));
	</script>
<!--Page generated in 0.1591 seconds.-->

<script>
	//append functionality to omniture object
	//method provided by adobe : https://marketing.adobe.com/resources/help/en_US/sc/implement/getVisitNum.html
	/*                                                                 
	* Plugin: getVisitNum - version 3.0
	*/
	var s = window.s_265;
	window.s_265.getVisitNum=new Function("tp","c","c2",""
	+"var s=this,e=new Date,cval,cvisit,ct=e.getTime(),d;if(!tp){tp='m';}"
	+"if(tp=='m'||tp=='w'||tp=='d'){eo=s.endof(tp),y=eo.getTime();e.setTi"
	+"me(y);}else {d=tp*86400000;e.setTime(ct+d);}if(!c){c='s_vnum';}if(!"
	+"c2){c2='s_invisit';}cval=s.c_r(c);if(cval){var i=cval.indexOf('&vn="
	+"'),str=cval.substring(i+4,cval.length),k;}cvisit=s.c_r(c2);if(cvisi"
	+"t){if(str){e.setTime(ct+1800000);s.c_w(c2,'true',e);return str;}els"
	+"e {return 'unknown visit number';}}else {if(str){str++;k=cval.substri"
	+"ng(0,i);e.setTime(k);s.c_w(c,k+'&vn='+str,e);e.setTime(ct+1800000);"
	+"s.c_w(c2,'true',e);return str;}else {s.c_w(c,e.getTime()+'&vn=1',e)"
	+";e.setTime(ct+1800000);s.c_w(c2,'true',e);return 1;}}");
	s.dimo=new Function("m","y",""
	+"var d=new Date(y,m+1,0);return d.getDate();");
	s.endof=new Function("x",""
	+"var t=new Date;t.setHours(0);t.setMinutes(0);t.setSeconds(0);if(x=="
	+"'m'){d=s.dimo(t.getMonth(),t.getFullYear())-t.getDate()+1;}else if("
	+"x=='w'){d=7-t.getDay();}else {d=1;}t.setDate(t.getDate()+d);return "
	+"t;");
</script>



<script language="javascript" type="text/javascript" async="" src="https://s3.amazonaws.com/static.chartbeat.com/js/chartbeat.js"></script><iframe id="rufous-sandbox" scrolling="no" frameborder="0" allowtransparency="true" allowfullscreen="true" style="position: absolute; visibility: hidden; display: none; width: 0px; height: 0px; padding: 0px; border: none;" title="Twitter analytics iframe" src="./techcrunch_files/saved_resource.html"></iframe><div style="visibility: hidden; position: absolute; width:100%; top: -10000px; left: 0px; right: 0px; transition: visibility 0s linear 0.3s, opacity 0.3s linear; opacity: 0;"><div style="width: 100%; height: 100%; position: fixed; top: 0px; left: 0px; z-index: 2000000000; background-color: #fff; opacity: 0.5;  filter: alpha(opacity=50)"></div><div style="margin: 0 auto; top: 0px; left: 0px; right: 0px; position: absolute; border: 1px solid #ccc; z-index: 2000000000; background-color: #fff; overflow: hidden;"><iframe src="./techcrunch_files/bframe.html" title="recaptcha challenge" frameborder="0" scrolling="no" name="fi0vfg2mec31" style="width: 100%; height: 100%;"></iframe></div></div></body><autoscroll></autoscroll><div></div></html>